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 01/60] 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 02/60] 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 boolean reload() { @Override public @NotNull WorldHandle getWorldHandle() { // TODO + return null; } @Override @@ -39,5 +40,6 @@ public boolean reload() { @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 void onEnable() { // 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 03/60] 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.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 @@ */ 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 boolean reload() { @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 boolean reload() { } @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 @@ import org.allaymc.api.utils.Identifier; +import java.util.HashMap; import java.util.Map; +import java.util.TreeMap; /** @@ -11,30 +13,42 @@ * @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 static void init() { // TODO } - public static JeBlockState blockStateBeToJe(BlockState blockState) { + public static JeBlockState blockStateBeToJe(BlockState beBlockState) { // TODO return null; } @@ -28,4 +28,14 @@ public static String enchantmentIdBeToJe(String beEnchantmentId) { // 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 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 @@ 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.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 @@ * * @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 void setBlock(int x, int y, int z, @NotNull BlockState blockState) { } @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 @@ * * @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 04/60] 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 05/60] 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 | 124 +++++++- .../allaymc/terra/allay/TerraAllayPlugin.java | 2 +- .../generator/AllayGeneratorWrapper.java | 3 +- .../src/main/resources/mapping/blocks.json | 270 ++++++++++-------- 7 files changed, 312 insertions(+), 131 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 boolean reload() { 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 @@ 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 String toString(boolean includeProperties) { 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 @@ * * @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; + 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) { + return ITEM_ID_JE_TO_BE.get(jeItemId); } + // Enchantment identifiers are same in both versions + public static String enchantmentIdBeToJe(String beEnchantmentId) { - // TODO - return null; + return beEnchantmentId; } public static String enchantmentIdJeToBe(String jeEnchantmentId) { - // TODO - return null; + return jeEnchantmentId; } - public static String itemIdJeToBe(String jeItemId) { - // TODO - return null; + 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 @@ */ @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 void generate(ChunkGenerateContext context) { @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 06/60] 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.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.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 Entity spawnEntity(double x, double y, double z, EntityType entityType) { @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 BlockEntity getBlockEntity(int x, int y, int z) { @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 void generate(ChunkGenerateContext context) { } } } - 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 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 07/60] 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 @@ 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 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.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.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.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 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 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 08/60] feat: more works --- .../org/allaymc/terra/allay/JeBlockState.java | 12 +++ .../java/org/allaymc/terra/allay/Mapping.java | 81 ++++++++++++++----- .../terra/allay/delegate/AllayProtoWorld.java | 4 +- 3 files changed, 77 insertions(+), 20 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 @@ private JeBlockState(String data) { 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,31 +26,46 @@ @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() { - try (var stream = Mapping.class.getClassLoader().getResourceAsStream("mapping/blocks.json")) { - if (stream == null) { - log.error("blocks.json not found"); - return; + 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 = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); + var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); 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); + 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; + return false; } var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); for(var mapping : mappings) { @@ -59,18 +74,39 @@ public static void init() { } 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; + 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 false; } - var mappings = JSONUtils.from(stream, new TypeToken>>(){}).entrySet(); + var mappings = (List>>) JSONUtils.from(stream, new TypeToken>(){}).get("mappings"); for(var mapping : mappings) { - BIOME_ID_JE_TO_BE.put(mapping.getKey(), mapping.getValue().get("bedrock_id")); + 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); } + 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; + } + JE_BLOCK_DEFAULT_PROPERTIES.put(defaultJeBlockState.identifier, defaultJeBlockState.properties); + } + return true; } private static BlockState createBeBlockState(Map data) { @@ -88,13 +124,13 @@ private static BlockState createBeBlockState(Map data) { 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 static String enchantmentIdJeToBe(String 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/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 AllayServerWorld getHandle() { 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 09/60] 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 void setBlockState(int x, int y, int z, BlockState data, boolean physics) @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 void setBlockState(int x, int y, int z, BlockState data, boolean physics) @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 10/60] 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 void onLoad() { 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 @@ 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.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 ServerWorld getWorld() { @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 Entity spawnEntity(double x, double y, double z, EntityType entityType) { @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 AllayServerWorld getHandle() { 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 @@ 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 @@ * @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; - } - - @Override - public int getMaxHeight() { - return dimension.getDimensionInfo().maxHeight(); - } + public class AllayPopulator implements Populator { - @Override - public int getMinHeight() { - return dimension.getDimensionInfo().minHeight(); + @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 Object getHandle() { - // 这里留null就行,没啥用 - return null; - } - }; + @Override + public String getName() { + return "TERRA_POPULATOR"; + } } protected static ConfigPack createConfigPack(String packName) { @@ -126,14 +159,4 @@ protected static ChunkGenerator createGenerator(ConfigPack configPack) { 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 11/60] 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 void setBlock(int x, int y, int z, BlockState data, boolean physics) { @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 12/60] 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 @@ private static boolean initBlockStateMapping() { } 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 13/60] 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 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 @@ * * @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 ServerWorld getWorld() { @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 Entity spawnEntity(double x, double y, double z, EntityType entityType) { 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 int getMinHeight() { 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 AllayPopulator implements Populator { @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 14/60] 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 ServerWorld getWorld() { @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 15/60] 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 @@ 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 16/60] 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 @@ private JeBlockState(String data) { 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 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")); + private final BlockState allayBlockState; + private final JeBlockState jeBlockState; + private final boolean containsWater; - public static final AllayBlockState AIR = new AllayBlockState(BlockTypes.AIR_TYPE.getDefaultState(), JeBlockState.fromString("minecraft:air")); + 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 boolean isAir() { 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 @@ * @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 @@ * @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 int getMaxHeight() { @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 @@ 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 @@ */ 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 ServerWorld getWorld() { @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 @@ 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 @@ * @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 Chunk getChunkAt(int x, int 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); + 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 17/60] 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 @@ private static BlockState createBeBlockState(Map data) { 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 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_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 @@ */ 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 String getAsString(boolean properties) { @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 boolean isSolid() { @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 @@ */ 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 void setBlock(int x, int y, int z, BlockState data, boolean physics) { 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 @@ */ 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 void setBlock(int x, int y, int z, @NotNull BlockState blockState) { 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 @@ */ 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 void setBlockState(int x, int y, int z, BlockState data, boolean physics) 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 @@ */ 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 void setBlockState(int x, int y, int z, BlockState data, boolean physics) 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 18/60] 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 boolean canEnchantItem(ItemStack itemStack) { @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 19/60] 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.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 @@ private static boolean initJeBlockDefaultProperties() { 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 @@ 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 void onLoad() { 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 ServerWorld world() { @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 @@ 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 20/60] 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 @@ 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(); 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 21/60] 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 Object getHandle() { 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 String getName() { 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 22/60] 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.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 @@ */ @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 @@ private static void error() { } 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 @@ private static boolean initBiomeMapping() { } 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 @@ private static boolean initItemMapping() { } 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 @@ private static boolean initBlockStateMapping() { } 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 @@ private static boolean initJeBlockDefaultProperties() { 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 static String 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 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 void setAmount(int i) { @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 @@ */ 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 @@ 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 23/60] 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 @@ 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 void register(TypeRegistry registry) { 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 @@ */ 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 @@ */ 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 @@ 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 @@ */ 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 @@ 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 @@ */ 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 24/60] 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 25/60] 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 26/60] 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 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 27/60] 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 28/60] 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 29/60] 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 30/60] 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 31/60] 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 32/60] 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 33/60] 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 34/60] 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 35/60] 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 36/60] 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 37/60] 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 38/60] 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 39/60] 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 40/60] 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 @@ /** - * 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 @@ /** - * 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 String toString(boolean includeProperties) { 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 @@ /** - * Terra Project 2024/6/16 - * * @author daoge_cmd */ @Slf4j @@ -124,37 +122,6 @@ private static boolean initJeBlockDefaultProperties() { 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 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 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 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 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 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 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.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 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 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 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 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.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.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.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.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.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 41/60] 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.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 @@ private static boolean initItemMapping() { } 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 @@ private static boolean initBlockStateMapping() { 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 @@ private static boolean initJeBlockDefaultProperties() { } 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 @@ private static TreeMap convertValueType(Map data 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 static BlockState blockStateJeToBe(JeBlockState jeBlockState) { 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 void setAmount(int i) { @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 @@ 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 42/60] 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 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 43/60] 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 44/60] 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 AllayPlatform() { @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.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 @@ */ @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 static void init() { 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 @@ private static boolean initBiomeMapping() { 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 @@ private static boolean initItemMapping() { 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 @@ private static boolean initBlockStateMapping() { 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 @@ private static JeBlockState createJeBlockState(Map data) { // 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 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 boolean isSolid() { @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 @@ */ 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 boolean canEnchantItem(ItemStack itemStack) { @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.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 void addEnchantment(Enchantment enchantment, int level) { 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 @@ 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 double getMaxDurability() { 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 @@ */ 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 int getMaxHeight() { @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.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 @@ */ 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 ServerWorld getWorld() { @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.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 @@ */ 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 Chunk getChunkAt(int x, int z) { @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 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 @@ */ @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 AllayGeneratorWrapper(String preset) { 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 int getMinHeight() { @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 45/60] 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 46/60] 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 47/60] 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 48/60] 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 49/60] 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 50/60] 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 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 @@ /** * @author daoge_cmd */ -@Slf4j public final class Mapping { private static final Map> JE_BLOCK_DEFAULT_PROPERTIES = new Object2ObjectOpenHashMap<>(); @@ -45,7 +43,7 @@ public static JeBlockState blockStateBeToJe(BlockState 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); + TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find be block state for {}", jeBlockState); return BE_AIR_STATE; } return result; @@ -72,7 +70,7 @@ public static int biomeIdJeToBe(String 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); + TerraAllayPlugin.INSTANCE.getPluginLogger().warn("Failed to find default properties for {}", jeBlockIdentifier); return Map.of(); } return defaultProperties; @@ -85,7 +83,7 @@ private static void error() { 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 @@ private static boolean initBiomeMapping() { 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 @@ private static boolean initBiomeMapping() { 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 @@ private static boolean initItemMapping() { 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 @@ private static boolean initItemMapping() { 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 @@ private static boolean initBlockStateMapping() { 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 @@ private static boolean initBlockStateMapping() { 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 @@ /** * @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.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 boolean apply(NoiseContext context) { ); 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 String getName() { } } + 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 @@ protected static ChunkGenerator createGenerator(ConfigPack configPack) { 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 51/60] 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 52/60] 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.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 53/60] 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 @@ private static void error() { } 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 @@ private static boolean initBiomeMapping() { } 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 @@ private static boolean initItemMapping() { } 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 @@ private static boolean initBlockStateMapping() { } 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 54/60] 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 @@ import org.allaymc.api.utils.HashUtils; +import java.util.Map; import java.util.TreeMap; @@ -22,13 +23,13 @@ public static JeBlockState create(String identifier, TreeMap pro } 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 String getPropertyValue(String key) { } 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 String toString(boolean includeProperties) { 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.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 static JeBlockState blockStateBeToJe(BlockState beBlockState) { } 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 static int biomeIdJeToBe(String jeBiomeId) { } 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 @@ private static void error() { } 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 @@ private static boolean initBiomeMapping() { } 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 @@ private static boolean initItemMapping() { } 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 @@ private static boolean initBlockStateMapping() { } 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 @@ private static boolean initJeBlockDefaultProperties() { } 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 @@ private static BlockState createBeBlockState(Map data) { } 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 @@ private static Map convertValueType(Map data) { } 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 AllayBlockState(BlockState allayBlockState, JeBlockState jeBlockState) { @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 void setBlock(int x, int y, int z, BlockState data, boolean physics) { @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 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 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 ItemMeta getItemMeta() { @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 int getMaxHeight() { @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 void setBlock(int x, int y, int z, @NotNull BlockState blockState) { @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 ServerWorld getWorld() { @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 Entity spawnEntity(double x, double y, double z, EntityType entityType) { @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.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 AllayNoiser implements Noiser { @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 AllayPopulator implements Populator { @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 String getName() { } 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 55/60] 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 void onLoad() { 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 boolean matches(com.dfsek.terra.api.block.state.BlockState o) { @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 Entity spawnEntity(double x, double y, double z, EntityType entityType) { @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 BlockState getBlockState(int x, int y, int z) { @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 56/60] 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 57/60] 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 void onLoad() { // 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 @@ 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 @@ */ 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 58/60] 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.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 AllayPlatform() { @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 @@ 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 void onLoad() { // 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 @@ 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 @@ 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.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 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.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.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 @@ 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.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 Object getHandle() { .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 String getName() { } } - - public class AllayPopulator implements Populator { + protected class AllayPopulator implements Populator { @Override public boolean apply(PopulateContext context) { @@ -155,7 +165,7 @@ public String getName() { } } - 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 @@ protected static ConfigPack createConfigPack(String packName) { 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 @@ 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 59/60] 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 ConfigPack getConfigPack() { 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 60/60] 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.