From 8b37a264240c7a56caefa228e32b1e98b791af4f Mon Sep 17 00:00:00 2001 From: LOOHP Date: Sat, 11 Jun 2022 02:34:26 +0800 Subject: [PATCH] Minecraft 1.19 --- pom.xml | 16 +- src/main/java/com/loohp/limbo/Limbo.java | 6 +- .../loohp/limbo/network/ClientConnection.java | 11 +- .../ClientboundLevelChunkWithLightPacket.java | 24 +- .../packets/ClientboundPlayerChatPacket.java | 99 + ....java => ClientboundSystemChatPacket.java} | 25 +- .../packets/PacketLoginInLoginStart.java | 10 +- .../packets/PacketLoginOutLoginSuccess.java | 1 + .../protocol/packets/PacketPlayInChat.java | 29 +- .../protocol/packets/PacketPlayOutLogin.java | 25 +- .../packets/PacketPlayOutPlayerInfo.java | 5 +- .../packets/PacketPlayOutPositionAndLook.java | 5 +- .../packets/PacketPlayOutSpawnEntity.java | 19 +- .../PacketPlayOutSpawnEntityLiving.java | 130 - .../packets/ServerboundChatCommandPacket.java | 79 + .../java/com/loohp/limbo/player/Player.java | 55 +- .../limbo/player/PlayerInteractManager.java | 44 +- .../loohp/limbo/utils/DeclareCommands.java | 7 +- .../limbo/utils/NetworkEncryptionUtils.java | 84 + .../loohp/limbo/world/DimensionRegistry.java | 2 +- .../world/GeneratedBlockDataMappings.java | 3 +- src/main/resources/blocks.json | 255928 ++++++++------- src/main/resources/dimension_registry.json | 9650 +- src/main/resources/mapping.json | 63 +- src/main/resources/registries.json | 18761 +- 25 files changed, 149278 insertions(+), 135803 deletions(-) create mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java rename src/main/java/com/loohp/limbo/network/protocol/packets/{PacketPlayOutChat.java => ClientboundSystemChatPacket.java} (84%) delete mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java create mode 100644 src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java create mode 100644 src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java diff --git a/pom.xml b/pom.xml index f570baf..49bc3ea 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 0.6.15-ALPHA + 0.6.16-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.18.2 + ${project.artifactId}-${project.version}-1.19 @@ -231,7 +231,7 @@ com.google.code.gson gson - 2.8.9 + 2.8.5 compile @@ -256,31 +256,31 @@ net.kyori adventure-text-serializer-gson - 4.9.3 + 4.10.1 compile net.kyori adventure-text-serializer-legacy - 4.9.3 + 4.10.1 compile net.kyori adventure-text-serializer-plain - 4.9.3 + 4.10.1 compile net.kyori adventure-api - 4.9.3 + 4.10.1 compile net.kyori adventure-nbt - 4.9.3 + 4.10.1 compile diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index d1e0be7..d06e7bb 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -131,8 +131,8 @@ public static Limbo getInstance() { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.18.2"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 758; + public final String SERVER_IMPLEMENTATION_VERSION = "1.19"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 759; public final String LIMBO_IMPLEMENTATION_VERSION; private AtomicBoolean isRunning; @@ -216,7 +216,7 @@ public Limbo() throws IOException, ParseException, NumberFormatException, ClassN console.sendMessage("Loading packet id mappings from mapping.json ..."); - InputStreamReader reader = new InputStreamReader(new FileInputStream(mappingFile), StandardCharsets.UTF_8); + InputStreamReader reader = new InputStreamReader(Files.newInputStream(mappingFile.toPath()), StandardCharsets.UTF_8); JSONObject json = (JSONObject) new JSONParser().parse(reader); reader.close(); diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 52934da..99ba49a 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -73,6 +73,7 @@ import com.loohp.limbo.network.protocol.packets.PacketStatusInRequest; import com.loohp.limbo.network.protocol.packets.PacketStatusOutPong; import com.loohp.limbo.network.protocol.packets.PacketStatusOutResponse; +import com.loohp.limbo.network.protocol.packets.ServerboundChatCommandPacket; import com.loohp.limbo.player.Player; import com.loohp.limbo.player.PlayerInteractManager; import com.loohp.limbo.utils.BungeecordAdventureConversionUtils; @@ -201,6 +202,7 @@ public void sendPluginMessage(String channel, byte[] data) throws IOException { } public synchronized void sendPacket(PacketOut packet) throws IOException { + System.out.println(packet.getClass()); if (channel.writePacket(packet)) { setLastPacketTimestamp(System.currentTimeMillis()); } @@ -626,11 +628,10 @@ public void run() { sendPacket(response); } else if (packetIn instanceof PacketPlayInChat) { PacketPlayInChat chat = (PacketPlayInChat) packetIn; - if (chat.getMessage().startsWith("/")) { - Limbo.getInstance().dispatchCommand(player, chat.getMessage()); - } else { - player.chat(chat.getMessage(), true); - } + player.chat(chat.getMessage(), true, chat.getSignature(), chat.getTime()); + } else if (packetIn instanceof ServerboundChatCommandPacket) { + ServerboundChatCommandPacket command = (ServerboundChatCommandPacket) packetIn; + Limbo.getInstance().dispatchCommand(player, "/" + command.getCommand()); } else if (packetIn instanceof PacketPlayInHeldItemChange) { PacketPlayInHeldItemChange change = (PacketPlayInHeldItemChange) packetIn; PlayerSelectedSlotChangeEvent event = Limbo.getInstance().getEventsManager().callEvent(new PlayerSelectedSlotChangeEvent(player, (byte) change.getSlot())); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java index 94d4011..9b3959d 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java @@ -19,27 +19,25 @@ package com.loohp.limbo.network.protocol.packets; -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.util.ArrayList; -import java.util.BitSet; -import java.util.Iterator; -import java.util.LinkedList; -import java.util.List; - import com.loohp.limbo.registry.Registry; import com.loohp.limbo.utils.BitsUtils; import com.loohp.limbo.utils.DataTypeIO; import com.loohp.limbo.utils.NamespacedKey; import com.loohp.limbo.world.Environment; import com.loohp.limbo.world.GeneratedBlockDataMappings; - import net.querz.mca.Chunk; import net.querz.mca.Section; import net.querz.nbt.tag.CompoundTag; import net.querz.nbt.tag.ListTag; +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.BitSet; +import java.util.LinkedList; +import java.util.List; + public class ClientboundLevelChunkWithLightPacket extends PacketOut { private int chunkX; @@ -165,7 +163,7 @@ public byte[] serializePacket() throws IOException { int shift = 64 % newBits; int longsNeeded = (int) Math.ceil(4096 / (double) (64 / newBits)); for (int u = 64; u <= bits.length(); u += 64) { - bits = BitsUtils.shiftAfter(bits, u - shift, shift); + BitsUtils.shiftAfter(bits, u - shift, shift); } long[] formattedLongs = bits.toLongArray(); @@ -182,7 +180,7 @@ public byte[] serializePacket() throws IOException { } } else { try { - dataOut.writeByte(15); + dataOut.writeByte(16); section.getBlockStates(); int longsNeeded = 1024; List list = new LinkedList<>(); @@ -207,7 +205,7 @@ public byte[] serializePacket() throws IOException { u++; } int id = list.isEmpty() ? 0 : list.remove(0); - currentLong = currentLong << 15; + currentLong = currentLong << 16; currentLong |= id; } DataTypeIO.writeVarInt(dataOut, longsNeeded); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java new file mode 100644 index 0000000..87dff7c --- /dev/null +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundPlayerChatPacket.java @@ -0,0 +1,99 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.network.protocol.packets; + +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.time.Instant; +import java.util.Optional; +import java.util.UUID; + +import com.loohp.limbo.utils.DataTypeIO; + +import com.loohp.limbo.utils.NetworkEncryptionUtils; +import net.kyori.adventure.text.Component; +import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; + +public class ClientboundPlayerChatPacket extends PacketOut { + + private Component signedContent; + private Optional unsignedContent; + private int position; + private UUID sender; + private Instant time; + private NetworkEncryptionUtils.SignatureData saltSignature; + + public ClientboundPlayerChatPacket(Component signedContent, Optional unsignedContent, int position, UUID sender, Instant time, NetworkEncryptionUtils.SignatureData saltSignature) { + this.signedContent = signedContent; + this.unsignedContent = unsignedContent; + this.position = position; + this.sender = sender; + this.time = time; + this.saltSignature = saltSignature; + } + + public Component getSignedContent() { + return signedContent; + } + + public Optional getUnsignedContent() { + return unsignedContent; + } + + public int getPosition() { + return position; + } + + public UUID getSender() { + return sender; + } + + public Instant getTime() { + return time; + } + + public NetworkEncryptionUtils.SignatureData getSaltSignature() { + return saltSignature; + } + + @Override + public byte[] serializePacket() throws IOException { + ByteArrayOutputStream buffer = new ByteArrayOutputStream(); + + DataOutputStream output = new DataOutputStream(buffer); + output.writeByte(Packet.getPlayOut().get(getClass())); + DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(signedContent), StandardCharsets.UTF_8); + if (unsignedContent.isPresent()) { + output.writeBoolean(true); + DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(unsignedContent.get()), StandardCharsets.UTF_8); + } else { + output.writeBoolean(false); + } + DataTypeIO.writeVarInt(output, position); + DataTypeIO.writeUUID(output, sender); + output.writeLong(time.toEpochMilli()); + NetworkEncryptionUtils.SignatureData.write(output, saltSignature); + + return buffer.toByteArray(); + } + +} diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java similarity index 84% rename from src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java rename to src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java index c866480..4bdec77 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutChat.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java @@ -19,27 +19,23 @@ package com.loohp.limbo.network.protocol.packets; +import com.loohp.limbo.utils.DataTypeIO; +import net.kyori.adventure.text.Component; +import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; + import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; -import java.util.UUID; -import com.loohp.limbo.utils.DataTypeIO; +public class ClientboundSystemChatPacket extends PacketOut { -import net.kyori.adventure.text.Component; -import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; - -public class PacketPlayOutChat extends PacketOut { - private Component message; private int position; - private UUID sender; - - public PacketPlayOutChat(Component message, int position, UUID sender) { + + public ClientboundSystemChatPacket(Component message, int position) { this.message = message; this.position = position; - this.sender = sender; } public Component getMessage() { @@ -49,10 +45,6 @@ public Component getMessage() { public int getPosition() { return position; } - - public UUID getSender() { - return sender; - } @Override public byte[] serializePacket() throws IOException { @@ -61,8 +53,7 @@ public byte[] serializePacket() throws IOException { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(message), StandardCharsets.UTF_8); - output.writeByte(position); - DataTypeIO.writeUUID(output, sender); + DataTypeIO.writeVarInt(output, position); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java index f6ad8cd..214eab5 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginInLoginStart.java @@ -34,7 +34,15 @@ public PacketLoginInLoginStart(String username) { } public PacketLoginInLoginStart(DataInputStream in) throws IOException { - this(DataTypeIO.readString(in, StandardCharsets.UTF_8)); + this.username = DataTypeIO.readString(in, StandardCharsets.UTF_8); + boolean hasSigData = in.readBoolean(); + if (hasSigData) { + in.readLong(); + int publicKeyLength = DataTypeIO.readVarInt(in); + in.readFully(new byte[publicKeyLength]); + int signatureLength = DataTypeIO.readVarInt(in); + in.readFully(new byte[signatureLength]); + } } public String getUsername() { diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java index ba9fc79..817be1a 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java @@ -53,6 +53,7 @@ public byte[] serializePacket() throws IOException { output.writeByte(Packet.getLoginOut().get(getClass())); DataTypeIO.writeUUID(output, uuid); DataTypeIO.writeString(output, username, StandardCharsets.UTF_8); + DataTypeIO.writeVarInt(output, 0); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java index 49da8b8..bd9b71d 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInChat.java @@ -22,23 +22,44 @@ import java.io.DataInputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.time.Instant; import com.loohp.limbo.utils.DataTypeIO; +import com.loohp.limbo.utils.NetworkEncryptionUtils; +import com.loohp.limbo.utils.NetworkEncryptionUtils.SignatureData; public class PacketPlayInChat extends PacketIn { private String message; - - public PacketPlayInChat(String message) { + private Instant time; + private NetworkEncryptionUtils.SignatureData signature; + private boolean previewed; + + public PacketPlayInChat(String message, Instant time, SignatureData signature, boolean previewed) { this.message = message; + this.time = time; + this.signature = signature; + this.previewed = previewed; } - + public PacketPlayInChat(DataInputStream in) throws IOException { - this(DataTypeIO.readString(in, StandardCharsets.UTF_8)); + this(DataTypeIO.readString(in, StandardCharsets.UTF_8), Instant.ofEpochMilli(in.readLong()), new NetworkEncryptionUtils.SignatureData(in), in.readBoolean()); } public String getMessage() { return message; } + public Instant getTime() { + return time; + } + + public SignatureData getSignature() { + return signature; + } + + public boolean isPreviewed() { + return previewed; + } + } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java index 0d28af2..dd019fd 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java @@ -19,20 +19,18 @@ package com.loohp.limbo.network.protocol.packets; -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.util.List; - import com.loohp.limbo.utils.DataTypeIO; import com.loohp.limbo.utils.GameMode; import com.loohp.limbo.utils.NamespacedKey; import com.loohp.limbo.world.Environment; import com.loohp.limbo.world.World; - import net.querz.nbt.tag.CompoundTag; -import net.querz.nbt.tag.ListTag; + +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.util.List; public class PacketPlayOutLogin extends PacketOut { @@ -145,15 +143,7 @@ public byte[] serializePacket() throws IOException { DataTypeIO.writeString(output, new NamespacedKey(worlds.get(u).getName()).toString(), StandardCharsets.UTF_8); } DataTypeIO.writeCompoundTag(output, dimensionCodec); - CompoundTag tag = null; - ListTag list = dimensionCodec.getCompoundTag("minecraft:dimension_type").getListTag("value").asCompoundTagList(); - for (CompoundTag each : list) { - if (each.getString("name").equals(dimension.getNamespacedKey().toString())) { - tag = each.getCompoundTag("element"); - break; - } - } - DataTypeIO.writeCompoundTag(output, tag != null ? tag : list.get(0).getCompoundTag("element")); + DataTypeIO.writeString(output, world.getEnvironment().getNamespacedKey().toString(), StandardCharsets.UTF_8); DataTypeIO.writeString(output, new NamespacedKey(world.getName()).toString(), StandardCharsets.UTF_8); output.writeLong(hashedSeed); DataTypeIO.writeVarInt(output, maxPlayers); @@ -163,6 +153,7 @@ public byte[] serializePacket() throws IOException { output.writeBoolean(enableRespawnScreen); output.writeBoolean(isDebug); output.writeBoolean(isFlat); + output.writeBoolean(false); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java index e4d99f0..a5af887 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerInfo.java @@ -35,7 +35,7 @@ public class PacketPlayOutPlayerInfo extends PacketOut { public enum PlayerInfoAction { ADD_PLAYER(0), UPDATE_GAMEMODE(1), UPDATE_LATENCY(2), UPDATE_DISPLAY_NAME(3), REMOVE_PLAYER(4); - int id; + private final int id; PlayerInfoAction(int id) { this.id = id; @@ -98,7 +98,8 @@ public byte[] serializePacket() throws IOException { DataTypeIO.writeString(output, data.getDisplayNameJson().get(), StandardCharsets.UTF_8); } else { output.writeBoolean(false); - } + } + output.writeBoolean(false); break; case REMOVE_PLAYER: break; diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java index 544c65a..ca85d4c 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPositionAndLook.java @@ -23,6 +23,7 @@ import java.io.DataOutputStream; import java.io.IOException; import java.util.Arrays; +import java.util.HashSet; import java.util.Set; import java.util.stream.Collectors; @@ -37,7 +38,7 @@ public enum PlayerTeleportFlags { Y_ROT((byte) 0x08), X_ROT((byte) 0x10); - byte bit; + private final byte bit; PlayerTeleportFlags(byte bit) { this.bit = bit; @@ -64,7 +65,7 @@ public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, flo this.yaw = yaw; this.pitch = pitch; this.teleportId = teleportId; - this.flags = Arrays.asList(flags).stream().collect(Collectors.toSet()); + this.flags = new HashSet<>(Arrays.asList(flags)); this.dismountVehicle = dismountVehicle; } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java index 31b3f10..43a1bde 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntity.java @@ -37,12 +37,13 @@ public class PacketPlayOutSpawnEntity extends PacketOut { private double z; private float pitch; private float yaw; + private float headYaw; private int data; private short velocityX; private short velocityY; private short velocityZ; - public PacketPlayOutSpawnEntity(int entityId, UUID uuid, EntityType type, double x, double y, double z, float pitch, float yaw, short velocityX, short velocityY, short velocityZ) { + public PacketPlayOutSpawnEntity(int entityId, UUID uuid, EntityType type, double x, double y, double z, float pitch, float yaw, float headYaw, int data, short velocityX, short velocityY, short velocityZ) { this.entityId = entityId; this.uuid = uuid; this.type = type; @@ -51,7 +52,8 @@ public PacketPlayOutSpawnEntity(int entityId, UUID uuid, EntityType type, double this.z = z; this.pitch = pitch; this.yaw = yaw; - this.data = 0; //TO-DO + this.headYaw = headYaw; + this.data = data; this.velocityX = velocityX; this.velocityY = velocityY; this.velocityZ = velocityZ; @@ -89,6 +91,10 @@ public float getYaw() { return yaw; } + public float getHeadYaw() { + return headYaw; + } + public int getData() { return data; } @@ -119,10 +125,11 @@ public byte[] serializePacket() throws IOException { output.writeDouble(z); output.writeByte((byte) (int) (pitch * 256.0F / 360.0F)); output.writeByte((byte) (int) (yaw * 256.0F / 360.0F)); - output.writeInt(data); - output.writeShort((int) (velocityX * 8000)); - output.writeShort((int) (velocityY * 8000)); - output.writeShort((int) (velocityZ * 8000)); + output.writeByte((byte) (int) (headYaw * 256.0F / 360.0F)); + DataTypeIO.writeVarInt(output, data); + output.writeShort(velocityX * 8000); + output.writeShort(velocityY * 8000); + output.writeShort(velocityZ * 8000); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java deleted file mode 100644 index e606f0d..0000000 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSpawnEntityLiving.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * This file is part of Limbo. - * - * Copyright (C) 2022. LoohpJames - * Copyright (C) 2022. Contributors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.loohp.limbo.network.protocol.packets; - -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.util.UUID; - -import com.loohp.limbo.entity.EntityType; -import com.loohp.limbo.utils.DataTypeIO; - -public class PacketPlayOutSpawnEntityLiving extends PacketOut { - - private int entityId; - private UUID uuid; - private EntityType type; - private double x; - private double y; - private double z; - private float yaw; - private float pitch; - private float headPitch; - private short velocityX; - private short velocityY; - private short velocityZ; - - public PacketPlayOutSpawnEntityLiving(int entityId, UUID uuid, EntityType type, double x, double y, double z, float yaw, float pitch, float headPitch, short velocityX, short velocityY, short velocityZ) { - this.entityId = entityId; - this.uuid = uuid; - this.type = type; - this.x = x; - this.y = y; - this.z = z; - this.yaw = yaw; - this.pitch = pitch; - this.headPitch = headPitch; - this.velocityX = velocityX; - this.velocityY = velocityY; - this.velocityZ = velocityZ; - } - - public int getEntityId() { - return entityId; - } - - public UUID getUuid() { - return uuid; - } - - public EntityType getType() { - return type; - } - - public double getX() { - return x; - } - - public double getY() { - return y; - } - - public double getZ() { - return z; - } - - public float getYaw() { - return yaw; - } - - public float getPitch() { - return pitch; - } - - public float getHeadPitch() { - return headPitch; - } - - public short getVelocityX() { - return velocityX; - } - - public short getVelocityY() { - return velocityY; - } - - public short getVelocityZ() { - return velocityZ; - } - - @Override - public byte[] serializePacket() throws IOException { - ByteArrayOutputStream buffer = new ByteArrayOutputStream(); - - DataOutputStream output = new DataOutputStream(buffer); - output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeVarInt(output, entityId); - DataTypeIO.writeUUID(output, uuid); - DataTypeIO.writeVarInt(output, type.getTypeId()); - output.writeDouble(x); - output.writeDouble(y); - output.writeDouble(z); - output.writeByte((byte) (int) (yaw * 256.0F / 360.0F)); - output.writeByte((byte) (int) (pitch * 256.0F / 360.0F)); - output.writeByte((byte) (int) (headPitch * 256.0F / 360.0F)); - output.writeShort((int) (velocityX * 8000)); - output.writeShort((int) (velocityY * 8000)); - output.writeShort((int) (velocityZ * 8000)); - - return buffer.toByteArray(); - } - -} diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java new file mode 100644 index 0000000..bb6e679 --- /dev/null +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundChatCommandPacket.java @@ -0,0 +1,79 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.network.protocol.packets; + +import com.loohp.limbo.utils.DataTypeIO; +import com.loohp.limbo.utils.NetworkEncryptionUtils.ArgumentSignatures; + +import java.io.DataInputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.time.Instant; +import java.util.HashMap; +import java.util.Map; + +public class ServerboundChatCommandPacket extends PacketIn { + + private String command; + private Instant time; + private ArgumentSignatures argumentSignatures; + private boolean commandPreview; + + public ServerboundChatCommandPacket(String command, Instant time, ArgumentSignatures argumentSignatures, boolean commandPreview) { + this.command = command; + this.time = time; + this.argumentSignatures = argumentSignatures; + this.commandPreview = commandPreview; + } + + public ServerboundChatCommandPacket(DataInputStream in) throws IOException { + this.command = DataTypeIO.readString(in, StandardCharsets.UTF_8); + this.time = Instant.ofEpochMilli(in.readLong()); + long salt = in.readLong(); + int size = DataTypeIO.readVarInt(in); + Map signatures = new HashMap<>(size); + for (int i = 0; i < size; i++) { + String key = DataTypeIO.readString(in, StandardCharsets.UTF_8); + int arraySize = DataTypeIO.readVarInt(in); + byte[] value = new byte[arraySize]; + in.readFully(value); + signatures.put(key, value); + } + this.argumentSignatures = new ArgumentSignatures(salt, signatures); + this.commandPreview = in.readBoolean(); + } + + public String getCommand() { + return command; + } + + public Instant getTime() { + return time; + } + + public ArgumentSignatures getArgumentSignatures() { + return argumentSignatures; + } + + public boolean isCommandPreview() { + return commandPreview; + } + +} diff --git a/src/main/java/com/loohp/limbo/player/Player.java b/src/main/java/com/loohp/limbo/player/Player.java index d82aadb..dc76974 100644 --- a/src/main/java/com/loohp/limbo/player/Player.java +++ b/src/main/java/com/loohp/limbo/player/Player.java @@ -19,10 +19,6 @@ package com.loohp.limbo.player; -import java.io.IOException; -import java.time.Duration; -import java.util.UUID; - import com.loohp.limbo.Limbo; import com.loohp.limbo.commands.CommandSender; import com.loohp.limbo.entity.DataWatcher; @@ -38,7 +34,8 @@ import com.loohp.limbo.network.protocol.packets.ClientboundSetSubtitleTextPacket; import com.loohp.limbo.network.protocol.packets.ClientboundSetTitleTextPacket; import com.loohp.limbo.network.protocol.packets.ClientboundSetTitlesAnimationPacket; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutChat; +import com.loohp.limbo.network.protocol.packets.ClientboundSystemChatPacket; +import com.loohp.limbo.network.protocol.packets.PacketOut; import com.loohp.limbo.network.protocol.packets.PacketPlayOutGameState; import com.loohp.limbo.network.protocol.packets.PacketPlayOutHeldItemChange; import com.loohp.limbo.network.protocol.packets.PacketPlayOutPlayerListHeaderFooter; @@ -47,8 +44,8 @@ import com.loohp.limbo.network.protocol.packets.PacketPlayOutRespawn; import com.loohp.limbo.utils.BungeecordAdventureConversionUtils; import com.loohp.limbo.utils.GameMode; - import com.loohp.limbo.utils.NamespacedKey; +import com.loohp.limbo.utils.NetworkEncryptionUtils; import net.kyori.adventure.audience.MessageType; import net.kyori.adventure.bossbar.BossBar; import net.kyori.adventure.identity.Identity; @@ -63,7 +60,11 @@ import net.kyori.adventure.title.TitlePart; import net.md_5.bungee.api.ChatColor; import net.md_5.bungee.api.chat.BaseComponent; -import net.md_5.bungee.api.chat.TranslatableComponent; + +import java.io.IOException; +import java.time.Duration; +import java.time.Instant; +import java.util.UUID; public class Player extends LivingEntity implements CommandSender { @@ -298,22 +299,25 @@ public void disconnect(BaseComponent[] reason) { public void chat(String message) { chat(message, false); } - + public void chat(String message, boolean verbose) { + chat(message, verbose, null, Instant.now()); + } + + public void chat(String message, boolean verbose, NetworkEncryptionUtils.SignatureData saltSignature, Instant time) { if (Limbo.getInstance().getServerProperties().isAllowChat()) { - PlayerChatEvent event = (PlayerChatEvent) Limbo.getInstance().getEventsManager().callEvent(new PlayerChatEvent(this, CHAT_DEFAULT_FORMAT, message, false)); + PlayerChatEvent event = Limbo.getInstance().getEventsManager().callEvent(new PlayerChatEvent(this, CHAT_DEFAULT_FORMAT, message, false)); if (!event.isCancelled()) { if (hasPermission("limboserver.chat")) { String chat = event.getFormat().replace("%name%", username).replace("%message%", event.getMessage()); Limbo.getInstance().getConsole().sendMessage(chat); if (event.getFormat().equals(CHAT_DEFAULT_FORMAT)) { - TranslatableComponent translatable = new TranslatableComponent("chat.type.text", username, event.getMessage()); for (Player each : Limbo.getInstance().getPlayers()) { - each.sendMessage(translatable, uuid); + each.sendMessage(Identity.identity(uuid), Component.translatable("chat.type.text").args(Component.text(this.getName()), Component.text(event.getMessage())), MessageType.CHAT, saltSignature, time); } } else { for (Player each : Limbo.getInstance().getPlayers()) { - each.sendMessage(chat, uuid); + each.sendMessage(Identity.identity(uuid), Component.text(chat), MessageType.SYSTEM, saltSignature, time); } } } else if (verbose) { @@ -412,10 +416,29 @@ public void setTitleSubTitle(String title, String subTitle, int fadeIn, int stay @Override public void sendMessage(Identity source, Component message, MessageType type) { + sendMessage(source, message, type, null, Instant.now()); + } + + public void sendMessage(Identity source, Component message, MessageType type, NetworkEncryptionUtils.SignatureData signature, Instant time) { try { - PacketPlayOutChat chat = new PacketPlayOutChat(message, 0, uuid); + PacketOut chat; + switch (type) { + case CHAT: + /* + if (signature == null) { + chat = new ClientboundPlayerChatPacket(Component.empty(), Optional.of(message), 0, uuid, time, SignatureData.NONE); + } else { + chat = new ClientboundPlayerChatPacket(message, Optional.of(message), 0, uuid, time, signature); + } + break; + */ + case SYSTEM: + default: + chat = new ClientboundSystemChatPacket(message, 1); + break; + } clientConnection.sendPacket(chat); - } catch (IOException e) {} + } catch (IOException ignored) {} } @Override @@ -446,9 +469,9 @@ public void playSound(Sound sound) { @Override public void sendActionBar(Component message) { try { - PacketPlayOutChat chat = new PacketPlayOutChat(message, 2, new UUID(0, 0)); + ClientboundSystemChatPacket chat = new ClientboundSystemChatPacket(message, 2); clientConnection.sendPacket(chat); - } catch (IOException e) {} + } catch (IOException ignored) {} } @Override diff --git a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java index ca3b67d..83b1270 100644 --- a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java +++ b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java @@ -19,16 +19,6 @@ package com.loohp.limbo.player; -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.stream.Collectors; - import com.loohp.limbo.Limbo; import com.loohp.limbo.entity.Entity; import com.loohp.limbo.location.Location; @@ -36,13 +26,21 @@ import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityDestroy; import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityMetadata; import com.loohp.limbo.network.protocol.packets.PacketPlayOutSpawnEntity; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutSpawnEntityLiving; import com.loohp.limbo.network.protocol.packets.PacketPlayOutUnloadChunk; import com.loohp.limbo.world.ChunkPosition; import com.loohp.limbo.world.World; - import net.querz.mca.Chunk; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.Set; +import java.util.stream.Collectors; + public class PlayerInteractManager { private Player player; @@ -75,19 +73,11 @@ public void update() throws IOException { Set entitiesInRange = player.getWorld().getEntities().stream().filter(each -> each.getLocation().distanceSquared(location) < viewDistanceBlocks * viewDistanceBlocks).collect(Collectors.toSet()); for (Entity entity : entitiesInRange) { if (!entities.contains(entity)) { - if (entity.getType().isAlive()) { - PacketPlayOutSpawnEntityLiving packet = new PacketPlayOutSpawnEntityLiving(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getYaw(), entity.getPitch(), entity.getPitch(), (short) 0, (short) 0, (short) 0); - player.clientConnection.sendPacket(packet); - - PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); - player.clientConnection.sendPacket(meta); - } else { - PacketPlayOutSpawnEntity packet = new PacketPlayOutSpawnEntity(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getPitch(), entity.getYaw(), (short) 0, (short) 0, (short) 0); - player.clientConnection.sendPacket(packet); - - PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); - player.clientConnection.sendPacket(meta); - } + PacketPlayOutSpawnEntity packet = new PacketPlayOutSpawnEntity(entity.getEntityId(), entity.getUniqueId(), entity.getType(), entity.getX(), entity.getY(), entity.getZ(), entity.getYaw(), entity.getPitch(), entity.getPitch(), 0, (short) 0, (short) 0, (short) 0); + player.clientConnection.sendPacket(packet); + + PacketPlayOutEntityMetadata meta = new PacketPlayOutEntityMetadata(entity); + player.clientConnection.sendPacket(meta); } } List ids = new ArrayList<>(); @@ -127,7 +117,7 @@ public void update() throws IOException { player.clientConnection.sendPacket(packet); } } - + for (Entry entry : chunksInRange.entrySet()) { ChunkPosition chunkPos = entry.getKey(); if (!currentViewing.containsKey(chunkPos)) { @@ -152,7 +142,7 @@ public void update() throws IOException { } } } - + currentViewing = chunksInRange; } diff --git a/src/main/java/com/loohp/limbo/utils/DeclareCommands.java b/src/main/java/com/loohp/limbo/utils/DeclareCommands.java index 78b533f..5d3a73a 100644 --- a/src/main/java/com/loohp/limbo/utils/DeclareCommands.java +++ b/src/main/java/com/loohp/limbo/utils/DeclareCommands.java @@ -58,11 +58,10 @@ public static PacketPlayOutDeclareCommands getDeclareCommandsPacket(CommandSende i++; output.writeByte(2 | 0x04 | 0x10); - DataTypeIO.writeVarInt(output, 1); - DataTypeIO.writeVarInt(output, i); - DataTypeIO.writeString(output, "arg", StandardCharsets.UTF_8); - DataTypeIO.writeString(output, "brigadier:string", StandardCharsets.UTF_8); DataTypeIO.writeVarInt(output, 0); + DataTypeIO.writeString(output, "arg", StandardCharsets.UTF_8); + DataTypeIO.writeVarInt(output, 5); //brigadier:string + DataTypeIO.writeVarInt(output, 2); DataTypeIO.writeString(output, "minecraft:ask_server", StandardCharsets.UTF_8); i++; } diff --git a/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java b/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java new file mode 100644 index 0000000..eb49d78 --- /dev/null +++ b/src/main/java/com/loohp/limbo/utils/NetworkEncryptionUtils.java @@ -0,0 +1,84 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2022. LoohpJames + * Copyright (C) 2022. Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.loohp.limbo.utils; + +import com.google.common.primitives.Longs; + +import java.io.DataInputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.util.Map; + +public class NetworkEncryptionUtils { + + public static class SignatureData { + + public static final SignatureData NONE = new SignatureData(0L, new byte[0]); + private long salt; + private byte[] signature; + + public SignatureData(long salt, byte[] signature) { + this.salt = salt; + this.signature = signature; + } + + public SignatureData(DataInputStream in) throws IOException { + this.salt = in.readLong(); + int length = DataTypeIO.readVarInt(in); + this.signature = new byte[length]; + in.readFully(this.signature); + } + + public boolean isSignaturePresent() { + return this.signature.length > 0; + } + + public static void write(DataOutputStream out, SignatureData signatureData) throws IOException { + out.writeLong(signatureData.salt); + DataTypeIO.writeVarInt(out, signatureData.signature.length); + out.write(signatureData.signature); + } + + public byte[] getSalt() { + return Longs.toByteArray(this.salt); + } + } + + public static class ArgumentSignatures { + + private long salt; + private Map signatures; + + public ArgumentSignatures(long salt, Map signatures) { + this.salt = salt; + this.signatures = signatures; + } + + public long getSalt() { + return salt; + } + + public Map getSignatures() { + return signatures; + } + + } + +} diff --git a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java b/src/main/java/com/loohp/limbo/world/DimensionRegistry.java index 9762a73..850ce79 100644 --- a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java +++ b/src/main/java/com/loohp/limbo/world/DimensionRegistry.java @@ -57,7 +57,7 @@ public DimensionRegistry() { this.reg = file; - try (InputStreamReader reader = new InputStreamReader(new FileInputStream(reg), StandardCharsets.UTF_8)) { + try (InputStreamReader reader = new InputStreamReader(Files.newInputStream(reg.toPath()), StandardCharsets.UTF_8)) { JSONObject json = (JSONObject) new JSONParser().parse(reader); CompoundTag tag = CustomNBTUtils.getCompoundTagFromJson((JSONObject) json.get("value")); defaultTag = tag; diff --git a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java index b5f711a..ab11dcb 100644 --- a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java +++ b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java @@ -26,6 +26,7 @@ import java.nio.file.Files; import java.util.HashMap; import java.util.Map; +import java.util.Objects; import org.json.simple.JSONArray; import org.json.simple.JSONObject; @@ -79,7 +80,7 @@ public static int getGlobalPaletteIDFromState(CompoundTag tag) { for (Object entry : (JSONArray) data.get("states")) { JSONObject jsonobj = (JSONObject) entry; - if (((JSONObject) jsonobj.get("properties")).keySet().stream().allMatch(key -> blockstate.get(key).equals((String) (((JSONObject) jsonobj.get("properties")).get(key))))) { + if (((JSONObject) jsonobj.get("properties")).keySet().stream().allMatch(key -> Objects.equals(blockstate.get(key), ((JSONObject) jsonobj.get("properties")).get(key)))) { return (int) (long) jsonobj.get("id"); } } diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json index 79271e8..7dd79e3 100644 --- a/src/main/resources/blocks.json +++ b/src/main/resources/blocks.json @@ -1,1611 +1,1548 @@ { - "minecraft:air": { - "states": [ - { - "id": 0, - "default": true - } - ] - }, - "minecraft:stone": { - "states": [ - { - "id": 1, - "default": true - } - ] - }, - "minecraft:granite": { - "states": [ - { - "id": 2, - "default": true - } - ] - }, - "minecraft:polished_granite": { - "states": [ - { - "id": 3, - "default": true - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "id": 4, - "default": true - } - ] - }, - "minecraft:polished_diorite": { - "states": [ - { - "id": 5, - "default": true - } - ] - }, - "minecraft:andesite": { - "states": [ - { - "id": 6, - "default": true - } - ] - }, - "minecraft:polished_andesite": { - "states": [ - { - "id": 7, - "default": true - } - ] - }, - "minecraft:grass_block": { + "minecraft:acacia_button": { "properties": { - "snowy": [ + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 7035, "properties": { - "snowy": "true" - }, - "id": 8 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 7036, "properties": { - "snowy": "false" - }, - "id": 9, - "default": true - } - ] - }, - "minecraft:dirt": { - "states": [ - { - "id": 10, - "default": true - } - ] - }, - "minecraft:coarse_dirt": { - "states": [ - { - "id": 11, - "default": true - } - ] - }, - "minecraft:podzol": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ + "face": "floor", + "facing": "north", + "powered": "false" + } + }, { + "id": 7037, "properties": { - "snowy": "true" - }, - "id": 12 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 7038, "properties": { - "snowy": "false" - }, - "id": 13, - "default": true - } - ] - }, - "minecraft:cobblestone": { - "states": [ + "face": "floor", + "facing": "south", + "powered": "false" + } + }, { - "id": 14, - "default": true - } - ] - }, - "minecraft:oak_planks": { - "states": [ + "id": 7039, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, { - "id": 15, - "default": true - } - ] - }, - "minecraft:spruce_planks": { - "states": [ + "id": 7040, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, { - "id": 16, - "default": true - } - ] - }, - "minecraft:birch_planks": { - "states": [ + "id": 7041, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, { - "id": 17, - "default": true - } - ] - }, - "minecraft:jungle_planks": { - "states": [ + "id": 7042, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, { - "id": 18, - "default": true - } - ] - }, - "minecraft:acacia_planks": { - "states": [ + "id": 7043, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, { - "id": 19, - "default": true - } - ] - }, - "minecraft:dark_oak_planks": { - "states": [ + "default": true, + "id": 7044, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, { - "id": 20, - "default": true - } - ] - }, - "minecraft:oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "id": 7045, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, { + "id": 7046, "properties": { - "stage": "0" - }, - "id": 21, - "default": true + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 7047, "properties": { - "stage": "1" - }, - "id": 22 - } - ] - }, - "minecraft:spruce_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "face": "wall", + "facing": "west", + "powered": "true" + } + }, { + "id": 7048, "properties": { - "stage": "0" - }, - "id": 23, - "default": true + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 7049, "properties": { - "stage": "1" - }, - "id": 24 - } - ] - }, - "minecraft:birch_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "face": "wall", + "facing": "east", + "powered": "true" + } + }, { + "id": 7050, "properties": { - "stage": "0" - }, - "id": 25, - "default": true + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 7051, "properties": { - "stage": "1" - }, - "id": 26 - } - ] - }, - "minecraft:jungle_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, { + "id": 7052, "properties": { - "stage": "0" - }, - "id": 27, - "default": true + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 7053, "properties": { - "stage": "1" - }, - "id": 28 - } - ] - }, - "minecraft:acacia_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, { + "id": 7054, "properties": { - "stage": "0" - }, - "id": 29, - "default": true + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 7055, "properties": { - "stage": "1" - }, - "id": 30 - } - ] - }, - "minecraft:dark_oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, { + "id": 7056, "properties": { - "stage": "0" - }, - "id": 31, - "default": true + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 7057, "properties": { - "stage": "1" - }, - "id": 32 - } - ] - }, - "minecraft:bedrock": { - "states": [ + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, { - "id": 33, - "default": true + "id": 7058, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:water": { + "minecraft:acacia_door": { "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9747, "properties": { - "level": "0" - }, - "id": 34, - "default": true + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9748, "properties": { - "level": "1" - }, - "id": 35 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9749, "properties": { - "level": "2" - }, - "id": 36 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9750, "properties": { - "level": "3" - }, - "id": 37 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9751, "properties": { - "level": "4" - }, - "id": 38 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9752, "properties": { - "level": "5" - }, - "id": 39 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9753, "properties": { - "level": "6" - }, - "id": 40 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9754, "properties": { - "level": "7" - }, - "id": 41 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9755, "properties": { - "level": "8" - }, - "id": 42 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9756, "properties": { - "level": "9" - }, - "id": 43 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9757, "properties": { - "level": "10" - }, - "id": 44 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9758, "properties": { - "level": "11" - }, - "id": 45 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9759, "properties": { - "level": "12" - }, - "id": 46 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9760, "properties": { - "level": "13" - }, - "id": 47 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9761, "properties": { - "level": "14" - }, - "id": 48 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9762, "properties": { - "level": "15" - }, - "id": 49 - } - ] - }, - "minecraft:lava": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "level": "0" - }, - "id": 50, - "default": true + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9763, "properties": { - "level": "1" - }, - "id": 51 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9764, "properties": { - "level": "2" - }, - "id": 52 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9765, "properties": { - "level": "3" - }, - "id": 53 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9766, "properties": { - "level": "4" - }, - "id": 54 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9767, "properties": { - "level": "5" - }, - "id": 55 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9768, "properties": { - "level": "6" - }, - "id": 56 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9769, "properties": { - "level": "7" - }, - "id": 57 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9770, "properties": { - "level": "8" - }, - "id": 58 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9771, "properties": { - "level": "9" - }, - "id": 59 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9772, "properties": { - "level": "10" - }, - "id": 60 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9773, "properties": { - "level": "11" - }, - "id": 61 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9774, "properties": { - "level": "12" - }, - "id": 62 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9775, "properties": { - "level": "13" - }, - "id": 63 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9776, "properties": { - "level": "14" - }, - "id": 64 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9777, "properties": { - "level": "15" - }, - "id": 65 - } - ] - }, - "minecraft:sand": { - "states": [ - { - "id": 66, - "default": true - } - ] - }, - "minecraft:red_sand": { - "states": [ - { - "id": 67, - "default": true - } - ] - }, - "minecraft:gravel": { - "states": [ - { - "id": 68, - "default": true - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "id": 69, - "default": true - } - ] - }, - "minecraft:deepslate_gold_ore": { - "states": [ - { - "id": 70, - "default": true - } - ] - }, - "minecraft:iron_ore": { - "states": [ - { - "id": 71, - "default": true - } - ] - }, - "minecraft:deepslate_iron_ore": { - "states": [ - { - "id": 72, - "default": true - } - ] - }, - "minecraft:coal_ore": { - "states": [ - { - "id": 73, - "default": true - } - ] - }, - "minecraft:deepslate_coal_ore": { - "states": [ - { - "id": 74, - "default": true - } - ] - }, - "minecraft:nether_gold_ore": { - "states": [ - { - "id": 75, - "default": true - } - ] - }, - "minecraft:oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, { + "id": 9778, "properties": { - "axis": "x" - }, - "id": 76 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9779, "properties": { - "axis": "y" - }, - "id": 77, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9780, "properties": { - "axis": "z" - }, - "id": 78 - } - ] - }, - "minecraft:spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9781, "properties": { - "axis": "x" - }, - "id": 79 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9782, "properties": { - "axis": "y" - }, - "id": 80, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9783, "properties": { - "axis": "z" - }, - "id": 81 - } - ] - }, - "minecraft:birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, { + "id": 9784, "properties": { - "axis": "x" - }, - "id": 82 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9785, "properties": { - "axis": "y" - }, - "id": 83, - "default": true + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9786, "properties": { - "axis": "z" - }, - "id": 84 - } - ] - }, - "minecraft:jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9787, "properties": { - "axis": "x" - }, - "id": 85 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9788, "properties": { - "axis": "y" - }, - "id": 86, - "default": true + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9789, "properties": { - "axis": "z" - }, - "id": 87 - } - ] - }, - "minecraft:acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, { + "id": 9790, "properties": { - "axis": "x" - }, - "id": 88 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9791, "properties": { - "axis": "y" - }, - "id": 89, - "default": true + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9792, "properties": { - "axis": "z" - }, - "id": 90 - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, { + "id": 9793, "properties": { - "axis": "x" - }, - "id": 91 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9794, "properties": { - "axis": "y" - }, - "id": 92, - "default": true + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9795, "properties": { - "axis": "z" - }, - "id": 93 - } - ] - }, - "minecraft:stripped_spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, { + "id": 9796, "properties": { - "axis": "x" - }, - "id": 94 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9797, "properties": { - "axis": "y" - }, - "id": 95, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9798, "properties": { - "axis": "z" - }, - "id": 96 - } - ] - }, - "minecraft:stripped_birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { + "id": 9799, "properties": { - "axis": "x" - }, - "id": 97 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9800, "properties": { - "axis": "y" - }, - "id": 98, - "default": true + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9801, "properties": { - "axis": "z" - }, - "id": 99 - } - ] - }, - "minecraft:stripped_jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, { + "id": 9802, "properties": { - "axis": "x" - }, - "id": 100 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9803, "properties": { - "axis": "y" - }, - "id": 101, - "default": true + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9804, "properties": { - "axis": "z" - }, - "id": 102 - } - ] - }, - "minecraft:stripped_acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9805, "properties": { - "axis": "x" - }, - "id": 103 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9806, "properties": { - "axis": "y" - }, - "id": 104, - "default": true + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9807, "properties": { - "axis": "z" - }, - "id": 105 - } - ] - }, - "minecraft:stripped_dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, { + "id": 9808, "properties": { - "axis": "x" - }, - "id": 106 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9809, "properties": { - "axis": "y" - }, - "id": 107, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9810, "properties": { - "axis": "z" - }, - "id": 108 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:stripped_oak_log": { + "minecraft:acacia_fence": { "properties": { - "axis": [ - "x", - "y", - "z" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 9459, "properties": { - "axis": "x" - }, - "id": 109 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9460, "properties": { - "axis": "y" - }, - "id": 110, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9461, "properties": { - "axis": "z" - }, - "id": 111 - } - ] - }, - "minecraft:oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 112 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9462, "properties": { - "axis": "y" - }, - "id": 113, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9463, "properties": { - "axis": "z" - }, - "id": 114 - } - ] - }, - "minecraft:spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 9464, "properties": { - "axis": "x" - }, - "id": 115 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9465, "properties": { - "axis": "y" - }, - "id": 116, - "default": true + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9466, "properties": { - "axis": "z" - }, - "id": 117 - } - ] - }, - "minecraft:birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 9467, "properties": { - "axis": "x" - }, - "id": 118 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9468, "properties": { - "axis": "y" - }, - "id": 119, - "default": true + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9469, "properties": { - "axis": "z" - }, - "id": 120 - } - ] - }, - "minecraft:jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, { + "id": 9470, "properties": { - "axis": "x" - }, - "id": 121 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9471, "properties": { - "axis": "y" - }, - "id": 122, - "default": true + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9472, "properties": { - "axis": "z" - }, - "id": 123 - } - ] - }, - "minecraft:acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 9473, "properties": { - "axis": "x" - }, - "id": 124 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9474, "properties": { - "axis": "y" - }, - "id": 125, - "default": true + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9475, "properties": { - "axis": "z" - }, - "id": 126 - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 9476, "properties": { - "axis": "x" - }, - "id": 127 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9477, "properties": { - "axis": "y" - }, - "id": 128, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9478, "properties": { - "axis": "z" - }, - "id": 129 - } - ] - }, - "minecraft:stripped_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 9479, "properties": { - "axis": "x" - }, - "id": 130 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9480, "properties": { - "axis": "y" - }, - "id": 131, - "default": true + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9481, "properties": { - "axis": "z" - }, - "id": 132 - } - ] - }, - "minecraft:stripped_spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, { + "id": 9482, "properties": { - "axis": "x" - }, - "id": 133 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9483, "properties": { - "axis": "y" - }, - "id": 134, - "default": true + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9484, "properties": { - "axis": "z" - }, - "id": 135 - } - ] - }, - "minecraft:stripped_birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 9485, "properties": { - "axis": "x" - }, - "id": 136 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9486, "properties": { - "axis": "y" - }, - "id": 137, - "default": true + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9487, "properties": { - "axis": "z" - }, - "id": 138 - } - ] - }, - "minecraft:stripped_jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 9488, "properties": { - "axis": "x" - }, - "id": 139 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9489, "properties": { - "axis": "y" - }, - "id": 140, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 9490, "properties": { - "axis": "z" - }, - "id": 141 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:stripped_acacia_wood": { + "minecraft:acacia_fence_gate": { "properties": { - "axis": [ - "x", - "y", - "z" + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9267, "properties": { - "axis": "x" - }, - "id": 142 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9268, "properties": { - "axis": "y" - }, - "id": 143, - "default": true + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9269, "properties": { - "axis": "z" - }, - "id": 144 - } - ] - }, - "minecraft:stripped_dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 145 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9270, "properties": { - "axis": "y" - }, - "id": 146, - "default": true + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9271, "properties": { - "axis": "z" - }, - "id": 147 - } - ] - }, - "minecraft:oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 148 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9272, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 149 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9273, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 150 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9274, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 151 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9275, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 152 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9276, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 153 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9277, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 154 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9278, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 155 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9279, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 156 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9280, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 157 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9281, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 158 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9282, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 159 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9283, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 160 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9284, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 161, - "default": true - } - ] - }, - "minecraft:spruce_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, { + "id": 9285, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 162 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9286, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 163 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9287, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 164 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9288, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 165 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9289, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 166 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9290, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 167 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9291, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 168 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9292, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 169 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9293, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 170 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9294, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 171 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9295, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 172 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9296, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 173 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9297, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 174 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9298, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 175, - "default": true + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:birch_leaves": { + "minecraft:acacia_leaves": { "properties": { "distance": [ "1", @@ -1619,7332 +1556,8835 @@ "persistent": [ "true", "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 318, "properties": { "distance": "1", - "persistent": "true" - }, - "id": 176 + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 319, "properties": { "distance": "1", - "persistent": "false" - }, - "id": 177 + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 320, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 178 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 321, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 179 + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 322, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 180 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 323, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 181 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 324, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 182 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 325, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 183 + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 326, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 184 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 327, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 185 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 328, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 186 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 329, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 187 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 330, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 188 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 331, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 189, - "default": true - } - ] - }, - "minecraft:jungle_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, { + "id": 332, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 190 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 333, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 191 + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 334, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 192 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 335, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 193 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 336, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 194 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 337, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 195 + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 338, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 196 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 339, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 197 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 340, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 198 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 341, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 199 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 342, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 200 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 343, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 201 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 344, "properties": { "distance": "7", - "persistent": "true" - }, - "id": 202 + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 345, "properties": { "distance": "7", - "persistent": "false" - }, - "id": 203, - "default": true + "persistent": "false", + "waterlogged": "false" + } } ] }, - "minecraft:acacia_leaves": { + "minecraft:acacia_log": { "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { + "id": 129, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 204 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 205 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 206 - }, - { - "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 207 - }, - { - "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 208 - }, - { - "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 209 - }, - { - "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 210 + "axis": "x" + } }, { + "default": true, + "id": 130, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 211 + "axis": "y" + } }, { + "id": 131, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 212 - }, + "axis": "z" + } + } + ] + }, + "minecraft:acacia_planks": { + "states": [ { - "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 213 - }, + "default": true, + "id": 19 + } + ] + }, + "minecraft:acacia_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4186, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 214 + "powered": "true" + } }, { + "default": true, + "id": 4187, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 215 - }, + "powered": "false" + } + } + ] + }, + "minecraft:acacia_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ { + "default": true, + "id": 30, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 216 + "stage": "0" + } }, { + "id": 31, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 217, - "default": true + "stage": "1" + } } ] }, - "minecraft:dark_oak_leaves": { + "minecraft:acacia_sign": { "properties": { - "distance": [ + "rotation": [ + "0", "1", "2", "3", "4", "5", "6", - "7" + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "persistent": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 3732, "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 218 - }, - { - "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 219 - }, - { - "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 220 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3733, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 221 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3734, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 222 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3735, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 223 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3736, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 224 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3737, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 225 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3738, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 226 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3739, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 227 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3740, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 228 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3741, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 229 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3742, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 230 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3743, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 231, - "default": true - } - ] - }, - "minecraft:azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 232 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3744, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 233 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3745, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 234 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3746, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 235 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3747, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 236 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 3748, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 237 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3749, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 238 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3750, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 239 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3751, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 240 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3752, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 241 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3753, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 242 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3754, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 243 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3755, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 244 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3756, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 245, - "default": true - } - ] - }, - "minecraft:flowering_azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "distance": "1", - "persistent": "true" - }, - "id": 246 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3757, "properties": { - "distance": "1", - "persistent": "false" - }, - "id": 247 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3758, "properties": { - "distance": "2", - "persistent": "true" - }, - "id": 248 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3759, "properties": { - "distance": "2", - "persistent": "false" - }, - "id": 249 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3760, "properties": { - "distance": "3", - "persistent": "true" - }, - "id": 250 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3761, "properties": { - "distance": "3", - "persistent": "false" - }, - "id": 251 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3762, "properties": { - "distance": "4", - "persistent": "true" - }, - "id": 252 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3763, "properties": { - "distance": "4", - "persistent": "false" - }, - "id": 253 - }, + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9065, "properties": { - "distance": "5", - "persistent": "true" - }, - "id": 254 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9066, "properties": { - "distance": "5", - "persistent": "false" - }, - "id": 255 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9067, "properties": { - "distance": "6", - "persistent": "true" - }, - "id": 256 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9068, "properties": { - "distance": "6", - "persistent": "false" - }, - "id": 257 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9069, "properties": { - "distance": "7", - "persistent": "true" - }, - "id": 258 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9070, "properties": { - "distance": "7", - "persistent": "false" - }, - "id": 259, - "default": true - } - ] - }, - "minecraft:sponge": { - "states": [ - { - "id": 260, - "default": true + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:wet_sponge": { - "states": [ - { - "id": 261, - "default": true - } - ] - }, - "minecraft:glass": { - "states": [ - { - "id": 262, - "default": true - } - ] - }, - "minecraft:lapis_ore": { - "states": [ - { - "id": 263, - "default": true - } - ] - }, - "minecraft:deepslate_lapis_ore": { - "states": [ - { - "id": 264, - "default": true - } - ] - }, - "minecraft:lapis_block": { - "states": [ - { - "id": 265, - "default": true - } - ] - }, - "minecraft:dispenser": { + "minecraft:acacia_stairs": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "triggered": [ + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 8004, "properties": { "facing": "north", - "triggered": "true" - }, - "id": 266 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8005, "properties": { "facing": "north", - "triggered": "false" - }, - "id": 267, - "default": true + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8006, "properties": { - "facing": "east", - "triggered": "true" - }, - "id": 268 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8007, "properties": { - "facing": "east", - "triggered": "false" - }, - "id": 269 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8008, "properties": { - "facing": "south", - "triggered": "true" - }, - "id": 270 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8009, "properties": { - "facing": "south", - "triggered": "false" - }, - "id": 271 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8010, "properties": { - "facing": "west", - "triggered": "true" - }, - "id": 272 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8011, "properties": { - "facing": "west", - "triggered": "false" - }, - "id": 273 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8012, "properties": { - "facing": "up", - "triggered": "true" - }, - "id": 274 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8013, "properties": { - "facing": "up", - "triggered": "false" - }, - "id": 275 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8014, "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 276 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 8015, "properties": { - "facing": "down", - "triggered": "false" - }, - "id": 277 - } - ] - }, - "minecraft:sandstone": { - "states": [ - { - "id": 278, - "default": true - } - ] - }, - "minecraft:chiseled_sandstone": { - "states": [ - { - "id": 279, - "default": true - } - ] - }, - "minecraft:cut_sandstone": { - "states": [ - { - "id": 280, - "default": true - } - ] - }, - "minecraft:note_block": { - "properties": { - "instrument": [ - "harp", - "basedrum", - "snare", - "hat", - "bass", - "flute", - "bell", - "guitar", - "chime", - "xylophone", - "iron_xylophone", - "cow_bell", - "didgeridoo", - "bit", - "banjo", - "pling" - ], - "note": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "instrument": "harp", - "note": "0", - "powered": "true" - }, - "id": 281 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8016, "properties": { - "instrument": "harp", - "note": "0", - "powered": "false" - }, - "id": 282, - "default": true + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8017, "properties": { - "instrument": "harp", - "note": "1", - "powered": "true" - }, - "id": 283 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8018, "properties": { - "instrument": "harp", - "note": "1", - "powered": "false" - }, - "id": 284 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8019, "properties": { - "instrument": "harp", - "note": "2", - "powered": "true" - }, - "id": 285 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8020, "properties": { - "instrument": "harp", - "note": "2", - "powered": "false" - }, - "id": 286 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8021, "properties": { - "instrument": "harp", - "note": "3", - "powered": "true" - }, - "id": 287 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8022, "properties": { - "instrument": "harp", - "note": "3", - "powered": "false" - }, - "id": 288 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8023, "properties": { - "instrument": "harp", - "note": "4", - "powered": "true" - }, - "id": 289 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8024, "properties": { - "instrument": "harp", - "note": "4", - "powered": "false" - }, - "id": 290 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8025, "properties": { - "instrument": "harp", - "note": "5", - "powered": "true" - }, - "id": 291 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8026, "properties": { - "instrument": "harp", - "note": "5", - "powered": "false" - }, - "id": 292 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8027, "properties": { - "instrument": "harp", - "note": "6", - "powered": "true" - }, - "id": 293 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8028, "properties": { - "instrument": "harp", - "note": "6", - "powered": "false" - }, - "id": 294 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8029, "properties": { - "instrument": "harp", - "note": "7", - "powered": "true" - }, - "id": 295 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8030, "properties": { - "instrument": "harp", - "note": "7", - "powered": "false" - }, - "id": 296 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8031, "properties": { - "instrument": "harp", - "note": "8", - "powered": "true" - }, - "id": 297 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8032, "properties": { - "instrument": "harp", - "note": "8", - "powered": "false" - }, - "id": 298 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8033, "properties": { - "instrument": "harp", - "note": "9", - "powered": "true" - }, - "id": 299 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8034, "properties": { - "instrument": "harp", - "note": "9", - "powered": "false" - }, - "id": 300 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8035, "properties": { - "instrument": "harp", - "note": "10", - "powered": "true" - }, - "id": 301 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8036, "properties": { - "instrument": "harp", - "note": "10", - "powered": "false" - }, - "id": 302 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8037, "properties": { - "instrument": "harp", - "note": "11", - "powered": "true" - }, - "id": 303 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8038, "properties": { - "instrument": "harp", - "note": "11", - "powered": "false" - }, - "id": 304 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8039, "properties": { - "instrument": "harp", - "note": "12", - "powered": "true" - }, - "id": 305 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8040, "properties": { - "instrument": "harp", - "note": "12", - "powered": "false" - }, - "id": 306 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8041, "properties": { - "instrument": "harp", - "note": "13", - "powered": "true" - }, - "id": 307 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8042, "properties": { - "instrument": "harp", - "note": "13", - "powered": "false" - }, - "id": 308 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8043, "properties": { - "instrument": "harp", - "note": "14", - "powered": "true" - }, - "id": 309 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8044, "properties": { - "instrument": "harp", - "note": "14", - "powered": "false" - }, - "id": 310 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8045, "properties": { - "instrument": "harp", - "note": "15", - "powered": "true" - }, - "id": 311 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8046, "properties": { - "instrument": "harp", - "note": "15", - "powered": "false" - }, - "id": 312 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8047, "properties": { - "instrument": "harp", - "note": "16", - "powered": "true" - }, - "id": 313 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8048, "properties": { - "instrument": "harp", - "note": "16", - "powered": "false" - }, - "id": 314 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8049, "properties": { - "instrument": "harp", - "note": "17", - "powered": "true" - }, - "id": 315 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8050, "properties": { - "instrument": "harp", - "note": "17", - "powered": "false" - }, - "id": 316 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8051, "properties": { - "instrument": "harp", - "note": "18", - "powered": "true" - }, - "id": 317 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8052, "properties": { - "instrument": "harp", - "note": "18", - "powered": "false" - }, - "id": 318 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8053, "properties": { - "instrument": "harp", - "note": "19", - "powered": "true" - }, - "id": 319 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8054, "properties": { - "instrument": "harp", - "note": "19", - "powered": "false" - }, - "id": 320 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8055, "properties": { - "instrument": "harp", - "note": "20", - "powered": "true" - }, - "id": 321 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8056, "properties": { - "instrument": "harp", - "note": "20", - "powered": "false" - }, - "id": 322 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8057, "properties": { - "instrument": "harp", - "note": "21", - "powered": "true" - }, - "id": 323 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8058, "properties": { - "instrument": "harp", - "note": "21", - "powered": "false" - }, - "id": 324 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8059, "properties": { - "instrument": "harp", - "note": "22", - "powered": "true" - }, - "id": 325 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8060, "properties": { - "instrument": "harp", - "note": "22", - "powered": "false" - }, - "id": 326 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8061, "properties": { - "instrument": "harp", - "note": "23", - "powered": "true" - }, - "id": 327 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8062, "properties": { - "instrument": "harp", - "note": "23", - "powered": "false" - }, - "id": 328 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8063, "properties": { - "instrument": "harp", - "note": "24", - "powered": "true" - }, - "id": 329 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8064, "properties": { - "instrument": "harp", - "note": "24", - "powered": "false" - }, - "id": 330 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8065, "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "true" - }, - "id": 331 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8066, "properties": { - "instrument": "basedrum", - "note": "0", - "powered": "false" - }, - "id": 332 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8067, "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "true" - }, - "id": 333 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8068, "properties": { - "instrument": "basedrum", - "note": "1", - "powered": "false" - }, - "id": 334 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8069, "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "true" - }, - "id": 335 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8070, "properties": { - "instrument": "basedrum", - "note": "2", - "powered": "false" - }, - "id": 336 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8071, "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "true" - }, - "id": 337 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8072, "properties": { - "instrument": "basedrum", - "note": "3", - "powered": "false" - }, - "id": 338 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8073, "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "true" - }, - "id": 339 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8074, "properties": { - "instrument": "basedrum", - "note": "4", - "powered": "false" - }, - "id": 340 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8075, "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "true" - }, - "id": 341 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8076, "properties": { - "instrument": "basedrum", - "note": "5", - "powered": "false" - }, - "id": 342 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8077, "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "true" - }, - "id": 343 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8078, "properties": { - "instrument": "basedrum", - "note": "6", - "powered": "false" - }, - "id": 344 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8079, "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "true" - }, - "id": 345 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8080, "properties": { - "instrument": "basedrum", - "note": "7", - "powered": "false" - }, - "id": 346 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8081, "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "true" - }, - "id": 347 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8082, "properties": { - "instrument": "basedrum", - "note": "8", - "powered": "false" - }, - "id": 348 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8083, "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "true" - }, - "id": 349 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4676, "properties": { - "instrument": "basedrum", - "note": "9", - "powered": "false" - }, - "id": 350 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4677, "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "true" - }, - "id": 351 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4678, "properties": { - "instrument": "basedrum", - "note": "10", - "powered": "false" - }, - "id": 352 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4679, "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "true" - }, - "id": 353 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4680, "properties": { - "instrument": "basedrum", - "note": "11", - "powered": "false" - }, - "id": 354 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4681, "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "true" - }, - "id": 355 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4682, "properties": { - "instrument": "basedrum", - "note": "12", - "powered": "false" - }, - "id": 356 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4683, "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "true" - }, - "id": 357 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4684, "properties": { - "instrument": "basedrum", - "note": "13", - "powered": "false" - }, - "id": 358 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4685, "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "true" - }, - "id": 359 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4686, "properties": { - "instrument": "basedrum", - "note": "14", - "powered": "false" - }, - "id": 360 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4687, "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "true" - }, - "id": 361 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4688, "properties": { - "instrument": "basedrum", - "note": "15", - "powered": "false" - }, - "id": 362 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4689, "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "true" - }, - "id": 363 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4690, "properties": { - "instrument": "basedrum", - "note": "16", - "powered": "false" - }, - "id": 364 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 4691, "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "true" - }, - "id": 365 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4692, "properties": { - "instrument": "basedrum", - "note": "17", - "powered": "false" - }, - "id": 366 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4693, "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "true" - }, - "id": 367 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4694, "properties": { - "instrument": "basedrum", - "note": "18", - "powered": "false" - }, - "id": 368 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4695, "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "true" - }, - "id": 369 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4696, "properties": { - "instrument": "basedrum", - "note": "19", - "powered": "false" - }, - "id": 370 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4697, "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "true" - }, - "id": 371 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4698, "properties": { - "instrument": "basedrum", - "note": "20", - "powered": "false" - }, - "id": 372 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4699, "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "true" - }, - "id": 373 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4700, "properties": { - "instrument": "basedrum", - "note": "21", - "powered": "false" - }, - "id": 374 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4701, "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "true" - }, - "id": 375 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4702, "properties": { - "instrument": "basedrum", - "note": "22", - "powered": "false" - }, - "id": 376 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4703, "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "true" - }, - "id": 377 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4704, "properties": { - "instrument": "basedrum", - "note": "23", - "powered": "false" - }, - "id": 378 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4705, "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "true" - }, - "id": 379 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4706, "properties": { - "instrument": "basedrum", - "note": "24", - "powered": "false" - }, - "id": 380 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4707, "properties": { - "instrument": "snare", - "note": "0", - "powered": "true" - }, - "id": 381 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4708, "properties": { - "instrument": "snare", - "note": "0", - "powered": "false" - }, - "id": 382 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4709, "properties": { - "instrument": "snare", - "note": "1", - "powered": "true" - }, - "id": 383 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4710, "properties": { - "instrument": "snare", - "note": "1", - "powered": "false" - }, - "id": 384 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4711, "properties": { - "instrument": "snare", - "note": "2", - "powered": "true" - }, - "id": 385 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4712, "properties": { - "instrument": "snare", - "note": "2", - "powered": "false" - }, - "id": 386 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4713, "properties": { - "instrument": "snare", - "note": "3", - "powered": "true" - }, - "id": 387 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4714, "properties": { - "instrument": "snare", - "note": "3", - "powered": "false" - }, - "id": 388 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4715, "properties": { - "instrument": "snare", - "note": "4", - "powered": "true" - }, - "id": 389 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4716, "properties": { - "instrument": "snare", - "note": "4", - "powered": "false" - }, - "id": 390 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4717, "properties": { - "instrument": "snare", - "note": "5", - "powered": "true" - }, - "id": 391 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4718, "properties": { - "instrument": "snare", - "note": "5", - "powered": "false" - }, - "id": 392 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4719, "properties": { - "instrument": "snare", - "note": "6", - "powered": "true" - }, - "id": 393 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4720, "properties": { - "instrument": "snare", - "note": "6", - "powered": "false" - }, - "id": 394 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4721, "properties": { - "instrument": "snare", - "note": "7", - "powered": "true" - }, - "id": 395 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4722, "properties": { - "instrument": "snare", - "note": "7", - "powered": "false" - }, - "id": 396 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4723, "properties": { - "instrument": "snare", - "note": "8", - "powered": "true" - }, - "id": 397 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4724, "properties": { - "instrument": "snare", - "note": "8", - "powered": "false" - }, - "id": 398 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4725, "properties": { - "instrument": "snare", - "note": "9", - "powered": "true" - }, - "id": 399 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4726, "properties": { - "instrument": "snare", - "note": "9", - "powered": "false" - }, - "id": 400 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4727, "properties": { - "instrument": "snare", - "note": "10", - "powered": "true" - }, - "id": 401 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4728, "properties": { - "instrument": "snare", - "note": "10", - "powered": "false" - }, - "id": 402 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4729, "properties": { - "instrument": "snare", - "note": "11", - "powered": "true" - }, - "id": 403 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4730, "properties": { - "instrument": "snare", - "note": "11", - "powered": "false" - }, - "id": 404 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4731, "properties": { - "instrument": "snare", - "note": "12", - "powered": "true" - }, - "id": 405 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4732, "properties": { - "instrument": "snare", - "note": "12", - "powered": "false" - }, - "id": 406 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4733, "properties": { - "instrument": "snare", - "note": "13", - "powered": "true" - }, - "id": 407 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4734, "properties": { - "instrument": "snare", - "note": "13", - "powered": "false" - }, - "id": 408 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4735, "properties": { - "instrument": "snare", - "note": "14", - "powered": "true" - }, - "id": 409 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4736, "properties": { - "instrument": "snare", - "note": "14", - "powered": "false" - }, - "id": 410 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4737, "properties": { - "instrument": "snare", - "note": "15", - "powered": "true" - }, - "id": 411 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4738, "properties": { - "instrument": "snare", - "note": "15", - "powered": "false" - }, - "id": 412 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4739, "properties": { - "instrument": "snare", - "note": "16", - "powered": "true" - }, - "id": 413 - }, + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4056, "properties": { - "instrument": "snare", - "note": "16", - "powered": "false" - }, - "id": 414 + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 4057, "properties": { - "instrument": "snare", - "note": "17", - "powered": "true" - }, - "id": 415 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 4058, "properties": { - "instrument": "snare", - "note": "17", - "powered": "false" - }, - "id": 416 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 4059, "properties": { - "instrument": "snare", - "note": "18", - "powered": "true" - }, - "id": 417 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 4060, "properties": { - "instrument": "snare", - "note": "18", - "powered": "false" - }, - "id": 418 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 4061, "properties": { - "instrument": "snare", - "note": "19", - "powered": "true" - }, - "id": 419 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 4062, "properties": { - "instrument": "snare", - "note": "19", - "powered": "false" - }, - "id": 420 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 4063, "properties": { - "instrument": "snare", - "note": "20", - "powered": "true" - }, - "id": 421 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 176, "properties": { - "instrument": "snare", - "note": "20", - "powered": "false" - }, - "id": 422 + "axis": "x" + } }, { + "default": true, + "id": 177, "properties": { - "instrument": "snare", - "note": "21", - "powered": "true" - }, - "id": 423 + "axis": "y" + } }, { + "id": 178, "properties": { - "instrument": "snare", - "note": "21", - "powered": "false" - }, - "id": 424 - }, + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7440, "properties": { - "instrument": "snare", - "note": "22", - "powered": "true" - }, - "id": 425 + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } }, { + "id": 7441, "properties": { - "instrument": "snare", - "note": "22", - "powered": "false" - }, - "id": 426 + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } }, { + "id": 7442, "properties": { - "instrument": "snare", - "note": "23", - "powered": "true" - }, - "id": 427 + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } }, { + "id": 7443, "properties": { - "instrument": "snare", - "note": "23", - "powered": "false" - }, - "id": 428 + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } }, { + "id": 7444, "properties": { - "instrument": "snare", - "note": "24", - "powered": "true" - }, - "id": 429 + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } }, { + "id": 7445, "properties": { - "instrument": "snare", - "note": "24", - "powered": "false" - }, - "id": 430 + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } }, { + "id": 7446, "properties": { - "instrument": "hat", - "note": "0", - "powered": "true" - }, - "id": 431 + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } }, { + "id": 7447, "properties": { - "instrument": "hat", - "note": "0", - "powered": "false" - }, - "id": 432 + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } }, { + "id": 7448, "properties": { - "instrument": "hat", - "note": "1", - "powered": "true" - }, - "id": 433 + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } }, { + "id": 7449, "properties": { - "instrument": "hat", - "note": "1", - "powered": "false" - }, - "id": 434 + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } }, { + "id": 7450, "properties": { - "instrument": "hat", - "note": "2", - "powered": "true" - }, - "id": 435 + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } }, { + "id": 7451, "properties": { - "instrument": "hat", - "note": "2", - "powered": "false" - }, - "id": 436 + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } }, { + "id": 7452, "properties": { - "instrument": "hat", - "note": "3", - "powered": "true" - }, - "id": 437 + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } }, { + "default": true, + "id": 7453, "properties": { - "instrument": "hat", - "note": "3", - "powered": "false" - }, - "id": 438 + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } }, { + "id": 7454, "properties": { - "instrument": "hat", - "note": "4", - "powered": "true" - }, - "id": 439 + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } }, { + "id": 7455, "properties": { - "instrument": "hat", - "note": "4", - "powered": "false" - }, - "id": 440 + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } }, { + "id": 7456, "properties": { - "instrument": "hat", - "note": "5", - "powered": "true" - }, - "id": 441 + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } }, { + "id": 7457, "properties": { - "instrument": "hat", - "note": "5", - "powered": "false" - }, - "id": 442 + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } }, { + "id": 7458, "properties": { - "instrument": "hat", - "note": "6", - "powered": "true" - }, - "id": 443 + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } }, { + "id": 7459, "properties": { - "instrument": "hat", - "note": "6", - "powered": "false" - }, - "id": 444 + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } }, { + "id": 7460, "properties": { - "instrument": "hat", - "note": "7", - "powered": "true" - }, - "id": 445 + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } }, { + "id": 7461, "properties": { - "instrument": "hat", - "note": "7", - "powered": "false" - }, - "id": 446 + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } }, { + "id": 7462, "properties": { - "instrument": "hat", - "note": "8", - "powered": "true" - }, - "id": 447 + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } }, { + "id": 7463, "properties": { - "instrument": "hat", - "note": "8", - "powered": "false" - }, - "id": 448 - }, + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "states": [ + { + "default": true, + "id": 1669 + } + ] + }, + "minecraft:amethyst_block": { + "states": [ + { + "default": true, + "id": 18619 + } + ] + }, + "minecraft:amethyst_cluster": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18621, "properties": { - "instrument": "hat", - "note": "9", - "powered": "true" - }, - "id": 449 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 18622, "properties": { - "instrument": "hat", - "note": "9", - "powered": "false" - }, - "id": 450 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 18623, "properties": { - "instrument": "hat", - "note": "10", - "powered": "true" - }, - "id": 451 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 18624, "properties": { - "instrument": "hat", - "note": "10", - "powered": "false" - }, - "id": 452 + "facing": "east", + "waterlogged": "false" + } }, { + "id": 18625, "properties": { - "instrument": "hat", - "note": "11", - "powered": "true" - }, - "id": 453 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 18626, "properties": { - "instrument": "hat", - "note": "11", - "powered": "false" - }, - "id": 454 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 18627, "properties": { - "instrument": "hat", - "note": "12", - "powered": "true" - }, - "id": 455 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 18628, "properties": { - "instrument": "hat", - "note": "12", - "powered": "false" - }, - "id": 456 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 18629, "properties": { - "instrument": "hat", - "note": "13", - "powered": "true" - }, - "id": 457 + "facing": "up", + "waterlogged": "true" + } }, { + "default": true, + "id": 18630, "properties": { - "instrument": "hat", - "note": "13", - "powered": "false" - }, - "id": 458 + "facing": "up", + "waterlogged": "false" + } }, { + "id": 18631, "properties": { - "instrument": "hat", - "note": "14", - "powered": "true" - }, - "id": 459 + "facing": "down", + "waterlogged": "true" + } }, { + "id": 18632, "properties": { - "instrument": "hat", - "note": "14", - "powered": "false" - }, - "id": 460 - }, + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "states": [ + { + "default": true, + "id": 17036 + } + ] + }, + "minecraft:andesite": { + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11724, "properties": { - "instrument": "hat", - "note": "15", - "powered": "true" - }, - "id": 461 + "type": "top", + "waterlogged": "true" + } }, { + "id": 11725, "properties": { - "instrument": "hat", - "note": "15", - "powered": "false" - }, - "id": 462 + "type": "top", + "waterlogged": "false" + } }, { + "id": 11726, "properties": { - "instrument": "hat", - "note": "16", - "powered": "true" - }, - "id": 463 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 11727, "properties": { - "instrument": "hat", - "note": "16", - "powered": "false" - }, - "id": 464 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 11728, "properties": { - "instrument": "hat", - "note": "17", - "powered": "true" - }, - "id": 465 + "type": "double", + "waterlogged": "true" + } }, { + "id": 11729, "properties": { - "instrument": "hat", - "note": "17", - "powered": "false" - }, - "id": 466 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11350, "properties": { - "instrument": "hat", - "note": "18", - "powered": "true" - }, - "id": 467 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11351, "properties": { - "instrument": "hat", - "note": "18", - "powered": "false" - }, - "id": 468 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11352, "properties": { - "instrument": "hat", - "note": "19", - "powered": "true" - }, - "id": 469 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11353, "properties": { - "instrument": "hat", - "note": "19", - "powered": "false" - }, - "id": 470 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11354, "properties": { - "instrument": "hat", - "note": "20", - "powered": "true" - }, - "id": 471 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11355, "properties": { - "instrument": "hat", - "note": "20", - "powered": "false" - }, - "id": 472 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11356, "properties": { - "instrument": "hat", - "note": "21", - "powered": "true" - }, - "id": 473 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11357, "properties": { - "instrument": "hat", - "note": "21", - "powered": "false" - }, - "id": 474 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11358, "properties": { - "instrument": "hat", - "note": "22", - "powered": "true" - }, - "id": 475 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11359, "properties": { - "instrument": "hat", - "note": "22", - "powered": "false" - }, - "id": 476 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11360, "properties": { - "instrument": "hat", - "note": "23", - "powered": "true" - }, - "id": 477 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 11361, "properties": { - "instrument": "hat", - "note": "23", - "powered": "false" - }, - "id": 478 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11362, "properties": { - "instrument": "hat", - "note": "24", - "powered": "true" - }, - "id": 479 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11363, "properties": { - "instrument": "hat", - "note": "24", - "powered": "false" - }, - "id": 480 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11364, "properties": { - "instrument": "bass", - "note": "0", - "powered": "true" - }, - "id": 481 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11365, "properties": { - "instrument": "bass", - "note": "0", - "powered": "false" - }, - "id": 482 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11366, "properties": { - "instrument": "bass", - "note": "1", - "powered": "true" - }, - "id": 483 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11367, "properties": { - "instrument": "bass", - "note": "1", - "powered": "false" - }, - "id": 484 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11368, "properties": { - "instrument": "bass", - "note": "2", - "powered": "true" - }, - "id": 485 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11369, "properties": { - "instrument": "bass", - "note": "2", - "powered": "false" - }, - "id": 486 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11370, "properties": { - "instrument": "bass", - "note": "3", - "powered": "true" - }, - "id": 487 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11371, "properties": { - "instrument": "bass", - "note": "3", - "powered": "false" - }, - "id": 488 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11372, "properties": { - "instrument": "bass", - "note": "4", - "powered": "true" - }, - "id": 489 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11373, "properties": { - "instrument": "bass", - "note": "4", - "powered": "false" - }, - "id": 490 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11374, "properties": { - "instrument": "bass", - "note": "5", - "powered": "true" - }, - "id": 491 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11375, "properties": { - "instrument": "bass", - "note": "5", - "powered": "false" - }, - "id": 492 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11376, "properties": { - "instrument": "bass", - "note": "6", - "powered": "true" - }, - "id": 493 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11377, "properties": { - "instrument": "bass", - "note": "6", - "powered": "false" - }, - "id": 494 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11378, "properties": { - "instrument": "bass", - "note": "7", - "powered": "true" - }, - "id": 495 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11379, "properties": { - "instrument": "bass", - "note": "7", - "powered": "false" - }, - "id": 496 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11380, "properties": { - "instrument": "bass", - "note": "8", - "powered": "true" - }, - "id": 497 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11381, "properties": { - "instrument": "bass", - "note": "8", - "powered": "false" - }, - "id": 498 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11382, "properties": { - "instrument": "bass", - "note": "9", - "powered": "true" - }, - "id": 499 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11383, "properties": { - "instrument": "bass", - "note": "9", - "powered": "false" - }, - "id": 500 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11384, "properties": { - "instrument": "bass", - "note": "10", - "powered": "true" - }, - "id": 501 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11385, "properties": { - "instrument": "bass", - "note": "10", - "powered": "false" - }, - "id": 502 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11386, "properties": { - "instrument": "bass", - "note": "11", - "powered": "true" - }, - "id": 503 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11387, "properties": { - "instrument": "bass", - "note": "11", - "powered": "false" - }, - "id": 504 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11388, "properties": { - "instrument": "bass", - "note": "12", - "powered": "true" - }, - "id": 505 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11389, "properties": { - "instrument": "bass", - "note": "12", - "powered": "false" - }, - "id": 506 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11390, "properties": { - "instrument": "bass", - "note": "13", - "powered": "true" - }, - "id": 507 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11391, "properties": { - "instrument": "bass", - "note": "13", - "powered": "false" - }, - "id": 508 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11392, "properties": { - "instrument": "bass", - "note": "14", - "powered": "true" - }, - "id": 509 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11393, "properties": { - "instrument": "bass", - "note": "14", - "powered": "false" - }, - "id": 510 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11394, "properties": { - "instrument": "bass", - "note": "15", - "powered": "true" - }, - "id": 511 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11395, "properties": { - "instrument": "bass", - "note": "15", - "powered": "false" - }, - "id": 512 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11396, "properties": { - "instrument": "bass", - "note": "16", - "powered": "true" - }, - "id": 513 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11397, "properties": { - "instrument": "bass", - "note": "16", - "powered": "false" - }, - "id": 514 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11398, "properties": { - "instrument": "bass", - "note": "17", - "powered": "true" - }, - "id": 515 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11399, "properties": { - "instrument": "bass", - "note": "17", - "powered": "false" - }, - "id": 516 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11400, "properties": { - "instrument": "bass", - "note": "18", - "powered": "true" - }, - "id": 517 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11401, "properties": { - "instrument": "bass", - "note": "18", - "powered": "false" - }, - "id": 518 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11402, "properties": { - "instrument": "bass", - "note": "19", - "powered": "true" - }, - "id": 519 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11403, "properties": { - "instrument": "bass", - "note": "19", - "powered": "false" - }, - "id": 520 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11404, "properties": { - "instrument": "bass", - "note": "20", - "powered": "true" - }, - "id": 521 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11405, "properties": { - "instrument": "bass", - "note": "20", - "powered": "false" - }, - "id": 522 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11406, "properties": { - "instrument": "bass", - "note": "21", - "powered": "true" - }, - "id": 523 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11407, "properties": { - "instrument": "bass", - "note": "21", - "powered": "false" - }, - "id": 524 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11408, "properties": { - "instrument": "bass", - "note": "22", - "powered": "true" - }, - "id": 525 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11409, "properties": { - "instrument": "bass", - "note": "22", - "powered": "false" - }, - "id": 526 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11410, "properties": { - "instrument": "bass", - "note": "23", - "powered": "true" - }, - "id": 527 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11411, "properties": { - "instrument": "bass", - "note": "23", - "powered": "false" - }, - "id": 528 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11412, "properties": { - "instrument": "bass", - "note": "24", - "powered": "true" - }, - "id": 529 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11413, "properties": { - "instrument": "bass", - "note": "24", - "powered": "false" - }, - "id": 530 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11414, "properties": { - "instrument": "flute", - "note": "0", - "powered": "true" - }, - "id": 531 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11415, "properties": { - "instrument": "flute", - "note": "0", - "powered": "false" - }, - "id": 532 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11416, "properties": { - "instrument": "flute", - "note": "1", - "powered": "true" - }, - "id": 533 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11417, "properties": { - "instrument": "flute", - "note": "1", - "powered": "false" - }, - "id": 534 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11418, "properties": { - "instrument": "flute", - "note": "2", - "powered": "true" - }, - "id": 535 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11419, "properties": { - "instrument": "flute", - "note": "2", - "powered": "false" - }, - "id": 536 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11420, "properties": { - "instrument": "flute", - "note": "3", - "powered": "true" - }, - "id": 537 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11421, "properties": { - "instrument": "flute", - "note": "3", - "powered": "false" - }, - "id": 538 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11422, "properties": { - "instrument": "flute", - "note": "4", - "powered": "true" - }, - "id": 539 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11423, "properties": { - "instrument": "flute", - "note": "4", - "powered": "false" - }, - "id": 540 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11424, "properties": { - "instrument": "flute", - "note": "5", - "powered": "true" - }, - "id": 541 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11425, "properties": { - "instrument": "flute", - "note": "5", - "powered": "false" - }, - "id": 542 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11426, "properties": { - "instrument": "flute", - "note": "6", - "powered": "true" - }, - "id": 543 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11427, "properties": { - "instrument": "flute", - "note": "6", - "powered": "false" - }, - "id": 544 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11428, "properties": { - "instrument": "flute", - "note": "7", - "powered": "true" - }, - "id": 545 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11429, "properties": { - "instrument": "flute", - "note": "7", - "powered": "false" - }, - "id": 546 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14340, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14341, "properties": { - "instrument": "flute", - "note": "8", - "powered": "true" - }, - "id": 547 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14342, "properties": { - "instrument": "flute", - "note": "8", - "powered": "false" - }, - "id": 548 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 14343, "properties": { - "instrument": "flute", - "note": "9", - "powered": "true" - }, - "id": 549 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14344, "properties": { - "instrument": "flute", - "note": "9", - "powered": "false" - }, - "id": 550 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14345, "properties": { - "instrument": "flute", - "note": "10", - "powered": "true" - }, - "id": 551 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14346, "properties": { - "instrument": "flute", - "note": "10", - "powered": "false" - }, - "id": 552 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14347, "properties": { - "instrument": "flute", - "note": "11", - "powered": "true" - }, - "id": 553 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14348, "properties": { - "instrument": "flute", - "note": "11", - "powered": "false" - }, - "id": 554 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14349, "properties": { - "instrument": "flute", - "note": "12", - "powered": "true" - }, - "id": 555 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14350, "properties": { - "instrument": "flute", - "note": "12", - "powered": "false" - }, - "id": 556 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14351, "properties": { - "instrument": "flute", - "note": "13", - "powered": "true" - }, - "id": 557 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14352, "properties": { - "instrument": "flute", - "note": "13", - "powered": "false" - }, - "id": 558 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14353, "properties": { - "instrument": "flute", - "note": "14", - "powered": "true" - }, - "id": 559 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14354, "properties": { - "instrument": "flute", - "note": "14", - "powered": "false" - }, - "id": 560 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14355, "properties": { - "instrument": "flute", - "note": "15", - "powered": "true" - }, - "id": 561 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14356, "properties": { - "instrument": "flute", - "note": "15", - "powered": "false" - }, - "id": 562 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14357, "properties": { - "instrument": "flute", - "note": "16", - "powered": "true" - }, - "id": 563 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14358, "properties": { - "instrument": "flute", - "note": "16", - "powered": "false" - }, - "id": 564 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14359, "properties": { - "instrument": "flute", - "note": "17", - "powered": "true" - }, - "id": 565 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14360, "properties": { - "instrument": "flute", - "note": "17", - "powered": "false" - }, - "id": 566 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14361, "properties": { - "instrument": "flute", - "note": "18", - "powered": "true" - }, - "id": 567 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14362, "properties": { - "instrument": "flute", - "note": "18", - "powered": "false" - }, - "id": 568 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14363, "properties": { - "instrument": "flute", - "note": "19", - "powered": "true" - }, - "id": 569 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14364, "properties": { - "instrument": "flute", - "note": "19", - "powered": "false" - }, - "id": 570 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14365, "properties": { - "instrument": "flute", - "note": "20", - "powered": "true" - }, - "id": 571 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14366, "properties": { - "instrument": "flute", - "note": "20", - "powered": "false" - }, - "id": 572 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14367, "properties": { - "instrument": "flute", - "note": "21", - "powered": "true" - }, - "id": 573 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14368, "properties": { - "instrument": "flute", - "note": "21", - "powered": "false" - }, - "id": 574 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14369, "properties": { - "instrument": "flute", - "note": "22", - "powered": "true" - }, - "id": 575 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14370, "properties": { - "instrument": "flute", - "note": "22", - "powered": "false" - }, - "id": 576 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14371, "properties": { - "instrument": "flute", - "note": "23", - "powered": "true" - }, - "id": 577 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14372, "properties": { - "instrument": "flute", - "note": "23", - "powered": "false" - }, - "id": 578 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14373, "properties": { - "instrument": "flute", - "note": "24", - "powered": "true" - }, - "id": 579 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14374, "properties": { - "instrument": "flute", - "note": "24", - "powered": "false" - }, - "id": 580 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14375, "properties": { - "instrument": "bell", - "note": "0", - "powered": "true" - }, - "id": 581 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14376, "properties": { - "instrument": "bell", - "note": "0", - "powered": "false" - }, - "id": 582 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14377, "properties": { - "instrument": "bell", - "note": "1", - "powered": "true" - }, - "id": 583 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14378, "properties": { - "instrument": "bell", - "note": "1", - "powered": "false" - }, - "id": 584 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14379, "properties": { - "instrument": "bell", - "note": "2", - "powered": "true" - }, - "id": 585 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14380, "properties": { - "instrument": "bell", - "note": "2", - "powered": "false" - }, - "id": 586 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14381, "properties": { - "instrument": "bell", - "note": "3", - "powered": "true" - }, - "id": 587 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14382, "properties": { - "instrument": "bell", - "note": "3", - "powered": "false" - }, - "id": 588 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14383, "properties": { - "instrument": "bell", - "note": "4", - "powered": "true" - }, - "id": 589 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14384, "properties": { - "instrument": "bell", - "note": "4", - "powered": "false" - }, - "id": 590 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14385, "properties": { - "instrument": "bell", - "note": "5", - "powered": "true" - }, - "id": 591 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14386, "properties": { - "instrument": "bell", - "note": "5", - "powered": "false" - }, - "id": 592 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14387, "properties": { - "instrument": "bell", - "note": "6", - "powered": "true" - }, - "id": 593 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14388, "properties": { - "instrument": "bell", - "note": "6", - "powered": "false" - }, - "id": 594 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14389, "properties": { - "instrument": "bell", - "note": "7", - "powered": "true" - }, - "id": 595 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14390, "properties": { - "instrument": "bell", - "note": "7", - "powered": "false" - }, - "id": 596 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14391, "properties": { - "instrument": "bell", - "note": "8", - "powered": "true" - }, - "id": 597 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14392, "properties": { - "instrument": "bell", - "note": "8", - "powered": "false" - }, - "id": 598 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14393, "properties": { - "instrument": "bell", - "note": "9", - "powered": "true" - }, - "id": 599 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14394, "properties": { - "instrument": "bell", - "note": "9", - "powered": "false" - }, - "id": 600 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14395, "properties": { - "instrument": "bell", - "note": "10", - "powered": "true" - }, - "id": 601 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14396, "properties": { - "instrument": "bell", - "note": "10", - "powered": "false" - }, - "id": 602 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14397, "properties": { - "instrument": "bell", - "note": "11", - "powered": "true" - }, - "id": 603 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14398, "properties": { - "instrument": "bell", - "note": "11", - "powered": "false" - }, - "id": 604 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14399, "properties": { - "instrument": "bell", - "note": "12", - "powered": "true" - }, - "id": 605 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14400, "properties": { - "instrument": "bell", - "note": "12", - "powered": "false" - }, - "id": 606 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14401, "properties": { - "instrument": "bell", - "note": "13", - "powered": "true" - }, - "id": 607 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14402, "properties": { - "instrument": "bell", - "note": "13", - "powered": "false" - }, - "id": 608 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14403, "properties": { - "instrument": "bell", - "note": "14", - "powered": "true" - }, - "id": 609 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14404, "properties": { - "instrument": "bell", - "note": "14", - "powered": "false" - }, - "id": 610 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14405, "properties": { - "instrument": "bell", - "note": "15", - "powered": "true" - }, - "id": 611 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14406, "properties": { - "instrument": "bell", - "note": "15", - "powered": "false" - }, - "id": 612 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14407, "properties": { - "instrument": "bell", - "note": "16", - "powered": "true" - }, - "id": 613 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14408, "properties": { - "instrument": "bell", - "note": "16", - "powered": "false" - }, - "id": 614 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14409, "properties": { - "instrument": "bell", - "note": "17", - "powered": "true" - }, - "id": 615 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14410, "properties": { - "instrument": "bell", - "note": "17", - "powered": "false" - }, - "id": 616 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14411, "properties": { - "instrument": "bell", - "note": "18", - "powered": "true" - }, - "id": 617 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14412, "properties": { - "instrument": "bell", - "note": "18", - "powered": "false" - }, - "id": 618 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14413, "properties": { - "instrument": "bell", - "note": "19", - "powered": "true" - }, - "id": 619 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14414, "properties": { - "instrument": "bell", - "note": "19", - "powered": "false" - }, - "id": 620 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14415, "properties": { - "instrument": "bell", - "note": "20", - "powered": "true" - }, - "id": 621 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14416, "properties": { - "instrument": "bell", - "note": "20", - "powered": "false" - }, - "id": 622 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14417, "properties": { - "instrument": "bell", - "note": "21", - "powered": "true" - }, - "id": 623 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14418, "properties": { - "instrument": "bell", - "note": "21", - "powered": "false" - }, - "id": 624 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14419, "properties": { - "instrument": "bell", - "note": "22", - "powered": "true" - }, - "id": 625 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14420, "properties": { - "instrument": "bell", - "note": "22", - "powered": "false" - }, - "id": 626 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14421, "properties": { - "instrument": "bell", - "note": "23", - "powered": "true" - }, - "id": 627 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14422, "properties": { - "instrument": "bell", - "note": "23", - "powered": "false" - }, - "id": 628 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14423, "properties": { - "instrument": "bell", - "note": "24", - "powered": "true" - }, - "id": 629 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14424, "properties": { - "instrument": "bell", - "note": "24", - "powered": "false" - }, - "id": 630 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14425, "properties": { - "instrument": "guitar", - "note": "0", - "powered": "true" - }, - "id": 631 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14426, "properties": { - "instrument": "guitar", - "note": "0", - "powered": "false" - }, - "id": 632 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14427, "properties": { - "instrument": "guitar", - "note": "1", - "powered": "true" - }, - "id": 633 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14428, "properties": { - "instrument": "guitar", - "note": "1", - "powered": "false" - }, - "id": 634 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14429, "properties": { - "instrument": "guitar", - "note": "2", - "powered": "true" - }, - "id": 635 - }, - { - "properties": { - "instrument": "guitar", - "note": "2", - "powered": "false" - }, - "id": 636 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14430, "properties": { - "instrument": "guitar", - "note": "3", - "powered": "true" - }, - "id": 637 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14431, "properties": { - "instrument": "guitar", - "note": "3", - "powered": "false" - }, - "id": 638 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14432, "properties": { - "instrument": "guitar", - "note": "4", - "powered": "true" - }, - "id": 639 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14433, "properties": { - "instrument": "guitar", - "note": "4", - "powered": "false" - }, - "id": 640 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14434, "properties": { - "instrument": "guitar", - "note": "5", - "powered": "true" - }, - "id": 641 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14435, "properties": { - "instrument": "guitar", - "note": "5", - "powered": "false" - }, - "id": 642 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14436, "properties": { - "instrument": "guitar", - "note": "6", - "powered": "true" - }, - "id": 643 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14437, "properties": { - "instrument": "guitar", - "note": "6", - "powered": "false" - }, - "id": 644 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14438, "properties": { - "instrument": "guitar", - "note": "7", - "powered": "true" - }, - "id": 645 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14439, "properties": { - "instrument": "guitar", - "note": "7", - "powered": "false" - }, - "id": 646 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14440, "properties": { - "instrument": "guitar", - "note": "8", - "powered": "true" - }, - "id": 647 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14441, "properties": { - "instrument": "guitar", - "note": "8", - "powered": "false" - }, - "id": 648 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14442, "properties": { - "instrument": "guitar", - "note": "9", - "powered": "true" - }, - "id": 649 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14443, "properties": { - "instrument": "guitar", - "note": "9", - "powered": "false" - }, - "id": 650 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14444, "properties": { - "instrument": "guitar", - "note": "10", - "powered": "true" - }, - "id": 651 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14445, "properties": { - "instrument": "guitar", - "note": "10", - "powered": "false" - }, - "id": 652 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14446, "properties": { - "instrument": "guitar", - "note": "11", - "powered": "true" - }, - "id": 653 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14447, "properties": { - "instrument": "guitar", - "note": "11", - "powered": "false" - }, - "id": 654 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14448, "properties": { - "instrument": "guitar", - "note": "12", - "powered": "true" - }, - "id": 655 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14449, "properties": { - "instrument": "guitar", - "note": "12", - "powered": "false" - }, - "id": 656 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14450, "properties": { - "instrument": "guitar", - "note": "13", - "powered": "true" - }, - "id": 657 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14451, "properties": { - "instrument": "guitar", - "note": "13", - "powered": "false" - }, - "id": 658 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14452, "properties": { - "instrument": "guitar", - "note": "14", - "powered": "true" - }, - "id": 659 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14453, "properties": { - "instrument": "guitar", - "note": "14", - "powered": "false" - }, - "id": 660 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14454, "properties": { - "instrument": "guitar", - "note": "15", - "powered": "true" - }, - "id": 661 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14455, "properties": { - "instrument": "guitar", - "note": "15", - "powered": "false" - }, - "id": 662 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14456, "properties": { - "instrument": "guitar", - "note": "16", - "powered": "true" - }, - "id": 663 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14457, "properties": { - "instrument": "guitar", - "note": "16", - "powered": "false" - }, - "id": 664 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14458, "properties": { - "instrument": "guitar", - "note": "17", - "powered": "true" - }, - "id": 665 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14459, "properties": { - "instrument": "guitar", - "note": "17", - "powered": "false" - }, - "id": 666 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14460, "properties": { - "instrument": "guitar", - "note": "18", - "powered": "true" - }, - "id": 667 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14461, "properties": { - "instrument": "guitar", - "note": "18", - "powered": "false" - }, - "id": 668 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14462, "properties": { - "instrument": "guitar", - "note": "19", - "powered": "true" - }, - "id": 669 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14463, "properties": { - "instrument": "guitar", - "note": "19", - "powered": "false" - }, - "id": 670 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14464, "properties": { - "instrument": "guitar", - "note": "20", - "powered": "true" - }, - "id": 671 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14465, "properties": { - "instrument": "guitar", - "note": "20", - "powered": "false" - }, - "id": 672 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14466, "properties": { - "instrument": "guitar", - "note": "21", - "powered": "true" - }, - "id": 673 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14467, "properties": { - "instrument": "guitar", - "note": "21", - "powered": "false" - }, - "id": 674 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14468, "properties": { - "instrument": "guitar", - "note": "22", - "powered": "true" - }, - "id": 675 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14469, "properties": { - "instrument": "guitar", - "note": "22", - "powered": "false" - }, - "id": 676 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14470, "properties": { - "instrument": "guitar", - "note": "23", - "powered": "true" - }, - "id": 677 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14471, "properties": { - "instrument": "guitar", - "note": "23", - "powered": "false" - }, - "id": 678 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14472, "properties": { - "instrument": "guitar", - "note": "24", - "powered": "true" - }, - "id": 679 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14473, "properties": { - "instrument": "guitar", - "note": "24", - "powered": "false" - }, - "id": 680 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14474, "properties": { - "instrument": "chime", - "note": "0", - "powered": "true" - }, - "id": 681 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14475, "properties": { - "instrument": "chime", - "note": "0", - "powered": "false" - }, - "id": 682 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14476, "properties": { - "instrument": "chime", - "note": "1", - "powered": "true" - }, - "id": 683 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14477, "properties": { - "instrument": "chime", - "note": "1", - "powered": "false" - }, - "id": 684 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14478, "properties": { - "instrument": "chime", - "note": "2", - "powered": "true" - }, - "id": 685 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14479, "properties": { - "instrument": "chime", - "note": "2", - "powered": "false" - }, - "id": 686 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14480, "properties": { - "instrument": "chime", - "note": "3", - "powered": "true" - }, - "id": 687 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14481, "properties": { - "instrument": "chime", - "note": "3", - "powered": "false" - }, - "id": 688 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14482, "properties": { - "instrument": "chime", - "note": "4", - "powered": "true" - }, - "id": 689 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14483, "properties": { - "instrument": "chime", - "note": "4", - "powered": "false" - }, - "id": 690 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14484, "properties": { - "instrument": "chime", - "note": "5", - "powered": "true" - }, - "id": 691 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14485, "properties": { - "instrument": "chime", - "note": "5", - "powered": "false" - }, - "id": 692 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14486, "properties": { - "instrument": "chime", - "note": "6", - "powered": "true" - }, - "id": 693 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14487, "properties": { - "instrument": "chime", - "note": "6", - "powered": "false" - }, - "id": 694 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14488, "properties": { - "instrument": "chime", - "note": "7", - "powered": "true" - }, - "id": 695 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14489, "properties": { - "instrument": "chime", - "note": "7", - "powered": "false" - }, - "id": 696 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14490, "properties": { - "instrument": "chime", - "note": "8", - "powered": "true" - }, - "id": 697 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14491, "properties": { - "instrument": "chime", - "note": "8", - "powered": "false" - }, - "id": 698 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14492, "properties": { - "instrument": "chime", - "note": "9", - "powered": "true" - }, - "id": 699 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14493, "properties": { - "instrument": "chime", - "note": "9", - "powered": "false" - }, - "id": 700 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14494, "properties": { - "instrument": "chime", - "note": "10", - "powered": "true" - }, - "id": 701 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14495, "properties": { - "instrument": "chime", - "note": "10", - "powered": "false" - }, - "id": 702 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14496, "properties": { - "instrument": "chime", - "note": "11", - "powered": "true" - }, - "id": 703 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14497, "properties": { - "instrument": "chime", - "note": "11", - "powered": "false" - }, - "id": 704 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14498, "properties": { - "instrument": "chime", - "note": "12", - "powered": "true" - }, - "id": 705 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14499, "properties": { - "instrument": "chime", - "note": "12", - "powered": "false" - }, - "id": 706 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14500, "properties": { - "instrument": "chime", - "note": "13", - "powered": "true" - }, - "id": 707 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14501, "properties": { - "instrument": "chime", - "note": "13", - "powered": "false" - }, - "id": 708 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14502, "properties": { - "instrument": "chime", - "note": "14", - "powered": "true" - }, - "id": 709 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14503, "properties": { - "instrument": "chime", - "note": "14", - "powered": "false" - }, - "id": 710 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14504, "properties": { - "instrument": "chime", - "note": "15", - "powered": "true" - }, - "id": 711 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14505, "properties": { - "instrument": "chime", - "note": "15", - "powered": "false" - }, - "id": 712 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14506, "properties": { - "instrument": "chime", - "note": "16", - "powered": "true" - }, - "id": 713 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14507, "properties": { - "instrument": "chime", - "note": "16", - "powered": "false" - }, - "id": 714 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14508, "properties": { - "instrument": "chime", - "note": "17", - "powered": "true" - }, - "id": 715 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14509, "properties": { - "instrument": "chime", - "note": "17", - "powered": "false" - }, - "id": 716 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14510, "properties": { - "instrument": "chime", - "note": "18", - "powered": "true" - }, - "id": 717 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14511, "properties": { - "instrument": "chime", - "note": "18", - "powered": "false" - }, - "id": 718 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14512, "properties": { - "instrument": "chime", - "note": "19", - "powered": "true" - }, - "id": 719 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14513, "properties": { - "instrument": "chime", - "note": "19", - "powered": "false" - }, - "id": 720 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14514, "properties": { - "instrument": "chime", - "note": "20", - "powered": "true" - }, - "id": 721 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14515, "properties": { - "instrument": "chime", - "note": "20", - "powered": "false" - }, - "id": 722 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14516, "properties": { - "instrument": "chime", - "note": "21", - "powered": "true" - }, - "id": 723 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14517, "properties": { - "instrument": "chime", - "note": "21", - "powered": "false" - }, - "id": 724 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14518, "properties": { - "instrument": "chime", - "note": "22", - "powered": "true" - }, - "id": 725 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14519, "properties": { - "instrument": "chime", - "note": "22", - "powered": "false" - }, - "id": 726 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14520, "properties": { - "instrument": "chime", - "note": "23", - "powered": "true" - }, - "id": 727 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14521, "properties": { - "instrument": "chime", - "note": "23", - "powered": "false" - }, - "id": 728 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14522, "properties": { - "instrument": "chime", - "note": "24", - "powered": "true" - }, - "id": 729 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14523, "properties": { - "instrument": "chime", - "note": "24", - "powered": "false" - }, - "id": 730 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14524, "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "true" - }, - "id": 731 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14525, "properties": { - "instrument": "xylophone", - "note": "0", - "powered": "false" - }, - "id": 732 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14526, "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "true" - }, - "id": 733 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14527, "properties": { - "instrument": "xylophone", - "note": "1", - "powered": "false" - }, - "id": 734 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14528, "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "true" - }, - "id": 735 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14529, "properties": { - "instrument": "xylophone", - "note": "2", - "powered": "false" - }, - "id": 736 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14530, "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "true" - }, - "id": 737 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14531, "properties": { - "instrument": "xylophone", - "note": "3", - "powered": "false" - }, - "id": 738 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14532, "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "true" - }, - "id": 739 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14533, "properties": { - "instrument": "xylophone", - "note": "4", - "powered": "false" - }, - "id": 740 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14534, "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "true" - }, - "id": 741 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14535, "properties": { - "instrument": "xylophone", - "note": "5", - "powered": "false" - }, - "id": 742 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14536, "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "true" - }, - "id": 743 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14537, "properties": { - "instrument": "xylophone", - "note": "6", - "powered": "false" - }, - "id": 744 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14538, "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "true" - }, - "id": 745 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14539, "properties": { - "instrument": "xylophone", - "note": "7", - "powered": "false" - }, - "id": 746 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14540, "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "true" - }, - "id": 747 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14541, "properties": { - "instrument": "xylophone", - "note": "8", - "powered": "false" - }, - "id": 748 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14542, "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "true" - }, - "id": 749 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14543, "properties": { - "instrument": "xylophone", - "note": "9", - "powered": "false" - }, - "id": 750 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14544, "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "true" - }, - "id": 751 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14545, "properties": { - "instrument": "xylophone", - "note": "10", - "powered": "false" - }, - "id": 752 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14546, "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "true" - }, - "id": 753 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14547, "properties": { - "instrument": "xylophone", - "note": "11", - "powered": "false" - }, - "id": 754 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14548, "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "true" - }, - "id": 755 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14549, "properties": { - "instrument": "xylophone", - "note": "12", - "powered": "false" - }, - "id": 756 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14550, "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "true" - }, - "id": 757 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14551, "properties": { - "instrument": "xylophone", - "note": "13", - "powered": "false" - }, - "id": 758 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14552, "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "true" - }, - "id": 759 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14553, "properties": { - "instrument": "xylophone", - "note": "14", - "powered": "false" - }, - "id": 760 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14554, "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "true" - }, - "id": 761 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14555, "properties": { - "instrument": "xylophone", - "note": "15", - "powered": "false" - }, - "id": 762 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14556, "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "true" - }, - "id": 763 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14557, "properties": { - "instrument": "xylophone", - "note": "16", - "powered": "false" - }, - "id": 764 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14558, "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "true" - }, - "id": 765 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14559, "properties": { - "instrument": "xylophone", - "note": "17", - "powered": "false" - }, - "id": 766 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14560, "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "true" - }, - "id": 767 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14561, "properties": { - "instrument": "xylophone", - "note": "18", - "powered": "false" - }, - "id": 768 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14562, "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "true" - }, - "id": 769 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14563, "properties": { - "instrument": "xylophone", - "note": "19", - "powered": "false" - }, - "id": 770 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14564, "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "true" - }, - "id": 771 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14565, "properties": { - "instrument": "xylophone", - "note": "20", - "powered": "false" - }, - "id": 772 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14566, "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "true" - }, - "id": 773 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14567, "properties": { - "instrument": "xylophone", - "note": "21", - "powered": "false" - }, - "id": 774 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14568, "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "true" - }, - "id": 775 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14569, "properties": { - "instrument": "xylophone", - "note": "22", - "powered": "false" - }, - "id": 776 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14570, "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "true" - }, - "id": 777 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14571, "properties": { - "instrument": "xylophone", - "note": "23", - "powered": "false" - }, - "id": 778 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14572, "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "true" - }, - "id": 779 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14573, "properties": { - "instrument": "xylophone", - "note": "24", - "powered": "false" - }, - "id": 780 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14574, "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "true" - }, - "id": 781 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14575, "properties": { - "instrument": "iron_xylophone", - "note": "0", - "powered": "false" - }, - "id": 782 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14576, "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "true" - }, - "id": 783 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14577, "properties": { - "instrument": "iron_xylophone", - "note": "1", - "powered": "false" - }, - "id": 784 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14578, "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "true" - }, - "id": 785 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14579, "properties": { - "instrument": "iron_xylophone", - "note": "2", - "powered": "false" - }, - "id": 786 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14580, "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "true" - }, - "id": 787 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14581, "properties": { - "instrument": "iron_xylophone", - "note": "3", - "powered": "false" - }, - "id": 788 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14582, "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "true" - }, - "id": 789 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14583, "properties": { - "instrument": "iron_xylophone", - "note": "4", - "powered": "false" - }, - "id": 790 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14584, "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "true" - }, - "id": 791 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14585, "properties": { - "instrument": "iron_xylophone", - "note": "5", - "powered": "false" - }, - "id": 792 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14586, "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "true" - }, - "id": 793 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14587, "properties": { - "instrument": "iron_xylophone", - "note": "6", - "powered": "false" - }, - "id": 794 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14588, "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "true" - }, - "id": 795 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14589, "properties": { - "instrument": "iron_xylophone", - "note": "7", - "powered": "false" - }, - "id": 796 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14590, "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "true" - }, - "id": 797 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14591, "properties": { - "instrument": "iron_xylophone", - "note": "8", - "powered": "false" - }, - "id": 798 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14592, "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "true" - }, - "id": 799 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14593, "properties": { - "instrument": "iron_xylophone", - "note": "9", - "powered": "false" - }, - "id": 800 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14594, "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "true" - }, - "id": 801 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14595, "properties": { - "instrument": "iron_xylophone", - "note": "10", - "powered": "false" - }, - "id": 802 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14596, "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "true" - }, - "id": 803 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14597, "properties": { - "instrument": "iron_xylophone", - "note": "11", - "powered": "false" - }, - "id": 804 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14598, "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "true" - }, - "id": 805 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14599, "properties": { - "instrument": "iron_xylophone", - "note": "12", - "powered": "false" - }, - "id": 806 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14600, "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "true" - }, - "id": 807 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14601, "properties": { - "instrument": "iron_xylophone", - "note": "13", - "powered": "false" - }, - "id": 808 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14602, "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "true" - }, - "id": 809 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14603, "properties": { - "instrument": "iron_xylophone", - "note": "14", - "powered": "false" - }, - "id": 810 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14604, "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "true" - }, - "id": 811 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14605, "properties": { - "instrument": "iron_xylophone", - "note": "15", - "powered": "false" - }, - "id": 812 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14606, "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "true" - }, - "id": 813 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14607, "properties": { - "instrument": "iron_xylophone", - "note": "16", - "powered": "false" - }, - "id": 814 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14608, "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "true" - }, - "id": 815 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14609, "properties": { - "instrument": "iron_xylophone", - "note": "17", - "powered": "false" - }, - "id": 816 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14610, "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "true" - }, - "id": 817 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14611, "properties": { - "instrument": "iron_xylophone", - "note": "18", - "powered": "false" - }, - "id": 818 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14612, "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "true" - }, - "id": 819 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14613, "properties": { - "instrument": "iron_xylophone", - "note": "19", - "powered": "false" - }, - "id": 820 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14614, "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "true" - }, - "id": 821 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14615, "properties": { - "instrument": "iron_xylophone", - "note": "20", - "powered": "false" - }, - "id": 822 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14616, "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "true" - }, - "id": 823 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14617, "properties": { - "instrument": "iron_xylophone", - "note": "21", - "powered": "false" - }, - "id": 824 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14618, "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "true" - }, - "id": 825 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14619, "properties": { - "instrument": "iron_xylophone", - "note": "22", - "powered": "false" - }, - "id": 826 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14620, "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "true" - }, - "id": 827 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14621, "properties": { - "instrument": "iron_xylophone", - "note": "23", - "powered": "false" - }, - "id": 828 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14622, "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "true" - }, - "id": 829 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14623, "properties": { - "instrument": "iron_xylophone", - "note": "24", - "powered": "false" - }, - "id": 830 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14624, "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "true" - }, - "id": 831 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14625, "properties": { - "instrument": "cow_bell", - "note": "0", - "powered": "false" - }, - "id": 832 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14626, "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "true" - }, - "id": 833 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14627, "properties": { - "instrument": "cow_bell", - "note": "1", - "powered": "false" - }, - "id": 834 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14628, "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "true" - }, - "id": 835 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14629, "properties": { - "instrument": "cow_bell", - "note": "2", - "powered": "false" - }, - "id": 836 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14630, "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "true" - }, - "id": 837 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14631, "properties": { - "instrument": "cow_bell", - "note": "3", - "powered": "false" - }, - "id": 838 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14632, "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "true" - }, - "id": 839 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14633, "properties": { - "instrument": "cow_bell", - "note": "4", - "powered": "false" - }, - "id": 840 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14634, "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "true" - }, - "id": 841 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14635, "properties": { - "instrument": "cow_bell", - "note": "5", - "powered": "false" - }, - "id": 842 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14636, "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "true" - }, - "id": 843 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14637, "properties": { - "instrument": "cow_bell", - "note": "6", - "powered": "false" - }, - "id": 844 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14638, "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "true" - }, - "id": 845 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14639, "properties": { - "instrument": "cow_bell", - "note": "7", - "powered": "false" - }, - "id": 846 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14640, "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "true" - }, - "id": 847 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14641, "properties": { - "instrument": "cow_bell", - "note": "8", - "powered": "false" - }, - "id": 848 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14642, "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "true" - }, - "id": 849 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14643, "properties": { - "instrument": "cow_bell", - "note": "9", - "powered": "false" - }, - "id": 850 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14644, "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "true" - }, - "id": 851 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14645, "properties": { - "instrument": "cow_bell", - "note": "10", - "powered": "false" - }, - "id": 852 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14646, "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "true" - }, - "id": 853 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14647, "properties": { - "instrument": "cow_bell", - "note": "11", - "powered": "false" - }, - "id": 854 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14648, "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "true" - }, - "id": 855 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14649, "properties": { - "instrument": "cow_bell", - "note": "12", - "powered": "false" - }, - "id": 856 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14650, "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "true" - }, - "id": 857 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14651, "properties": { - "instrument": "cow_bell", - "note": "13", - "powered": "false" - }, - "id": 858 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14652, "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "true" - }, - "id": 859 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14653, "properties": { - "instrument": "cow_bell", - "note": "14", - "powered": "false" - }, - "id": 860 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14654, "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "true" - }, - "id": 861 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14655, "properties": { - "instrument": "cow_bell", - "note": "15", - "powered": "false" - }, - "id": 862 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14656, "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "true" - }, - "id": 863 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14657, "properties": { - "instrument": "cow_bell", - "note": "16", - "powered": "false" - }, - "id": 864 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 14658, "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "true" - }, - "id": 865 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 14659, "properties": { - "instrument": "cow_bell", - "note": "17", - "powered": "false" - }, - "id": 866 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 14660, "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "true" - }, - "id": 867 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 14661, "properties": { - "instrument": "cow_bell", - "note": "18", - "powered": "false" - }, - "id": 868 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 14662, "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "true" - }, - "id": 869 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 14663, "properties": { - "instrument": "cow_bell", - "note": "19", - "powered": "false" - }, - "id": 870 - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 7227, "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "true" - }, - "id": 871 + "facing": "north" + } }, { + "id": 7228, "properties": { - "instrument": "cow_bell", - "note": "20", - "powered": "false" - }, - "id": 872 + "facing": "south" + } }, { + "id": 7229, "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "true" - }, - "id": 873 + "facing": "west" + } }, { + "id": 7230, "properties": { - "instrument": "cow_bell", - "note": "21", - "powered": "false" - }, - "id": 874 - }, + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 5147, "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "true" - }, - "id": 875 + "facing": "north" + } }, { + "id": 5148, "properties": { - "instrument": "cow_bell", - "note": "22", - "powered": "false" - }, - "id": 876 + "facing": "south" + } }, { + "id": 5149, "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "true" - }, - "id": 877 + "facing": "west" + } }, { + "id": 5150, "properties": { - "instrument": "cow_bell", - "note": "23", - "powered": "false" - }, - "id": 878 - }, + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 5143, "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "true" - }, - "id": 879 + "facing": "north" + } }, { + "id": 5144, "properties": { - "instrument": "cow_bell", - "note": "24", - "powered": "false" - }, - "id": 880 + "facing": "south" + } }, { + "id": 5145, "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "true" - }, - "id": 881 + "facing": "west" + } }, { + "id": 5146, "properties": { - "instrument": "didgeridoo", - "note": "0", - "powered": "false" - }, - "id": 882 - }, + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "states": [ + { + "default": true, + "id": 19714 + } + ] + }, + "minecraft:azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 402, "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "true" - }, - "id": 883 + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 403, "properties": { - "instrument": "didgeridoo", - "note": "1", - "powered": "false" - }, - "id": 884 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 404, "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "true" - }, - "id": 885 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 405, "properties": { - "instrument": "didgeridoo", - "note": "2", - "powered": "false" - }, - "id": 886 + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 406, "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "true" - }, - "id": 887 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 407, "properties": { - "instrument": "didgeridoo", - "note": "3", - "powered": "false" - }, - "id": 888 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 408, "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "true" - }, - "id": 889 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 409, "properties": { - "instrument": "didgeridoo", - "note": "4", - "powered": "false" - }, - "id": 890 + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 410, "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "true" - }, - "id": 891 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 411, "properties": { - "instrument": "didgeridoo", - "note": "5", - "powered": "false" - }, - "id": 892 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 412, "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "true" - }, - "id": 893 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 413, "properties": { - "instrument": "didgeridoo", - "note": "6", - "powered": "false" - }, - "id": 894 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 414, "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "true" - }, - "id": 895 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 415, "properties": { - "instrument": "didgeridoo", - "note": "7", - "powered": "false" - }, - "id": 896 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 416, "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "true" - }, - "id": 897 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 417, "properties": { - "instrument": "didgeridoo", - "note": "8", - "powered": "false" - }, - "id": 898 + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 418, "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "true" - }, - "id": 899 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 419, "properties": { - "instrument": "didgeridoo", - "note": "9", - "powered": "false" - }, - "id": 900 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 420, "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "true" - }, - "id": 901 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 421, "properties": { - "instrument": "didgeridoo", - "note": "10", - "powered": "false" - }, - "id": 902 + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 422, "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "true" - }, - "id": 903 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 423, "properties": { - "instrument": "didgeridoo", - "note": "11", - "powered": "false" - }, - "id": 904 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 424, "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "true" - }, - "id": 905 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 425, "properties": { - "instrument": "didgeridoo", - "note": "12", - "powered": "false" - }, - "id": 906 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 426, "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "true" - }, - "id": 907 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 427, "properties": { - "instrument": "didgeridoo", - "note": "13", - "powered": "false" - }, - "id": 908 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 428, "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "true" - }, - "id": 909 + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 429, "properties": { - "instrument": "didgeridoo", - "note": "14", - "powered": "false" - }, - "id": 910 - }, + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "states": [ + { + "default": true, + "id": 1670 + } + ] + }, + "minecraft:bamboo": { + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ { + "default": true, + "id": 10533, "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "true" - }, - "id": 911 + "age": "0", + "leaves": "none", + "stage": "0" + } }, { + "id": 10534, "properties": { - "instrument": "didgeridoo", - "note": "15", - "powered": "false" - }, - "id": 912 + "age": "0", + "leaves": "none", + "stage": "1" + } }, { + "id": 10535, "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "true" - }, - "id": 913 + "age": "0", + "leaves": "small", + "stage": "0" + } }, { + "id": 10536, "properties": { - "instrument": "didgeridoo", - "note": "16", - "powered": "false" - }, - "id": 914 + "age": "0", + "leaves": "small", + "stage": "1" + } }, { + "id": 10537, "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "true" - }, - "id": 915 + "age": "0", + "leaves": "large", + "stage": "0" + } }, { + "id": 10538, "properties": { - "instrument": "didgeridoo", - "note": "17", - "powered": "false" - }, - "id": 916 + "age": "0", + "leaves": "large", + "stage": "1" + } }, { + "id": 10539, "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "true" - }, - "id": 917 + "age": "1", + "leaves": "none", + "stage": "0" + } }, { + "id": 10540, "properties": { - "instrument": "didgeridoo", - "note": "18", - "powered": "false" - }, - "id": 918 + "age": "1", + "leaves": "none", + "stage": "1" + } }, { + "id": 10541, "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "true" - }, - "id": 919 + "age": "1", + "leaves": "small", + "stage": "0" + } }, { + "id": 10542, "properties": { - "instrument": "didgeridoo", - "note": "19", - "powered": "false" - }, - "id": 920 + "age": "1", + "leaves": "small", + "stage": "1" + } }, { + "id": 10543, "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "true" - }, - "id": 921 + "age": "1", + "leaves": "large", + "stage": "0" + } }, { + "id": 10544, "properties": { - "instrument": "didgeridoo", - "note": "20", - "powered": "false" - }, - "id": 922 - }, + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "states": [ + { + "default": true, + "id": 10532 + } + ] + }, + "minecraft:barrel": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ { + "id": 15996, "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "true" - }, - "id": 923 + "facing": "north", + "open": "true" + } }, { + "default": true, + "id": 15997, "properties": { - "instrument": "didgeridoo", - "note": "21", - "powered": "false" - }, - "id": 924 + "facing": "north", + "open": "false" + } }, { + "id": 15998, "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "true" - }, - "id": 925 + "facing": "east", + "open": "true" + } }, { + "id": 15999, "properties": { - "instrument": "didgeridoo", - "note": "22", - "powered": "false" - }, - "id": 926 + "facing": "east", + "open": "false" + } }, { + "id": 16000, "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "true" - }, - "id": 927 + "facing": "south", + "open": "true" + } }, { + "id": 16001, "properties": { - "instrument": "didgeridoo", - "note": "23", - "powered": "false" - }, - "id": 928 + "facing": "south", + "open": "false" + } }, { + "id": 16002, "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "true" - }, - "id": 929 + "facing": "west", + "open": "true" + } }, { + "id": 16003, "properties": { - "instrument": "didgeridoo", - "note": "24", - "powered": "false" - }, - "id": 930 + "facing": "west", + "open": "false" + } }, { + "id": 16004, "properties": { - "instrument": "bit", - "note": "0", - "powered": "true" - }, - "id": 931 + "facing": "up", + "open": "true" + } }, { + "id": 16005, "properties": { - "instrument": "bit", - "note": "0", - "powered": "false" - }, - "id": 932 + "facing": "up", + "open": "false" + } }, { + "id": 16006, "properties": { - "instrument": "bit", - "note": "1", - "powered": "true" - }, - "id": 933 + "facing": "down", + "open": "true" + } }, { + "id": 16007, "properties": { - "instrument": "bit", - "note": "1", - "powered": "false" - }, - "id": 934 - }, + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "states": [ + { + "default": true, + "id": 8245 + } + ] + }, + "minecraft:basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 4311, "properties": { - "instrument": "bit", - "note": "2", - "powered": "true" - }, - "id": 935 + "axis": "x" + } }, { + "default": true, + "id": 4312, "properties": { - "instrument": "bit", - "note": "2", - "powered": "false" - }, - "id": 936 + "axis": "y" + } }, { + "id": 4313, "properties": { - "instrument": "bit", - "note": "3", - "powered": "true" - }, - "id": 937 - }, + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "states": [ + { + "default": true, + "id": 6248 + } + ] + }, + "minecraft:bedrock": { + "states": [ + { + "default": true, + "id": 74 + } + ] + }, + "minecraft:bee_nest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ { + "default": true, + "id": 16985, "properties": { - "instrument": "bit", - "note": "3", - "powered": "false" - }, - "id": 938 + "facing": "north", + "honey_level": "0" + } }, { + "id": 16986, "properties": { - "instrument": "bit", - "note": "4", - "powered": "true" - }, - "id": 939 + "facing": "north", + "honey_level": "1" + } }, { + "id": 16987, "properties": { - "instrument": "bit", - "note": "4", - "powered": "false" - }, - "id": 940 + "facing": "north", + "honey_level": "2" + } }, { + "id": 16988, "properties": { - "instrument": "bit", - "note": "5", - "powered": "true" - }, - "id": 941 + "facing": "north", + "honey_level": "3" + } }, { + "id": 16989, "properties": { - "instrument": "bit", - "note": "5", - "powered": "false" - }, - "id": 942 + "facing": "north", + "honey_level": "4" + } }, { + "id": 16990, "properties": { - "instrument": "bit", - "note": "6", - "powered": "true" - }, - "id": 943 + "facing": "north", + "honey_level": "5" + } }, { + "id": 16991, "properties": { - "instrument": "bit", - "note": "6", - "powered": "false" - }, - "id": 944 + "facing": "south", + "honey_level": "0" + } }, { + "id": 16992, "properties": { - "instrument": "bit", - "note": "7", - "powered": "true" - }, - "id": 945 + "facing": "south", + "honey_level": "1" + } }, { + "id": 16993, "properties": { - "instrument": "bit", - "note": "7", - "powered": "false" - }, - "id": 946 + "facing": "south", + "honey_level": "2" + } }, { + "id": 16994, "properties": { - "instrument": "bit", - "note": "8", - "powered": "true" - }, - "id": 947 + "facing": "south", + "honey_level": "3" + } }, { + "id": 16995, "properties": { - "instrument": "bit", - "note": "8", - "powered": "false" - }, - "id": 948 + "facing": "south", + "honey_level": "4" + } }, { + "id": 16996, "properties": { - "instrument": "bit", - "note": "9", - "powered": "true" - }, - "id": 949 + "facing": "south", + "honey_level": "5" + } }, { + "id": 16997, "properties": { - "instrument": "bit", - "note": "9", - "powered": "false" - }, - "id": 950 + "facing": "west", + "honey_level": "0" + } }, { + "id": 16998, "properties": { - "instrument": "bit", - "note": "10", - "powered": "true" - }, - "id": 951 + "facing": "west", + "honey_level": "1" + } }, { + "id": 16999, "properties": { - "instrument": "bit", - "note": "10", - "powered": "false" - }, - "id": 952 + "facing": "west", + "honey_level": "2" + } }, { + "id": 17000, "properties": { - "instrument": "bit", - "note": "11", - "powered": "true" - }, - "id": 953 + "facing": "west", + "honey_level": "3" + } }, { + "id": 17001, "properties": { - "instrument": "bit", - "note": "11", - "powered": "false" - }, - "id": 954 + "facing": "west", + "honey_level": "4" + } }, { + "id": 17002, "properties": { - "instrument": "bit", - "note": "12", - "powered": "true" - }, - "id": 955 + "facing": "west", + "honey_level": "5" + } }, { + "id": 17003, "properties": { - "instrument": "bit", - "note": "12", - "powered": "false" - }, - "id": 956 + "facing": "east", + "honey_level": "0" + } }, { + "id": 17004, "properties": { - "instrument": "bit", - "note": "13", - "powered": "true" - }, - "id": 957 + "facing": "east", + "honey_level": "1" + } }, { + "id": 17005, "properties": { - "instrument": "bit", - "note": "13", - "powered": "false" - }, - "id": 958 + "facing": "east", + "honey_level": "2" + } }, { + "id": 17006, "properties": { - "instrument": "bit", - "note": "14", - "powered": "true" - }, - "id": 959 + "facing": "east", + "honey_level": "3" + } }, { + "id": 17007, "properties": { - "instrument": "bit", - "note": "14", - "powered": "false" - }, - "id": 960 + "facing": "east", + "honey_level": "4" + } }, { + "id": 17008, "properties": { - "instrument": "bit", - "note": "15", - "powered": "true" - }, - "id": 961 - }, + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ { + "default": true, + "id": 17009, "properties": { - "instrument": "bit", - "note": "15", - "powered": "false" - }, - "id": 962 + "facing": "north", + "honey_level": "0" + } }, { + "id": 17010, "properties": { - "instrument": "bit", - "note": "16", - "powered": "true" - }, - "id": 963 + "facing": "north", + "honey_level": "1" + } }, { + "id": 17011, "properties": { - "instrument": "bit", - "note": "16", - "powered": "false" - }, - "id": 964 + "facing": "north", + "honey_level": "2" + } }, { + "id": 17012, "properties": { - "instrument": "bit", - "note": "17", - "powered": "true" - }, - "id": 965 + "facing": "north", + "honey_level": "3" + } }, { + "id": 17013, "properties": { - "instrument": "bit", - "note": "17", - "powered": "false" - }, - "id": 966 + "facing": "north", + "honey_level": "4" + } }, { + "id": 17014, "properties": { - "instrument": "bit", - "note": "18", - "powered": "true" - }, - "id": 967 + "facing": "north", + "honey_level": "5" + } }, { + "id": 17015, "properties": { - "instrument": "bit", - "note": "18", - "powered": "false" - }, - "id": 968 + "facing": "south", + "honey_level": "0" + } }, { + "id": 17016, "properties": { - "instrument": "bit", - "note": "19", - "powered": "true" - }, - "id": 969 + "facing": "south", + "honey_level": "1" + } }, { + "id": 17017, "properties": { - "instrument": "bit", - "note": "19", - "powered": "false" - }, - "id": 970 + "facing": "south", + "honey_level": "2" + } }, { + "id": 17018, "properties": { - "instrument": "bit", - "note": "20", - "powered": "true" - }, - "id": 971 + "facing": "south", + "honey_level": "3" + } }, { + "id": 17019, "properties": { - "instrument": "bit", - "note": "20", - "powered": "false" - }, - "id": 972 + "facing": "south", + "honey_level": "4" + } }, { + "id": 17020, "properties": { - "instrument": "bit", - "note": "21", - "powered": "true" - }, - "id": 973 + "facing": "south", + "honey_level": "5" + } }, { + "id": 17021, "properties": { - "instrument": "bit", - "note": "21", - "powered": "false" - }, - "id": 974 + "facing": "west", + "honey_level": "0" + } }, { + "id": 17022, "properties": { - "instrument": "bit", - "note": "22", - "powered": "true" - }, - "id": 975 + "facing": "west", + "honey_level": "1" + } }, { + "id": 17023, "properties": { - "instrument": "bit", - "note": "22", - "powered": "false" - }, - "id": 976 + "facing": "west", + "honey_level": "2" + } }, { + "id": 17024, "properties": { - "instrument": "bit", - "note": "23", - "powered": "true" - }, - "id": 977 + "facing": "west", + "honey_level": "3" + } }, { + "id": 17025, "properties": { - "instrument": "bit", - "note": "23", - "powered": "false" - }, - "id": 978 + "facing": "west", + "honey_level": "4" + } }, { + "id": 17026, "properties": { - "instrument": "bit", - "note": "24", - "powered": "true" - }, - "id": 979 + "facing": "west", + "honey_level": "5" + } }, { + "id": 17027, "properties": { - "instrument": "bit", - "note": "24", - "powered": "false" - }, - "id": 980 + "facing": "east", + "honey_level": "0" + } }, { + "id": 17028, "properties": { - "instrument": "banjo", - "note": "0", - "powered": "true" - }, - "id": 981 + "facing": "east", + "honey_level": "1" + } }, { + "id": 17029, "properties": { - "instrument": "banjo", - "note": "0", - "powered": "false" - }, - "id": 982 + "facing": "east", + "honey_level": "2" + } }, { + "id": 17030, "properties": { - "instrument": "banjo", - "note": "1", - "powered": "true" - }, - "id": 983 + "facing": "east", + "honey_level": "3" + } }, { + "id": 17031, "properties": { - "instrument": "banjo", - "note": "1", - "powered": "false" - }, - "id": 984 + "facing": "east", + "honey_level": "4" + } }, { + "id": 17032, "properties": { - "instrument": "banjo", - "note": "2", - "powered": "true" - }, - "id": 985 - }, + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { + "default": true, + "id": 10100, "properties": { - "instrument": "banjo", - "note": "2", - "powered": "false" - }, - "id": 986 + "age": "0" + } }, { + "id": 10101, "properties": { - "instrument": "banjo", - "note": "3", - "powered": "true" - }, - "id": 987 + "age": "1" + } }, { + "id": 10102, "properties": { - "instrument": "banjo", - "note": "3", - "powered": "false" - }, - "id": 988 + "age": "2" + } }, { + "id": 10103, "properties": { - "instrument": "banjo", - "note": "4", + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16059, + "properties": { + "attachment": "floor", + "facing": "north", "powered": "true" - }, - "id": 989 + } }, { + "default": true, + "id": 16060, "properties": { - "instrument": "banjo", - "note": "4", + "attachment": "floor", + "facing": "north", "powered": "false" - }, - "id": 990 + } }, { + "id": 16061, "properties": { - "instrument": "banjo", - "note": "5", + "attachment": "floor", + "facing": "south", "powered": "true" - }, - "id": 991 + } }, { + "id": 16062, "properties": { - "instrument": "banjo", - "note": "5", + "attachment": "floor", + "facing": "south", "powered": "false" - }, - "id": 992 + } }, { + "id": 16063, "properties": { - "instrument": "banjo", - "note": "6", + "attachment": "floor", + "facing": "west", "powered": "true" - }, - "id": 993 + } }, { + "id": 16064, "properties": { - "instrument": "banjo", - "note": "6", + "attachment": "floor", + "facing": "west", "powered": "false" - }, - "id": 994 + } }, { + "id": 16065, "properties": { - "instrument": "banjo", - "note": "7", + "attachment": "floor", + "facing": "east", "powered": "true" - }, - "id": 995 + } }, { + "id": 16066, "properties": { - "instrument": "banjo", - "note": "7", + "attachment": "floor", + "facing": "east", "powered": "false" - }, - "id": 996 + } }, { + "id": 16067, "properties": { - "instrument": "banjo", - "note": "8", + "attachment": "ceiling", + "facing": "north", "powered": "true" - }, - "id": 997 + } }, { + "id": 16068, "properties": { - "instrument": "banjo", - "note": "8", + "attachment": "ceiling", + "facing": "north", "powered": "false" - }, - "id": 998 + } }, { + "id": 16069, "properties": { - "instrument": "banjo", - "note": "9", + "attachment": "ceiling", + "facing": "south", "powered": "true" - }, - "id": 999 + } }, { + "id": 16070, "properties": { - "instrument": "banjo", - "note": "9", + "attachment": "ceiling", + "facing": "south", "powered": "false" - }, - "id": 1000 + } }, { + "id": 16071, "properties": { - "instrument": "banjo", - "note": "10", + "attachment": "ceiling", + "facing": "west", "powered": "true" - }, - "id": 1001 + } }, { + "id": 16072, "properties": { - "instrument": "banjo", - "note": "10", + "attachment": "ceiling", + "facing": "west", "powered": "false" - }, - "id": 1002 + } }, { + "id": 16073, "properties": { - "instrument": "banjo", - "note": "11", + "attachment": "ceiling", + "facing": "east", "powered": "true" - }, - "id": 1003 + } }, { + "id": 16074, "properties": { - "instrument": "banjo", - "note": "11", + "attachment": "ceiling", + "facing": "east", "powered": "false" - }, - "id": 1004 + } }, { + "id": 16075, "properties": { - "instrument": "banjo", - "note": "12", + "attachment": "single_wall", + "facing": "north", "powered": "true" - }, - "id": 1005 + } }, { + "id": 16076, "properties": { - "instrument": "banjo", - "note": "12", + "attachment": "single_wall", + "facing": "north", "powered": "false" - }, - "id": 1006 + } }, { + "id": 16077, "properties": { - "instrument": "banjo", - "note": "13", + "attachment": "single_wall", + "facing": "south", "powered": "true" - }, - "id": 1007 + } }, { + "id": 16078, "properties": { - "instrument": "banjo", - "note": "13", + "attachment": "single_wall", + "facing": "south", "powered": "false" - }, - "id": 1008 + } }, { + "id": 16079, "properties": { - "instrument": "banjo", - "note": "14", + "attachment": "single_wall", + "facing": "west", "powered": "true" - }, - "id": 1009 + } }, { + "id": 16080, "properties": { - "instrument": "banjo", - "note": "14", + "attachment": "single_wall", + "facing": "west", "powered": "false" - }, - "id": 1010 + } }, { + "id": 16081, "properties": { - "instrument": "banjo", - "note": "15", + "attachment": "single_wall", + "facing": "east", "powered": "true" - }, - "id": 1011 + } }, { + "id": 16082, "properties": { - "instrument": "banjo", - "note": "15", + "attachment": "single_wall", + "facing": "east", "powered": "false" - }, - "id": 1012 + } }, { + "id": 16083, "properties": { - "instrument": "banjo", - "note": "16", + "attachment": "double_wall", + "facing": "north", "powered": "true" - }, - "id": 1013 + } }, { + "id": 16084, "properties": { - "instrument": "banjo", - "note": "16", + "attachment": "double_wall", + "facing": "north", "powered": "false" - }, - "id": 1014 + } }, { + "id": 16085, "properties": { - "instrument": "banjo", - "note": "17", + "attachment": "double_wall", + "facing": "south", "powered": "true" - }, - "id": 1015 + } }, { + "id": 16086, "properties": { - "instrument": "banjo", - "note": "17", + "attachment": "double_wall", + "facing": "south", "powered": "false" - }, - "id": 1016 + } }, { + "id": 16087, "properties": { - "instrument": "banjo", - "note": "18", + "attachment": "double_wall", + "facing": "west", "powered": "true" - }, - "id": 1017 + } }, { + "id": 16088, "properties": { - "instrument": "banjo", - "note": "18", + "attachment": "double_wall", + "facing": "west", "powered": "false" - }, - "id": 1018 + } }, { + "id": 16089, "properties": { - "instrument": "banjo", - "note": "19", + "attachment": "double_wall", + "facing": "east", "powered": "true" - }, - "id": 1019 + } }, { + "id": 16090, "properties": { - "instrument": "banjo", - "note": "19", + "attachment": "double_wall", + "facing": "east", "powered": "false" - }, - "id": 1020 + } + } + ] + }, + "minecraft:big_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19718, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } }, { + "default": true, + "id": 19719, "properties": { - "instrument": "banjo", - "note": "20", - "powered": "true" - }, - "id": 1021 + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } }, { + "id": 19720, "properties": { - "instrument": "banjo", - "note": "20", - "powered": "false" - }, - "id": 1022 + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } }, { + "id": 19721, "properties": { - "instrument": "banjo", - "note": "21", - "powered": "true" - }, - "id": 1023 + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } }, { + "id": 19722, "properties": { - "instrument": "banjo", - "note": "21", - "powered": "false" - }, - "id": 1024 + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } }, { + "id": 19723, "properties": { - "instrument": "banjo", - "note": "22", - "powered": "true" - }, - "id": 1025 + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } }, { + "id": 19724, "properties": { - "instrument": "banjo", - "note": "22", - "powered": "false" - }, - "id": 1026 + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } }, { + "id": 19725, "properties": { - "instrument": "banjo", - "note": "23", - "powered": "true" - }, - "id": 1027 + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } }, { + "id": 19726, "properties": { - "instrument": "banjo", - "note": "23", - "powered": "false" - }, - "id": 1028 + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } }, { + "id": 19727, "properties": { - "instrument": "banjo", - "note": "24", - "powered": "true" - }, - "id": 1029 + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } }, { + "id": 19728, "properties": { - "instrument": "banjo", - "note": "24", - "powered": "false" - }, - "id": 1030 + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } }, { + "id": 19729, "properties": { - "instrument": "pling", - "note": "0", - "powered": "true" - }, - "id": 1031 + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } }, { + "id": 19730, "properties": { - "instrument": "pling", - "note": "0", - "powered": "false" - }, - "id": 1032 + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } }, { + "id": 19731, "properties": { - "instrument": "pling", - "note": "1", - "powered": "true" - }, - "id": 1033 + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } }, { + "id": 19732, "properties": { - "instrument": "pling", - "note": "1", - "powered": "false" - }, - "id": 1034 + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } }, { + "id": 19733, "properties": { - "instrument": "pling", - "note": "2", - "powered": "true" - }, - "id": 1035 + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } }, { + "id": 19734, "properties": { - "instrument": "pling", - "note": "2", - "powered": "false" - }, - "id": 1036 + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } }, { + "id": 19735, "properties": { - "instrument": "pling", - "note": "3", - "powered": "true" - }, - "id": 1037 + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } }, { + "id": 19736, "properties": { - "instrument": "pling", - "note": "3", - "powered": "false" - }, - "id": 1038 + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } }, { + "id": 19737, "properties": { - "instrument": "pling", - "note": "4", - "powered": "true" - }, - "id": 1039 + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } }, { + "id": 19738, "properties": { - "instrument": "pling", - "note": "4", - "powered": "false" - }, - "id": 1040 + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } }, { + "id": 19739, "properties": { - "instrument": "pling", - "note": "5", - "powered": "true" - }, - "id": 1041 + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } }, { + "id": 19740, "properties": { - "instrument": "pling", - "note": "5", - "powered": "false" - }, - "id": 1042 + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } }, { + "id": 19741, "properties": { - "instrument": "pling", - "note": "6", - "powered": "true" - }, - "id": 1043 + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } }, { + "id": 19742, "properties": { - "instrument": "pling", - "note": "6", - "powered": "false" - }, - "id": 1044 + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } }, { + "id": 19743, "properties": { - "instrument": "pling", - "note": "7", - "powered": "true" - }, - "id": 1045 + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } }, { + "id": 19744, "properties": { - "instrument": "pling", - "note": "7", - "powered": "false" - }, - "id": 1046 + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } }, { + "id": 19745, "properties": { - "instrument": "pling", - "note": "8", - "powered": "true" - }, - "id": 1047 + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } }, { + "id": 19746, "properties": { - "instrument": "pling", - "note": "8", - "powered": "false" - }, - "id": 1048 + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } }, { + "id": 19747, "properties": { - "instrument": "pling", - "note": "9", - "powered": "true" - }, - "id": 1049 + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } }, { + "id": 19748, "properties": { - "instrument": "pling", - "note": "9", - "powered": "false" - }, - "id": 1050 + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } }, { + "id": 19749, "properties": { - "instrument": "pling", - "note": "10", - "powered": "true" - }, - "id": 1051 + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19750, + "properties": { + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 19751, "properties": { - "instrument": "pling", - "note": "10", - "powered": "false" - }, - "id": 1052 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 19752, "properties": { - "instrument": "pling", - "note": "11", - "powered": "true" - }, - "id": 1053 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 19753, "properties": { - "instrument": "pling", - "note": "11", - "powered": "false" - }, - "id": 1054 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 19754, "properties": { - "instrument": "pling", - "note": "12", - "powered": "true" - }, - "id": 1055 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 19755, "properties": { - "instrument": "pling", - "note": "12", - "powered": "false" - }, - "id": 1056 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 19756, "properties": { - "instrument": "pling", - "note": "13", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19757, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6987, + "properties": { + "face": "floor", + "facing": "north", "powered": "true" - }, - "id": 1057 + } }, { + "id": 6988, "properties": { - "instrument": "pling", - "note": "13", + "face": "floor", + "facing": "north", "powered": "false" - }, - "id": 1058 + } }, { + "id": 6989, "properties": { - "instrument": "pling", - "note": "14", + "face": "floor", + "facing": "south", "powered": "true" - }, - "id": 1059 + } }, { + "id": 6990, "properties": { - "instrument": "pling", - "note": "14", + "face": "floor", + "facing": "south", "powered": "false" - }, - "id": 1060 + } }, { + "id": 6991, "properties": { - "instrument": "pling", - "note": "15", + "face": "floor", + "facing": "west", "powered": "true" - }, - "id": 1061 + } }, { + "id": 6992, "properties": { - "instrument": "pling", - "note": "15", + "face": "floor", + "facing": "west", "powered": "false" - }, - "id": 1062 + } }, { + "id": 6993, "properties": { - "instrument": "pling", - "note": "16", + "face": "floor", + "facing": "east", "powered": "true" - }, - "id": 1063 + } }, { + "id": 6994, "properties": { - "instrument": "pling", - "note": "16", + "face": "floor", + "facing": "east", "powered": "false" - }, - "id": 1064 + } }, { + "id": 6995, "properties": { - "instrument": "pling", - "note": "17", + "face": "wall", + "facing": "north", "powered": "true" - }, - "id": 1065 + } }, { + "default": true, + "id": 6996, "properties": { - "instrument": "pling", - "note": "17", + "face": "wall", + "facing": "north", "powered": "false" - }, - "id": 1066 + } }, { + "id": 6997, "properties": { - "instrument": "pling", - "note": "18", + "face": "wall", + "facing": "south", "powered": "true" - }, - "id": 1067 + } }, { + "id": 6998, "properties": { - "instrument": "pling", - "note": "18", + "face": "wall", + "facing": "south", "powered": "false" - }, - "id": 1068 + } }, { + "id": 6999, "properties": { - "instrument": "pling", - "note": "19", + "face": "wall", + "facing": "west", "powered": "true" - }, - "id": 1069 + } }, { + "id": 7000, "properties": { - "instrument": "pling", - "note": "19", + "face": "wall", + "facing": "west", "powered": "false" - }, - "id": 1070 + } }, { + "id": 7001, "properties": { - "instrument": "pling", - "note": "20", + "face": "wall", + "facing": "east", "powered": "true" - }, - "id": 1071 + } }, { + "id": 7002, "properties": { - "instrument": "pling", - "note": "20", + "face": "wall", + "facing": "east", "powered": "false" - }, - "id": 1072 + } }, { + "id": 7003, "properties": { - "instrument": "pling", - "note": "21", + "face": "ceiling", + "facing": "north", "powered": "true" - }, - "id": 1073 + } }, { + "id": 7004, "properties": { - "instrument": "pling", - "note": "21", + "face": "ceiling", + "facing": "north", "powered": "false" - }, - "id": 1074 + } }, { + "id": 7005, "properties": { - "instrument": "pling", - "note": "22", + "face": "ceiling", + "facing": "south", "powered": "true" - }, - "id": 1075 + } }, { + "id": 7006, "properties": { - "instrument": "pling", - "note": "22", + "face": "ceiling", + "facing": "south", "powered": "false" - }, - "id": 1076 + } }, { + "id": 7007, "properties": { - "instrument": "pling", - "note": "23", + "face": "ceiling", + "facing": "west", "powered": "true" - }, - "id": 1077 + } }, { + "id": 7008, "properties": { - "instrument": "pling", - "note": "23", + "face": "ceiling", + "facing": "west", "powered": "false" - }, - "id": 1078 + } }, { + "id": 7009, "properties": { - "instrument": "pling", - "note": "24", + "face": "ceiling", + "facing": "east", "powered": "true" - }, - "id": 1079 + } }, { + "id": 7010, "properties": { - "instrument": "pling", - "note": "24", + "face": "ceiling", + "facing": "east", "powered": "false" - }, - "id": 1080 + } } ] }, - "minecraft:white_bed": { + "minecraft:birch_door": { "properties": { "facing": [ "north", @@ -8952,893 +10392,1015 @@ "west", "east" ], - "occupied": [ + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ "true", "false" ], - "part": [ - "head", - "foot" + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9619, "properties": { "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1081 + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9620, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1082 + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9621, "properties": { "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1083 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9622, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1084, - "default": true + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9623, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1085 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9624, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1086 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9625, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1087 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9626, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1088 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9627, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1089 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9628, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1090 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9629, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1091 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9630, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1092 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9631, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1093 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9632, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1094 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9633, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1095 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9634, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1096 - } - ] - }, - "minecraft:orange_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9635, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1097 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9636, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1098 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9637, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1099 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9638, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1100, - "default": true + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9639, "properties": { "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1101 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9640, "properties": { "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1102 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9641, "properties": { "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1103 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9642, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1104 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9643, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1105 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9644, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1106 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9645, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1107 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9646, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1108 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9647, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1109 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9648, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1110 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9649, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1111 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9650, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1112 - } - ] - }, - "minecraft:magenta_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9651, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1113 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9652, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1114 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9653, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1115 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9654, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1116, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9655, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1117 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9656, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1118 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9657, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1119 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9658, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1120 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9659, "properties": { "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1121 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9660, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1122 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9661, "properties": { "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1123 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9662, "properties": { "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1124 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9663, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1125 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9664, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1126 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9665, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1127 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9666, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1128 - } - ] - }, - "minecraft:light_blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9667, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1129 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9668, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1130 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9669, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1131 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9670, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1132, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9671, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1133 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9672, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1134 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9673, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1135 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9674, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1136 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9675, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1137 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9676, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1138 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9677, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1139 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9678, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1140 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9679, "properties": { "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1141 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9680, "properties": { "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1142 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9681, "properties": { "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1143 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9682, "properties": { "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1144 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:yellow_bed": { + "minecraft:birch_fence": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "true", + "false" ], - "occupied": [ + "north": [ "true", "false" ], - "part": [ - "head", - "foot" + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 9395, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1145 - }, - { - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1146 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9396, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1147 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9397, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1148, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9398, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1149 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9399, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1150 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9400, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1151 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9401, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1152 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9402, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1153 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9403, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1154 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9404, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1155 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9405, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1156 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9406, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1157 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9407, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1158 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9408, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1159 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9409, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1160 - } - ] - }, - "minecraft:lime_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, { + "id": 9410, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1161 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9411, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1162 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9412, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1163 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9413, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1164, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9414, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1165 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9415, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1166 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9416, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1167 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9417, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1168 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9418, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1169 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9419, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1170 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9420, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1171 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9421, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1172 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9422, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1173 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9423, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1174 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9424, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1175 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9425, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1176 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9426, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:pink_bed": { + "minecraft:birch_fence_gate": { "properties": { "facing": [ "north", @@ -9846,1501 +11408,1721 @@ "west", "east" ], - "occupied": [ + "in_wall": [ "true", "false" ], - "part": [ - "head", - "foot" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9203, "properties": { "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1177 + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9204, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1178 + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9205, "properties": { "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1179 + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9206, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1180, - "default": true + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9207, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1181 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9208, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1182 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9209, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1183 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9210, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1184 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9211, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1185 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9212, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1186 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9213, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1187 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9214, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1188 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9215, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1189 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9216, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1190 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9217, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1191 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9218, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1192 - } - ] - }, - "minecraft:gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, { + "id": 9219, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1193 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9220, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1194 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9221, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1195 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9222, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1196, - "default": true + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9223, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1197 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9224, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1198 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9225, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1199 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9226, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1200 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9227, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1201 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9228, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1202 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9229, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1203 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9230, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1204 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9231, "properties": { "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1205 + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9232, "properties": { "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1206 + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9233, "properties": { "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1207 + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9234, "properties": { "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1208 + "in_wall": "false", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:light_gray_bed": { + "minecraft:birch_leaves": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" ], - "occupied": [ + "persistent": [ "true", "false" ], - "part": [ - "head", - "foot" + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 262, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1209 + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 263, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1210 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 264, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1211 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 265, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1212, - "default": true + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 266, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1213 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 267, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1214 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 268, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1215 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 269, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1216 + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 270, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1217 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 271, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1218 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 272, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1219 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 273, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1220 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 274, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1221 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 275, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1222 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 276, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1223 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 277, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1224 - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 278, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1225 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 279, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1226 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 280, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1227 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 281, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1228, - "default": true + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 282, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1229 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 283, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1230 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 284, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1231 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 285, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1232 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 286, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1233 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 287, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1234 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 288, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1235 + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 289, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1236 + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 123, + "properties": { + "axis": "x" + } }, { + "default": true, + "id": 124, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1237 + "axis": "y" + } }, { + "id": 125, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1238 + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4182, + "properties": { + "powered": "true" + } }, { + "default": true, + "id": 4183, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1239 + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 26, + "properties": { + "stage": "0" + } }, { + "id": 27, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1240 + "stage": "1" + } } ] }, - "minecraft:purple_bed": { + "minecraft:birch_sign": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "occupied": [ + "waterlogged": [ "true", "false" - ], - "part": [ - "head", - "foot" ] }, "states": [ { + "id": 3700, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1241 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3701, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1242 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3702, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1243 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3703, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1244, - "default": true + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3704, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1245 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3705, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1246 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3706, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1247 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3707, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1248 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3708, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1249 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3709, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1250 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3710, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1251 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3711, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1252 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3712, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1253 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3713, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1254 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3714, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1255 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3715, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1256 - } - ] - }, - "minecraft:blue_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "rotation": "7", + "waterlogged": "false" + } + }, { + "id": 3716, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1257 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3717, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1258 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3718, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1259 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3719, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1260, - "default": true + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3720, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1261 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3721, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1262 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3722, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1263 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3723, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1264 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3724, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1265 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3725, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1266 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3726, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1267 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3727, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1268 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3728, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1269 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3729, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1270 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3730, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1271 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3731, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1272 + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:brown_bed": { + "minecraft:birch_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "type": [ + "top", + "bottom", + "double" ], - "occupied": [ + "waterlogged": [ "true", "false" - ], - "part": [ - "head", - "foot" ] }, "states": [ { + "id": 9053, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1273 + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9054, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9055, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9056, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9057, + "properties": { + "type": "double", + "waterlogged": "true" + } }, { + "id": 9058, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6076, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1274 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6077, "properties": { "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1275 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6078, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1276, - "default": true + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6079, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1277 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6080, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1278 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6081, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1279 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6082, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1280 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6083, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1281 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6084, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1282 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6085, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1283 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6086, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1284 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 6087, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1285 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6088, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1286 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6089, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1287 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6090, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1288 - } - ] - }, - "minecraft:green_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, { + "id": 6091, "properties": { "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1289 + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6092, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1290 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6093, "properties": { "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1291 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6094, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1292, - "default": true + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6096, "properties": { "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1293 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6097, "properties": { "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1294 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6098, "properties": { "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1295 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6099, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1296 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6100, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1297 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6101, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1298 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6102, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1299 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6103, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1300 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6104, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1301 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6105, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1302 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6106, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1303 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6107, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1304 - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, { + "id": 6108, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1305 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6109, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1306 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6110, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1307 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6111, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1308, - "default": true + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6112, "properties": { "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1309 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6113, "properties": { "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1310 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6114, "properties": { "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1311 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6115, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1312 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6116, "properties": { "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1313 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6117, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1314 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6118, "properties": { "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1315 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6119, "properties": { "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1316 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6120, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1317 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6121, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1318 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6122, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1319 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6123, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1320 - } - ] - }, - "minecraft:black_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, { + "id": 6124, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - }, - "id": 1321 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6125, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - }, - "id": 1322 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6126, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - }, - "id": 1323 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6127, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - }, - "id": 1324, - "default": true + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6128, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - }, - "id": 1325 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6129, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - }, - "id": 1326 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6130, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - }, - "id": 1327 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6131, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - }, - "id": 1328 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6132, "properties": { "facing": "west", - "occupied": "true", - "part": "head" - }, - "id": 1329 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6133, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" - }, - "id": 1330 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6134, "properties": { "facing": "west", - "occupied": "false", - "part": "head" - }, - "id": 1331 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6135, "properties": { "facing": "west", - "occupied": "false", - "part": "foot" - }, - "id": 1332 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6136, "properties": { "facing": "east", - "occupied": "true", - "part": "head" - }, - "id": 1333 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6137, "properties": { "facing": "east", - "occupied": "true", - "part": "foot" - }, - "id": 1334 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6138, "properties": { "facing": "east", - "occupied": "false", - "part": "head" - }, - "id": 1335 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6139, "properties": { "facing": "east", - "occupied": "false", - "part": "foot" - }, - "id": 1336 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6140, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6141, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6142, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6143, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6144, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6145, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6146, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 6147, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6148, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6149, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6150, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6151, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6152, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6153, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:powered_rail": { + "minecraft:birch_trapdoor": { "properties": { - "powered": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ "true", "false" ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -11349,1386 +13131,1315 @@ }, "states": [ { + "id": 4548, "properties": { + "facing": "north", + "half": "top", + "open": "true", "powered": "true", - "shape": "north_south", "waterlogged": "true" - }, - "id": 1337 + } }, { + "id": 4549, "properties": { + "facing": "north", + "half": "top", + "open": "true", "powered": "true", - "shape": "north_south", "waterlogged": "false" - }, - "id": 1338 + } }, { + "id": 4550, "properties": { - "powered": "true", - "shape": "east_west", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 1339 + } }, { + "id": 4551, "properties": { - "powered": "true", - "shape": "east_west", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 1340 + } }, { + "id": 4552, "properties": { + "facing": "north", + "half": "top", + "open": "false", "powered": "true", - "shape": "ascending_east", "waterlogged": "true" - }, - "id": 1341 + } }, { + "id": 4553, "properties": { + "facing": "north", + "half": "top", + "open": "false", "powered": "true", - "shape": "ascending_east", "waterlogged": "false" - }, - "id": 1342 + } }, { + "id": 4554, "properties": { - "powered": "true", - "shape": "ascending_west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 1343 + } }, { + "id": 4555, "properties": { - "powered": "true", - "shape": "ascending_west", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 1344 + } }, { + "id": 4556, "properties": { + "facing": "north", + "half": "bottom", + "open": "true", "powered": "true", - "shape": "ascending_north", "waterlogged": "true" - }, - "id": 1345 + } }, { + "id": 4557, "properties": { + "facing": "north", + "half": "bottom", + "open": "true", "powered": "true", - "shape": "ascending_north", "waterlogged": "false" - }, - "id": 1346 + } }, { + "id": 4558, "properties": { - "powered": "true", - "shape": "ascending_south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 1347 + } }, { + "id": 4559, "properties": { - "powered": "true", - "shape": "ascending_south", + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 1348 + } }, { + "id": 4560, "properties": { - "powered": "false", - "shape": "north_south", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 1349 + } }, { + "id": 4561, "properties": { - "powered": "false", - "shape": "north_south", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 1350, - "default": true + } }, { + "id": 4562, "properties": { + "facing": "north", + "half": "bottom", + "open": "false", "powered": "false", - "shape": "east_west", "waterlogged": "true" - }, - "id": 1351 + } }, { + "default": true, + "id": 4563, "properties": { + "facing": "north", + "half": "bottom", + "open": "false", "powered": "false", - "shape": "east_west", "waterlogged": "false" - }, - "id": 1352 + } }, { + "id": 4564, "properties": { - "powered": "false", - "shape": "ascending_east", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 1353 + } }, { + "id": 4565, "properties": { - "powered": "false", - "shape": "ascending_east", + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 1354 + } }, { + "id": 4566, "properties": { + "facing": "south", + "half": "top", + "open": "true", "powered": "false", - "shape": "ascending_west", "waterlogged": "true" - }, - "id": 1355 + } }, { + "id": 4567, "properties": { + "facing": "south", + "half": "top", + "open": "true", "powered": "false", - "shape": "ascending_west", "waterlogged": "false" - }, - "id": 1356 + } }, { + "id": 4568, "properties": { - "powered": "false", - "shape": "ascending_north", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 1357 + } }, { + "id": 4569, "properties": { - "powered": "false", - "shape": "ascending_north", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 1358 + } }, { + "id": 4570, "properties": { + "facing": "south", + "half": "top", + "open": "false", "powered": "false", - "shape": "ascending_south", "waterlogged": "true" - }, - "id": 1359 + } }, { + "id": 4571, "properties": { + "facing": "south", + "half": "top", + "open": "false", "powered": "false", - "shape": "ascending_south", "waterlogged": "false" - }, - "id": 1360 - } - ] - }, - "minecraft:detector_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 4572, "properties": { + "facing": "south", + "half": "bottom", + "open": "true", "powered": "true", - "shape": "north_south", "waterlogged": "true" - }, - "id": 1361 + } }, { + "id": 4573, "properties": { + "facing": "south", + "half": "bottom", + "open": "true", "powered": "true", - "shape": "north_south", "waterlogged": "false" - }, - "id": 1362 + } }, { + "id": 4574, "properties": { - "powered": "true", - "shape": "east_west", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 1363 + } }, { + "id": 4575, "properties": { - "powered": "true", - "shape": "east_west", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 1364 + } }, { + "id": 4576, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", - "shape": "ascending_east", "waterlogged": "true" - }, - "id": 1365 + } }, { + "id": 4577, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", - "shape": "ascending_east", "waterlogged": "false" - }, - "id": 1366 + } }, { + "id": 4578, "properties": { - "powered": "true", - "shape": "ascending_west", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 1367 + } }, { + "id": 4579, "properties": { - "powered": "true", - "shape": "ascending_west", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 1368 + } }, { + "id": 4580, "properties": { + "facing": "west", + "half": "top", + "open": "true", "powered": "true", - "shape": "ascending_north", "waterlogged": "true" - }, - "id": 1369 + } }, { + "id": 4581, "properties": { + "facing": "west", + "half": "top", + "open": "true", "powered": "true", - "shape": "ascending_north", "waterlogged": "false" - }, - "id": 1370 + } }, { + "id": 4582, "properties": { - "powered": "true", - "shape": "ascending_south", + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 1371 + } }, { + "id": 4583, "properties": { - "powered": "true", - "shape": "ascending_south", + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 1372 + } }, { + "id": 4584, "properties": { - "powered": "false", - "shape": "north_south", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 1373 + } }, { + "id": 4585, "properties": { - "powered": "false", - "shape": "north_south", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 1374, - "default": true + } }, { + "id": 4586, "properties": { + "facing": "west", + "half": "top", + "open": "false", "powered": "false", - "shape": "east_west", "waterlogged": "true" - }, - "id": 1375 + } }, { + "id": 4587, "properties": { + "facing": "west", + "half": "top", + "open": "false", "powered": "false", - "shape": "east_west", "waterlogged": "false" - }, - "id": 1376 + } }, { + "id": 4588, "properties": { - "powered": "false", - "shape": "ascending_east", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 1377 + } }, { + "id": 4589, "properties": { - "powered": "false", - "shape": "ascending_east", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 1378 + } }, { + "id": 4590, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", "powered": "false", - "shape": "ascending_west", "waterlogged": "true" - }, - "id": 1379 + } }, { + "id": 4591, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", "powered": "false", - "shape": "ascending_west", "waterlogged": "false" - }, - "id": 1380 + } }, { + "id": 4592, "properties": { - "powered": "false", - "shape": "ascending_north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 1381 + } }, { + "id": 4593, "properties": { - "powered": "false", - "shape": "ascending_north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 1382 + } }, { + "id": 4594, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", - "shape": "ascending_south", "waterlogged": "true" - }, - "id": 1383 + } }, { + "id": 4595, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", - "shape": "ascending_south", "waterlogged": "false" - }, - "id": 1384 - } - ] - }, - "minecraft:sticky_piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + } + }, { + "id": 4596, "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1385 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4597, "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1386 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4598, "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1387 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4599, "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1388 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4600, "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1389 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4601, "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1390 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4602, "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1391, - "default": true + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4603, "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1392 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4604, "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1393 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4605, "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1394 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4606, "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1395 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4607, "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1396 - } - ] - }, - "minecraft:cobweb": { - "states": [ + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, { - "id": 1397, - "default": true - } - ] - }, - "minecraft:grass": { - "states": [ + "id": 4608, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, { - "id": 1398, - "default": true - } - ] - }, - "minecraft:fern": { - "states": [ + "id": 4609, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, { - "id": 1399, - "default": true - } - ] - }, - "minecraft:dead_bush": { - "states": [ + "id": 4610, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, { - "id": 1400, - "default": true + "id": 4611, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, - "minecraft:seagrass": { + "minecraft:birch_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { - "id": 1401, - "default": true + "id": 4048, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4049, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4050, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4051, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4052, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4053, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4054, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4055, + "properties": { + "facing": "east", + "waterlogged": "false" + } } ] }, - "minecraft:tall_seagrass": { + "minecraft:birch_wood": { "properties": { - "half": [ - "upper", - "lower" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { + "id": 170, "properties": { - "half": "upper" - }, - "id": 1402 + "axis": "x" + } }, { + "default": true, + "id": 171, "properties": { - "half": "lower" - }, - "id": 1403, - "default": true + "axis": "y" + } + }, + { + "id": 172, + "properties": { + "axis": "z" + } } ] }, - "minecraft:piston": { + "minecraft:black_banner": { "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 8878, "properties": { - "extended": "true", - "facing": "north" - }, - "id": 1404 + "rotation": "0" + } }, { + "id": 8879, "properties": { - "extended": "true", - "facing": "east" - }, - "id": 1405 + "rotation": "1" + } }, { + "id": 8880, "properties": { - "extended": "true", - "facing": "south" - }, - "id": 1406 + "rotation": "2" + } }, { + "id": 8881, "properties": { - "extended": "true", - "facing": "west" - }, - "id": 1407 + "rotation": "3" + } }, { + "id": 8882, "properties": { - "extended": "true", - "facing": "up" - }, - "id": 1408 + "rotation": "4" + } }, { + "id": 8883, "properties": { - "extended": "true", - "facing": "down" - }, - "id": 1409 + "rotation": "5" + } }, { + "id": 8884, "properties": { - "extended": "false", - "facing": "north" - }, - "id": 1410, - "default": true + "rotation": "6" + } }, { + "id": 8885, "properties": { - "extended": "false", - "facing": "east" - }, - "id": 1411 + "rotation": "7" + } }, { + "id": 8886, "properties": { - "extended": "false", - "facing": "south" - }, - "id": 1412 + "rotation": "8" + } }, { + "id": 8887, "properties": { - "extended": "false", - "facing": "west" - }, - "id": 1413 + "rotation": "9" + } }, { + "id": 8888, "properties": { - "extended": "false", - "facing": "up" - }, - "id": 1414 + "rotation": "10" + } }, { + "id": 8889, "properties": { - "extended": "false", - "facing": "down" - }, - "id": 1415 + "rotation": "11" + } + }, + { + "id": 8890, + "properties": { + "rotation": "12" + } + }, + { + "id": 8891, + "properties": { + "rotation": "13" + } + }, + { + "id": 8892, + "properties": { + "rotation": "14" + } + }, + { + "id": 8893, + "properties": { + "rotation": "15" + } } ] }, - "minecraft:piston_head": { + "minecraft:black_bed": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "short": [ + "occupied": [ "true", "false" ], - "type": [ - "normal", - "sticky" + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1519, "properties": { "facing": "north", - "short": "true", - "type": "normal" - }, - "id": 1416 + "occupied": "true", + "part": "head" + } }, { + "id": 1520, "properties": { "facing": "north", - "short": "true", - "type": "sticky" - }, - "id": 1417 + "occupied": "true", + "part": "foot" + } }, { + "id": 1521, "properties": { "facing": "north", - "short": "false", - "type": "normal" - }, - "id": 1418, - "default": true + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1522, "properties": { "facing": "north", - "short": "false", - "type": "sticky" - }, - "id": 1419 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "normal" - }, - "id": 1420 - }, - { - "properties": { - "facing": "east", - "short": "true", - "type": "sticky" - }, - "id": 1421 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "normal" - }, - "id": 1422 - }, - { - "properties": { - "facing": "east", - "short": "false", - "type": "sticky" - }, - "id": 1423 + "occupied": "false", + "part": "foot" + } }, { + "id": 1523, "properties": { "facing": "south", - "short": "true", - "type": "normal" - }, - "id": 1424 + "occupied": "true", + "part": "head" + } }, { + "id": 1524, "properties": { "facing": "south", - "short": "true", - "type": "sticky" - }, - "id": 1425 + "occupied": "true", + "part": "foot" + } }, { + "id": 1525, "properties": { "facing": "south", - "short": "false", - "type": "normal" - }, - "id": 1426 + "occupied": "false", + "part": "head" + } }, { + "id": 1526, "properties": { "facing": "south", - "short": "false", - "type": "sticky" - }, - "id": 1427 + "occupied": "false", + "part": "foot" + } }, { + "id": 1527, "properties": { "facing": "west", - "short": "true", - "type": "normal" - }, - "id": 1428 + "occupied": "true", + "part": "head" + } }, { + "id": 1528, "properties": { "facing": "west", - "short": "true", - "type": "sticky" - }, - "id": 1429 + "occupied": "true", + "part": "foot" + } }, { + "id": 1529, "properties": { "facing": "west", - "short": "false", - "type": "normal" - }, - "id": 1430 + "occupied": "false", + "part": "head" + } }, { + "id": 1530, "properties": { "facing": "west", - "short": "false", - "type": "sticky" - }, - "id": 1431 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "normal" - }, - "id": 1432 - }, - { - "properties": { - "facing": "up", - "short": "true", - "type": "sticky" - }, - "id": 1433 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "normal" - }, - "id": 1434 - }, - { - "properties": { - "facing": "up", - "short": "false", - "type": "sticky" - }, - "id": 1435 + "occupied": "false", + "part": "foot" + } }, { + "id": 1531, "properties": { - "facing": "down", - "short": "true", - "type": "normal" - }, - "id": 1436 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1532, "properties": { - "facing": "down", - "short": "true", - "type": "sticky" - }, - "id": 1437 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1533, "properties": { - "facing": "down", - "short": "false", - "type": "normal" - }, - "id": 1438 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1534, "properties": { - "facing": "down", - "short": "false", - "type": "sticky" - }, - "id": 1439 - } - ] - }, - "minecraft:white_wool": { - "states": [ - { - "id": 1440, - "default": true - } - ] - }, - "minecraft:orange_wool": { - "states": [ - { - "id": 1441, - "default": true - } - ] - }, - "minecraft:magenta_wool": { - "states": [ - { - "id": 1442, - "default": true - } - ] - }, - "minecraft:light_blue_wool": { - "states": [ - { - "id": 1443, - "default": true - } - ] - }, - "minecraft:yellow_wool": { - "states": [ - { - "id": 1444, - "default": true - } - ] - }, - "minecraft:lime_wool": { - "states": [ - { - "id": 1445, - "default": true - } - ] - }, - "minecraft:pink_wool": { - "states": [ - { - "id": 1446, - "default": true - } - ] - }, - "minecraft:gray_wool": { - "states": [ - { - "id": 1447, - "default": true - } - ] - }, - "minecraft:light_gray_wool": { - "states": [ - { - "id": 1448, - "default": true - } - ] - }, - "minecraft:cyan_wool": { - "states": [ - { - "id": 1449, - "default": true - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "id": 1450, - "default": true - } - ] - }, - "minecraft:blue_wool": { - "states": [ - { - "id": 1451, - "default": true - } - ] - }, - "minecraft:brown_wool": { - "states": [ - { - "id": 1452, - "default": true - } - ] - }, - "minecraft:green_wool": { - "states": [ - { - "id": 1453, - "default": true - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "id": 1454, - "default": true - } - ] - }, - "minecraft:black_wool": { - "states": [ - { - "id": 1455, - "default": true + "facing": "east", + "occupied": "false", + "part": "foot" + } } ] }, - "minecraft:moving_piston": { + "minecraft:black_candle": { "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" + "candles": [ + "1", + "2", + "3", + "4" ], - "type": [ - "normal", - "sticky" + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 18569, "properties": { - "facing": "north", - "type": "normal" - }, - "id": 1456, - "default": true + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18570, "properties": { - "facing": "north", - "type": "sticky" - }, - "id": 1457 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18571, "properties": { - "facing": "east", - "type": "normal" - }, - "id": 1458 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18572, "properties": { - "facing": "east", - "type": "sticky" - }, - "id": 1459 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18573, "properties": { - "facing": "south", - "type": "normal" - }, - "id": 1460 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18574, "properties": { - "facing": "south", - "type": "sticky" - }, - "id": 1461 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18575, "properties": { - "facing": "west", - "type": "normal" - }, - "id": 1462 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18576, "properties": { - "facing": "west", - "type": "sticky" - }, - "id": 1463 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18577, "properties": { - "facing": "up", - "type": "normal" - }, - "id": 1464 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18578, "properties": { - "facing": "up", - "type": "sticky" - }, - "id": 1465 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18579, "properties": { - "facing": "down", - "type": "normal" - }, - "id": 1466 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18580, "properties": { - "facing": "down", - "type": "sticky" - }, - "id": 1467 - } - ] - }, - "minecraft:dandelion": { - "states": [ - { - "id": 1468, - "default": true - } - ] - }, - "minecraft:poppy": { - "states": [ - { - "id": 1469, - "default": true - } - ] - }, - "minecraft:blue_orchid": { - "states": [ - { - "id": 1470, - "default": true - } - ] - }, - "minecraft:allium": { - "states": [ - { - "id": 1471, - "default": true - } - ] - }, - "minecraft:azure_bluet": { - "states": [ - { - "id": 1472, - "default": true - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "id": 1473, - "default": true - } - ] - }, - "minecraft:orange_tulip": { - "states": [ - { - "id": 1474, - "default": true - } - ] - }, - "minecraft:white_tulip": { - "states": [ - { - "id": 1475, - "default": true - } - ] - }, - "minecraft:pink_tulip": { - "states": [ - { - "id": 1476, - "default": true - } - ] - }, - "minecraft:oxeye_daisy": { - "states": [ + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, { - "id": 1477, - "default": true - } - ] - }, - "minecraft:cornflower": { - "states": [ + "id": 18581, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, { - "id": 1478, - "default": true - } - ] - }, - "minecraft:wither_rose": { - "states": [ + "id": 18582, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, { - "id": 1479, - "default": true - } - ] - }, - "minecraft:lily_of_the_valley": { - "states": [ + "id": 18583, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, { - "id": 1480, - "default": true + "id": 18584, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } } ] }, - "minecraft:brown_mushroom": { + "minecraft:black_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, "states": [ { - "id": 1481, - "default": true - } - ] - }, - "minecraft:red_mushroom": { - "states": [ + "id": 18617, + "properties": { + "lit": "true" + } + }, { - "id": 1482, - "default": true + "default": true, + "id": 18618, + "properties": { + "lit": "false" + } } ] }, - "minecraft:gold_block": { + "minecraft:black_carpet": { "states": [ { - "id": 1483, - "default": true + "default": true, + "id": 8622 } ] }, - "minecraft:iron_block": { + "minecraft:black_concrete": { "states": [ { - "id": 1484, - "default": true + "default": true, + "id": 10334 } ] }, - "minecraft:bricks": { + "minecraft:black_concrete_powder": { "states": [ { - "id": 1485, - "default": true + "default": true, + "id": 10350 } ] }, - "minecraft:tnt": { + "minecraft:black_glazed_terracotta": { "properties": { - "unstable": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 10315, "properties": { - "unstable": "true" - }, - "id": 1486 + "facing": "north" + } }, { + "id": 10316, "properties": { - "unstable": "false" - }, - "id": 1487, - "default": true - } - ] - }, - "minecraft:bookshelf": { - "states": [ - { - "id": 1488, - "default": true - } - ] - }, - "minecraft:mossy_cobblestone": { - "states": [ - { - "id": 1489, - "default": true - } - ] - }, - "minecraft:obsidian": { - "states": [ + "facing": "south" + } + }, { - "id": 1490, - "default": true - } - ] - }, - "minecraft:torch": { - "states": [ + "id": 10317, + "properties": { + "facing": "west" + } + }, { - "id": 1491, - "default": true + "id": 10318, + "properties": { + "facing": "east" + } } ] }, - "minecraft:wall_torch": { + "minecraft:black_shulker_box": { "properties": { "facing": [ "north", + "east", "south", "west", - "east" + "up", + "down" ] }, "states": [ { + "id": 10249, "properties": { "facing": "north" - }, - "id": 1492, - "default": true + } + }, + { + "id": 10250, + "properties": { + "facing": "east" + } }, { + "id": 10251, "properties": { "facing": "south" - }, - "id": 1493 + } }, { + "id": 10252, "properties": { "facing": "west" - }, - "id": 1494 + } }, { + "default": true, + "id": 10253, "properties": { - "facing": "east" - }, - "id": 1495 + "facing": "up" + } + }, + { + "id": 10254, + "properties": { + "facing": "down" + } } ] }, - "minecraft:fire": { + "minecraft:black_stained_glass": { + "states": [ + { + "default": true, + "id": 4419 + } + ] + }, + "minecraft:black_stained_glass_pane": { "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], "east": [ "true", "false" @@ -12741,7 +14452,7 @@ "true", "false" ], - "up": [ + "waterlogged": [ "true", "false" ], @@ -12752,22132 +14463,24141 @@ }, "states": [ { + "id": 7972, "properties": { - "age": "0", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1496 + } }, { + "id": 7973, "properties": { - "age": "0", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1497 + } }, { + "id": 7974, "properties": { - "age": "0", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1498 + } }, { + "id": 7975, "properties": { - "age": "0", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1499 + } }, { + "id": 7976, "properties": { - "age": "0", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1500 + } }, { + "id": 7977, "properties": { - "age": "0", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1501 + } }, { + "id": 7978, "properties": { - "age": "0", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1502 + } }, { + "id": 7979, "properties": { - "age": "0", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1503 + } }, { + "id": 7980, "properties": { - "age": "0", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1504 + } }, { + "id": 7981, "properties": { - "age": "0", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1505 + } }, { + "id": 7982, "properties": { - "age": "0", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1506 + } }, { + "id": 7983, "properties": { - "age": "0", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1507 + } }, { + "id": 7984, "properties": { - "age": "0", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1508 + } }, { + "id": 7985, "properties": { - "age": "0", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1509 + } }, { + "id": 7986, "properties": { - "age": "0", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1510 + } }, { + "id": 7987, "properties": { - "age": "0", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1511 + } }, { + "id": 7988, "properties": { - "age": "0", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1512 + } }, { + "id": 7989, "properties": { - "age": "0", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1513 + } }, { + "id": 7990, "properties": { - "age": "0", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1514 + } }, { + "id": 7991, "properties": { - "age": "0", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1515 + } }, { + "id": 7992, "properties": { - "age": "0", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1516 + } }, { + "id": 7993, "properties": { - "age": "0", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1517 + } }, { + "id": 7994, "properties": { - "age": "0", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1518 + } }, { + "id": 7995, "properties": { - "age": "0", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1519 + } }, { + "id": 7996, "properties": { - "age": "0", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1520 + } }, { + "id": 7997, "properties": { - "age": "0", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1521 + } }, { + "id": 7998, "properties": { - "age": "0", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1522 + } }, { + "id": 7999, "properties": { - "age": "0", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1523 + } }, { + "id": 8000, "properties": { - "age": "0", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1524 + } }, { + "id": 8001, "properties": { - "age": "0", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1525 + } }, { + "id": 8002, "properties": { - "age": "0", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1526 + } }, { + "default": true, + "id": 8003, "properties": { - "age": "0", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1527, - "default": true - }, + } + } + ] + }, + "minecraft:black_terracotta": { + "states": [ + { + "default": true, + "id": 7491 + } + ] + }, + "minecraft:black_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8954, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1528 + "facing": "north" + } }, { + "id": 8955, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1529 + "facing": "south" + } }, { + "id": 8956, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1530 + "facing": "west" + } }, { + "id": 8957, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1531 - }, + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "states": [ + { + "default": true, + "id": 1653 + } + ] + }, + "minecraft:blackstone": { + "states": [ + { + "default": true, + "id": 17048 + } + ] + }, + "minecraft:blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 17453, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1532 + "type": "top", + "waterlogged": "true" + } }, { + "id": 17454, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1533 + "type": "top", + "waterlogged": "false" + } }, { + "id": 17455, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1534 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 17456, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1535 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 17457, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1536 + "type": "double", + "waterlogged": "true" + } }, { + "id": 17458, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1537 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 17049, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1538 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17050, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1539 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17051, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1540 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17052, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1541 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17053, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1542 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17054, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1543 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17055, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1544 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17056, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1545 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17057, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1546 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17058, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1547 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17059, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1548 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 17060, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1549 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17061, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1550 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17062, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1551 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17063, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1552 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17064, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1553 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17065, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1554 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17066, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1555 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17067, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1556 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17068, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1557 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17069, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1558 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17070, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1559 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17071, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1560 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17072, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1561 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17073, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1562 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17074, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1563 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17075, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1564 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17076, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1565 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17077, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1566 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17078, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1567 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17079, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1568 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17080, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1569 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17081, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1570 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17082, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1571 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17083, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1572 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17084, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1573 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17085, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1574 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17086, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1575 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17087, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1576 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17088, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1577 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17089, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1578 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17090, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1579 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17091, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1580 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17092, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1581 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17093, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1582 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17094, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1583 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17095, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1584 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17096, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1585 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17097, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1586 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17098, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1587 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17099, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1588 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17100, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1589 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17101, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1590 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17102, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1591 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17103, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1592 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17104, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1593 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17105, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1594 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17106, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1595 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17107, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1596 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17108, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1597 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17109, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1598 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17110, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1599 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17111, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1600 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17112, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1601 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17113, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1602 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17114, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1603 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17115, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1604 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17116, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1605 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17117, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1606 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 17118, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1607 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 17119, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1608 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 17120, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1609 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 17121, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1610 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 17122, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1611 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 17123, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1612 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 17124, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1613 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 17125, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1614 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 17126, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1615 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 17127, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17128, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17129, + "properties": { + "east": "none", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1616 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17130, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1617 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17131, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1618 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 17132, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1619 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17133, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1620 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17134, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1621 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17135, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1622 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17136, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1623 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17137, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1624 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17138, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1625 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17139, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1626 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17140, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1627 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17141, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1628 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17142, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1629 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17143, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1630 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17144, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1631 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17145, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1632 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17146, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1633 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17147, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1634 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17148, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1635 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17149, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1636 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17150, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1637 - }, - { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17151, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1638 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17152, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1639 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17153, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1640 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17154, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1641 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17155, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1642 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17156, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1643 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17157, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1644 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17158, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1645 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17159, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1646 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17160, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1647 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17161, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1648 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17162, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1649 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17163, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1650 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17164, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1651 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17165, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1652 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17166, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1653 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17167, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1654 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17168, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1655 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17169, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1656 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17170, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1657 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17171, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1658 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17172, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1659 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17173, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1660 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17174, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1661 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17175, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1662 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17176, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1663 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17177, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1664 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17178, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1665 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17179, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1666 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17180, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1667 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17181, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1668 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17182, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1669 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17183, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1670 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17184, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1671 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17185, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1672 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17186, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1673 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17187, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1674 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17188, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1675 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17189, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1676 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17190, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1677 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17191, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1678 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17192, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1679 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17193, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1680 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17194, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1681 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17195, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1682 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17196, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1683 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17197, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1684 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17198, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1685 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17199, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1686 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17200, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1687 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17201, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1688 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17202, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1689 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17203, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1690 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17204, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1691 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17205, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1692 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17206, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1693 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17207, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1694 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17208, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1695 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17209, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1696 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17210, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1697 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17211, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1698 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17212, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1699 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17213, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1700 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17214, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1701 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17215, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1702 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17216, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1703 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17217, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1704 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17218, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1705 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17219, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1706 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17220, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1707 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17221, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1708 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17222, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1709 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17223, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1710 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17224, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1711 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17225, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1712 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17226, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1713 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17227, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1714 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17228, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1715 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17229, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1716 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17230, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1717 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17231, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1718 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17232, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1719 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17233, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1720 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17234, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1721 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17235, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1722 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17236, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1723 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17237, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1724 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17238, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1725 - }, - { - "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1726 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17239, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1727 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17240, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1728 + "waterlogged": "false", + "west": "none" + } }, { + "id": 17241, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1729 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17242, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17243, + "properties": { + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1730 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17244, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1731 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17245, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1732 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17246, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1733 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17247, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1734 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17248, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1735 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17249, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1736 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17250, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1737 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17251, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1738 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17252, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1739 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17253, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1740 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17254, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1741 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17255, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1742 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17256, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1743 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17257, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1744 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17258, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1745 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17259, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1746 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17260, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1747 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17261, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1748 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17262, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1749 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17263, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1750 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17264, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1751 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17265, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1752 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17266, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1753 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17267, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1754 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17268, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1755 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17269, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1756 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17270, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1757 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17271, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1758 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17272, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1759 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17273, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1760 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17274, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1761 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17275, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1762 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17276, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1763 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17277, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1764 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17278, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1765 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17279, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1766 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17280, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1767 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17281, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1768 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17282, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1769 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17283, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1770 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17284, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1771 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17285, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1772 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17286, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1773 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17287, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1774 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17288, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1775 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17289, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1776 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17290, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1777 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17291, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1778 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17292, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1779 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17293, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1780 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17294, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1781 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17295, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1782 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17296, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1783 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17297, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1784 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17298, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1785 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17299, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1786 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17300, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1787 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17301, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1788 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17302, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1789 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17303, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1790 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17304, "properties": { - "age": "9", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1791 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17305, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1792 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17306, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1793 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17307, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1794 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17308, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1795 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17309, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1796 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17310, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1797 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17311, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1798 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17312, "properties": { - "age": "9", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1799 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17313, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1800 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17314, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1801 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17315, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1802 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17316, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1803 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17317, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1804 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17318, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1805 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17319, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1806 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17320, "properties": { - "age": "9", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1807 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17321, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1808 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17322, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1809 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17323, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1810 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17324, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1811 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17325, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1812 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17326, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1813 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17327, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1814 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17328, "properties": { - "age": "9", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1815 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17329, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1816 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17330, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1817 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17331, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1818 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17332, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1819 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17333, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1820 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17334, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1821 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17335, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1822 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17336, "properties": { - "age": "10", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1823 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17337, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1824 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17338, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1825 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17339, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1826 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17340, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1827 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17341, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1828 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17342, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1829 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17343, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1830 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17344, "properties": { - "age": "10", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1831 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17345, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1832 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17346, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1833 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17347, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1834 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17348, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1835 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17349, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1836 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17350, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1837 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17351, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1838 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17352, "properties": { - "age": "10", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1839 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17353, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1840 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17354, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1841 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17355, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1842 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17356, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1843 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17357, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1844 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17358, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1845 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17359, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1846 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17360, "properties": { - "age": "10", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1847 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17361, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1848 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17362, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1849 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17363, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1850 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17364, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1851 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17365, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1852 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17366, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1853 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17367, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1854 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17368, "properties": { - "age": "11", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1855 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17369, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1856 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17370, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1857 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17371, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1858 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17372, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1859 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17373, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1860 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17374, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1861 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17375, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1862 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17376, "properties": { - "age": "11", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1863 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17377, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1864 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17378, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1865 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17379, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1866 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17380, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1867 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17381, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1868 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17382, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1869 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17383, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1870 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17384, "properties": { - "age": "11", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1871 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17385, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1872 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17386, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1873 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17387, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1874 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17388, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1875 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17389, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1876 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17390, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1877 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17391, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1878 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17392, "properties": { - "age": "11", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1879 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17393, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1880 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17394, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1881 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17395, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1882 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17396, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1883 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17397, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1884 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17398, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1885 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17399, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1886 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17400, "properties": { - "age": "12", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1887 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17401, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1888 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17402, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1889 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17403, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1890 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17404, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1891 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17405, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1892 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17406, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1893 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17407, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1894 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17408, "properties": { - "age": "12", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1895 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17409, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1896 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17410, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1897 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17411, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1898 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17412, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1899 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17413, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1900 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17414, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1901 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17415, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1902 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17416, "properties": { - "age": "12", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1903 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17417, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1904 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17418, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1905 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17419, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1906 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17420, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1907 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17421, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "true" - }, - "id": 1908 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17422, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "false" - }, - "id": 1909 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17423, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1910 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17424, "properties": { - "age": "12", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1911 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17425, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1912 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17426, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1913 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17427, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "true" - }, - "id": 1914 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17428, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "false" - }, - "id": 1915 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17429, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1916 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17430, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1917 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17431, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1918 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17432, "properties": { - "age": "13", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1919 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17433, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "true" - }, - "id": 1920 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17434, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "false" - }, - "id": 1921 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17435, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1922 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17436, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1923 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17437, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1924 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17438, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1925 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17439, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "true" - }, - "id": 1926 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17440, "properties": { - "age": "13", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "false" - }, - "id": 1927 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17441, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1928 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17442, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1929 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17443, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1930 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17444, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1931 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17445, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" - }, - "id": 1932 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17446, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" - }, - "id": 1933 + "waterlogged": "false", + "west": "tall" + } }, { + "id": 17447, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1934 + "waterlogged": "true", + "west": "none" + } }, { + "id": 17448, "properties": { - "age": "13", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1935 + "waterlogged": "true", + "west": "low" + } }, { + "id": 17449, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1936 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 17450, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1937 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 17451, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" - }, - "id": 1938 + "waterlogged": "false", + "west": "low" + } }, { + "id": 17452, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" - }, - "id": 1939 + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16016, + "properties": { + "facing": "north", + "lit": "true" + } }, { + "default": true, + "id": 16017, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1940 + "facing": "north", + "lit": "false" + } }, { + "id": 16018, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1941 + "facing": "south", + "lit": "true" + } }, { + "id": 16019, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1942 + "facing": "south", + "lit": "false" + } }, { + "id": 16020, "properties": { - "age": "13", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1943 + "facing": "west", + "lit": "true" + } }, { + "id": 16021, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1944 + "facing": "west", + "lit": "false" + } }, { + "id": 16022, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1945 + "facing": "east", + "lit": "true" + } }, { + "id": 16023, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1946 + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8814, + "properties": { + "rotation": "0" + } }, { + "id": 8815, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1947 + "rotation": "1" + } }, { + "id": 8816, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1948 + "rotation": "2" + } }, { + "id": 8817, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1949 + "rotation": "3" + } }, { + "id": 8818, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1950 + "rotation": "4" + } }, { + "id": 8819, "properties": { - "age": "14", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1951 + "rotation": "5" + } }, { + "id": 8820, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1952 + "rotation": "6" + } }, { + "id": 8821, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1953 + "rotation": "7" + } }, { + "id": 8822, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1954 + "rotation": "8" + } }, { + "id": 8823, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1955 + "rotation": "9" + } }, { + "id": 8824, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1956 + "rotation": "10" + } }, { + "id": 8825, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1957 + "rotation": "11" + } }, { + "id": 8826, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1958 + "rotation": "12" + } }, { + "id": 8827, "properties": { - "age": "14", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1959 + "rotation": "13" + } }, { + "id": 8828, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1960 + "rotation": "14" + } }, { + "id": 8829, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1961 + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1455, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1456, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1962 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1457, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1963 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1458, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1964 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1459, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1965 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1460, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1966 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1461, "properties": { - "age": "14", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1967 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1462, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 1968 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1463, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 1969 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1464, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 1970 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1465, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 1971 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1466, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 1972 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1467, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 1973 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1468, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 1974 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1469, "properties": { - "age": "14", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 1975 + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1470, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18505, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18506, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18507, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18508, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18509, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18510, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18511, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18512, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18513, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18514, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18515, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18516, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 18517, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 18518, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 18519, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 18520, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18609, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 18610, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "states": [ + { + "default": true, + "id": 8618 + } + ] + }, + "minecraft:blue_concrete": { + "states": [ + { + "default": true, + "id": 10330 + } + ] + }, + "minecraft:blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 10346 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10299, + "properties": { + "facing": "north" + } + }, + { + "id": 10300, + "properties": { + "facing": "south" + } + }, + { + "id": 10301, + "properties": { + "facing": "west" + } + }, + { + "id": 10302, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "states": [ + { + "default": true, + "id": 10529 + } + ] + }, + "minecraft:blue_orchid": { + "states": [ + { + "default": true, + "id": 1668 + } + ] + }, + "minecraft:blue_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10225, + "properties": { + "facing": "north" + } + }, + { + "id": 10226, + "properties": { + "facing": "east" + } + }, + { + "id": 10227, + "properties": { + "facing": "south" + } + }, + { + "id": 10228, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10229, + "properties": { + "facing": "up" + } + }, + { + "id": 10230, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "states": [ + { + "default": true, + "id": 4415 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7844, "properties": { - "age": "15", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1976 + } }, { + "id": 7845, "properties": { - "age": "15", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1977 + } }, { + "id": 7846, "properties": { - "age": "15", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1978 + } }, { + "id": 7847, "properties": { - "age": "15", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1979 + } }, { + "id": 7848, "properties": { - "age": "15", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1980 + } }, { + "id": 7849, "properties": { - "age": "15", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1981 + } }, { + "id": 7850, "properties": { - "age": "15", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1982 + } }, { + "id": 7851, "properties": { - "age": "15", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1983 + } }, { + "id": 7852, "properties": { - "age": "15", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1984 + } }, { + "id": 7853, "properties": { - "age": "15", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1985 + } }, { + "id": 7854, "properties": { - "age": "15", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1986 + } }, { + "id": 7855, "properties": { - "age": "15", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1987 + } }, { + "id": 7856, "properties": { - "age": "15", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1988 + } }, { + "id": 7857, "properties": { - "age": "15", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1989 + } }, { + "id": 7858, "properties": { - "age": "15", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1990 + } }, { + "id": 7859, "properties": { - "age": "15", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1991 + } }, { + "id": 7860, "properties": { - "age": "15", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1992 + } }, { + "id": 7861, "properties": { - "age": "15", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1993 + } }, { + "id": 7862, "properties": { - "age": "15", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1994 + } }, { + "id": 7863, "properties": { - "age": "15", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1995 + } }, { + "id": 7864, "properties": { - "age": "15", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 1996 + } }, { + "id": 7865, "properties": { - "age": "15", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 1997 + } }, { + "id": 7866, "properties": { - "age": "15", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 1998 + } }, { + "id": 7867, "properties": { - "age": "15", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 1999 + } }, { + "id": 7868, "properties": { - "age": "15", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 2000 + } }, { + "id": 7869, "properties": { - "age": "15", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 2001 + } }, { + "id": 7870, "properties": { - "age": "15", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 2002 + } }, { + "id": 7871, "properties": { - "age": "15", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 2003 + } }, { + "id": 7872, "properties": { - "age": "15", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 2004 + } }, { + "id": 7873, "properties": { - "age": "15", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 2005 + } }, { + "id": 7874, "properties": { - "age": "15", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 2006 + } }, { + "default": true, + "id": 7875, "properties": { - "age": "15", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 2007 + } } ] }, - "minecraft:soul_fire": { - "states": [ - { - "id": 2008, - "default": true - } - ] - }, - "minecraft:spawner": { + "minecraft:blue_terracotta": { "states": [ { - "id": 2009, - "default": true + "default": true, + "id": 7487 } ] }, - "minecraft:oak_stairs": { + "minecraft:blue_wall_banner": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 8938, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 2010 + "facing": "north" + } }, { + "id": 8939, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 2011 + "facing": "south" + } }, { + "id": 8940, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 2012 + "facing": "west" + } }, { + "id": 8941, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 2013 + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "states": [ + { + "default": true, + "id": 1649 + } + ] + }, + "minecraft:bone_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10137, + "properties": { + "axis": "x" + } }, { + "default": true, + "id": 10138, "properties": { - "facing": "north", - "half": "top", + "axis": "y" + } + }, + { + "id": 10139, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "states": [ + { + "default": true, + "id": 1686 + } + ] + }, + "minecraft:brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10413, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10414, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "states": [ + { + "default": true, + "id": 10397 + } + ] + }, + "minecraft:brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10433, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10434, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10489, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10490, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10491, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10492, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10493, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10494, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10495, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10496, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5720, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 5721, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 5722, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 5723, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 5724, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 5725, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 5726, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 5727, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9119, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9120, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9121, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9122, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9123, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9124, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5359, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5360, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5361, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5362, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5363, + "properties": { + "facing": "north", + "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2014 + } }, { + "id": 5364, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2015 + } }, { + "id": 5365, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2016 + } }, { + "id": 5366, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2017 + } }, { + "id": 5367, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2018 + } }, { + "id": 5368, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2019 + } }, { + "id": 5369, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2020 + } }, { + "default": true, + "id": 5370, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2021, - "default": true + } }, { + "id": 5371, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2022 + } }, { + "id": 5372, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2023 + } }, { + "id": 5373, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2024 + } }, { + "id": 5374, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2025 + } }, { + "id": 5375, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2026 + } }, { + "id": 5376, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2027 + } }, { + "id": 5377, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2028 + } }, { + "id": 5378, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2029 + } }, { + "id": 5379, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2030 + } }, { + "id": 5380, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2031 + } }, { + "id": 5381, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2032 + } }, { + "id": 5382, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2033 + } }, { + "id": 5383, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2034 + } }, { + "id": 5384, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2035 + } }, { + "id": 5385, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2036 + } }, { + "id": 5386, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2037 + } }, { + "id": 5387, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2038 + } }, { + "id": 5388, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2039 + } }, { + "id": 5389, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2040 + } }, { + "id": 5390, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2041 + } }, { + "id": 5391, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2042 + } }, { + "id": 5392, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2043 + } }, { + "id": 5393, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2044 + } }, { + "id": 5394, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2045 + } }, { + "id": 5395, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2046 + } }, { + "id": 5396, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2047 + } }, { + "id": 5397, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2048 + } }, { + "id": 5398, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2049 + } }, { + "id": 5399, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2050 + } }, { + "id": 5400, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2051 + } }, { + "id": 5401, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2052 + } }, { + "id": 5402, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2053 + } }, { + "id": 5403, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2054 + } }, { + "id": 5404, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2055 + } }, { + "id": 5405, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2056 + } }, { + "id": 5406, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2057 + } }, { + "id": 5407, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2058 + } }, { + "id": 5408, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2059 + } }, { + "id": 5409, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2060 + } }, { + "id": 5410, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2061 + } }, { + "id": 5411, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2062 + } }, { + "id": 5412, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2063 + } }, { + "id": 5413, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2064 + } }, { + "id": 5414, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2065 + } }, { + "id": 5415, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2066 + } }, { + "id": 5416, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2067 + } }, { + "id": 5417, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2068 + } }, { + "id": 5418, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2069 + } }, { + "id": 5419, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 2070 + } }, { + "id": 5420, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 2071 + } }, { + "id": 5421, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2072 + } }, { + "id": 5422, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2073 + } }, { + "id": 5423, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2074 + } }, { + "id": 5424, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2075 + } }, { + "id": 5425, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2076 + } }, { + "id": 5426, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2077 + } }, { + "id": 5427, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2078 + } }, { + "id": 5428, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2079 + } }, { + "id": 5429, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 2080 + } }, { + "id": 5430, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 2081 + } }, { + "id": 5431, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 2082 + } }, { + "id": 5432, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 2083 + } }, { + "id": 5433, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 2084 + } }, { + "id": 5434, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 2085 + } }, { + "id": 5435, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 2086 + } }, { + "id": 5436, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 2087 + } }, { + "id": 5437, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 2088 + } }, { + "id": 5438, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 2089 + } } ] }, - "minecraft:chest": { + "minecraft:brick_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "type": [ - "single", - "left", - "right" + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 11748, "properties": { - "facing": "north", - "type": "single", - "waterlogged": "true" - }, - "id": 2090 - }, - { - "properties": { - "facing": "north", - "type": "single", - "waterlogged": "false" - }, - "id": 2091, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 11749, "properties": { - "facing": "north", - "type": "left", - "waterlogged": "true" - }, - "id": 2092 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11750, "properties": { - "facing": "north", - "type": "left", - "waterlogged": "false" - }, - "id": 2093 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 11751, "properties": { - "facing": "north", - "type": "right", - "waterlogged": "true" - }, - "id": 2094 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 11752, "properties": { - "facing": "north", - "type": "right", - "waterlogged": "false" - }, - "id": 2095 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11753, "properties": { - "facing": "south", - "type": "single", - "waterlogged": "true" - }, - "id": 2096 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11754, "properties": { - "facing": "south", - "type": "single", - "waterlogged": "false" - }, - "id": 2097 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 11755, "properties": { - "facing": "south", - "type": "left", - "waterlogged": "true" - }, - "id": 2098 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11756, "properties": { - "facing": "south", - "type": "left", - "waterlogged": "false" - }, - "id": 2099 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11757, "properties": { - "facing": "south", - "type": "right", - "waterlogged": "true" - }, - "id": 2100 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 11758, "properties": { - "facing": "south", - "type": "right", - "waterlogged": "false" - }, - "id": 2101 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11759, "properties": { - "facing": "west", - "type": "single", - "waterlogged": "true" - }, - "id": 2102 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11760, "properties": { - "facing": "west", - "type": "single", - "waterlogged": "false" - }, - "id": 2103 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 11761, "properties": { - "facing": "west", - "type": "left", - "waterlogged": "true" - }, - "id": 2104 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11762, "properties": { - "facing": "west", - "type": "left", - "waterlogged": "false" - }, - "id": 2105 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11763, "properties": { - "facing": "west", - "type": "right", - "waterlogged": "true" - }, - "id": 2106 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 11764, "properties": { - "facing": "west", - "type": "right", - "waterlogged": "false" - }, - "id": 2107 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11765, "properties": { - "facing": "east", - "type": "single", - "waterlogged": "true" - }, - "id": 2108 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11766, "properties": { - "facing": "east", - "type": "single", - "waterlogged": "false" - }, - "id": 2109 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 11767, "properties": { - "facing": "east", - "type": "left", - "waterlogged": "true" - }, - "id": 2110 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11768, "properties": { - "facing": "east", - "type": "left", - "waterlogged": "false" - }, - "id": 2111 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11769, "properties": { - "facing": "east", - "type": "right", - "waterlogged": "true" - }, - "id": 2112 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 11770, "properties": { - "facing": "east", - "type": "right", - "waterlogged": "false" - }, - "id": 2113 - } - ] - }, - "minecraft:redstone_wire": { - "properties": { - "east": [ - "up", - "side", - "none" - ], - "north": [ - "up", - "side", - "none" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "south": [ - "up", - "side", - "none" - ], - "west": [ - "up", - "side", - "none" - ] - }, - "states": [ - { - "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2114 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11771, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2115 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11772, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2116 + } }, { + "id": 11773, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2117 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11774, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2118 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11775, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2119 + } }, { + "id": 11776, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2120 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11777, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2121 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11778, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2122 + } }, { + "id": 11779, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2123 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11780, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2124 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11781, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2125 + } }, { + "id": 11782, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2126 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11783, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2127 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11784, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2128 + } }, { + "id": 11785, "properties": { - "east": "up", - "north": "up", - "power": "1", + "east": "none", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2129 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11786, "properties": { - "east": "up", - "north": "up", - "power": "1", + "east": "none", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2130 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11787, "properties": { - "east": "up", - "north": "up", - "power": "1", + "east": "none", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2131 + } }, { + "id": 11788, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2132 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11789, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2133 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11790, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2134 + } }, { + "id": 11791, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2135 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11792, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2136 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11793, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2137 + } }, { + "id": 11794, "properties": { - "east": "up", - "north": "up", - "power": "2", + "east": "none", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2138 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11795, "properties": { - "east": "up", - "north": "up", - "power": "2", + "east": "none", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2139 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11796, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "none", + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2140 + } }, { + "id": 11797, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2141 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11798, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2142 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11799, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2143 + } }, { + "id": 11800, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2144 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11801, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2145 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11802, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2146 + } }, { + "id": 11803, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2147 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11804, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2148 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11805, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2149 + } }, { + "id": 11806, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2150 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11807, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2151 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11808, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2152 + } }, { + "id": 11809, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2153 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11810, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2154 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11811, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2155 + } }, { + "id": 11812, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2156 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11813, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2157 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11814, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2158 + } }, { + "id": 11815, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2159 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11816, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2160 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11817, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2161 + } }, { + "id": 11818, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2162 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11819, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2163 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11820, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2164 + } }, { + "id": 11821, "properties": { - "east": "up", - "north": "up", - "power": "5", + "east": "none", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2165 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11822, "properties": { - "east": "up", - "north": "up", - "power": "5", + "east": "none", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2166 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11823, "properties": { - "east": "up", - "north": "up", - "power": "5", + "east": "none", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2167 + } }, { + "id": 11824, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2168 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11825, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2169 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11826, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2170 + } }, { + "id": 11827, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2171 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11828, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2172 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11829, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2173 + } }, { + "id": 11830, "properties": { - "east": "up", - "north": "up", - "power": "6", + "east": "none", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2174 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11831, "properties": { - "east": "up", - "north": "up", - "power": "6", + "east": "none", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2175 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11832, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "none", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2176 + } }, { + "id": 11833, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2177 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11834, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2178 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11835, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2179 + } }, { + "id": 11836, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2180 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11837, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2181 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11838, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2182 + } }, { + "id": 11839, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2183 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11840, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2184 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11841, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2185 + } }, { + "id": 11842, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2186 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11843, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2187 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11844, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2188 + } }, { + "id": 11845, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2189 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11846, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2190 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11847, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2191 + } }, { + "id": 11848, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2192 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11849, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2193 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11850, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2194 + } }, { + "id": 11851, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2195 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11852, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2196 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11853, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2197 + } }, { + "id": 11854, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2198 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11855, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2199 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11856, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2200 + } }, { + "id": 11857, "properties": { - "east": "up", - "north": "up", - "power": "9", + "east": "low", + "north": "none", "south": "none", - "west": "up" - }, - "id": 2201 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11858, "properties": { - "east": "up", - "north": "up", - "power": "9", + "east": "low", + "north": "none", "south": "none", - "west": "side" - }, - "id": 2202 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11859, "properties": { - "east": "up", - "north": "up", - "power": "9", + "east": "low", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2203 + } }, { + "id": 11860, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2204 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11861, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2205 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11862, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2206 + } }, { + "id": 11863, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2207 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11864, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2208 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11865, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2209 + } }, { + "id": 11866, "properties": { - "east": "up", - "north": "up", - "power": "10", + "east": "low", + "north": "none", "south": "none", - "west": "up" - }, - "id": 2210 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11867, "properties": { - "east": "up", - "north": "up", - "power": "10", + "east": "low", + "north": "none", "south": "none", - "west": "side" - }, - "id": 2211 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11868, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "none", + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2212 + } }, { + "id": 11869, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2213 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11870, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2214 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11871, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2215 + } }, { + "id": 11872, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2216 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11873, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2217 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11874, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2218 + } }, { + "id": 11875, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2219 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11876, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2220 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11877, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2221 + } }, { + "id": 11878, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2222 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11879, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2223 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11880, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2224 + } }, { + "id": 11881, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2225 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11882, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2226 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11883, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2227 + } }, { + "id": 11884, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2228 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11885, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2229 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11886, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2230 + } }, { + "id": 11887, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2231 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11888, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2232 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11889, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2233 + } }, { + "id": 11890, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2234 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11891, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2235 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11892, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2236 + } }, { + "id": 11893, "properties": { - "east": "up", - "north": "up", - "power": "13", + "east": "low", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2237 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11894, "properties": { - "east": "up", - "north": "up", - "power": "13", + "east": "low", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2238 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11895, "properties": { - "east": "up", - "north": "up", - "power": "13", + "east": "low", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2239 + } }, { + "id": 11896, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2240 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11897, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2241 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11898, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2242 + } }, { + "id": 11899, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2243 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11900, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2244 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11901, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2245 + } }, { + "id": 11902, "properties": { - "east": "up", - "north": "up", - "power": "14", + "east": "low", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2246 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11903, "properties": { - "east": "up", - "north": "up", - "power": "14", + "east": "low", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2247 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11904, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "none", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2248 + } }, { + "id": 11905, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2249 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11906, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2250 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11907, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2251 + } }, { + "id": 11908, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2252 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11909, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2253 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11910, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2254 + } }, { + "id": 11911, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2255 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11912, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2256 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11913, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2257 - }, - { - "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2258 + } }, { + "id": 11914, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2259 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11915, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 11916, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2260 + } }, { + "id": 11917, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2261 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11918, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2262 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11919, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2263 + } }, { + "id": 11920, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2264 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11921, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2265 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11922, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2266 + } }, { + "id": 11923, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2267 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11924, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2268 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11925, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2269 + } }, { + "id": 11926, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2270 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11927, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2271 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11928, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2272 + } }, { + "id": 11929, "properties": { - "east": "up", - "north": "side", - "power": "1", + "east": "low", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2273 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11930, "properties": { - "east": "up", - "north": "side", - "power": "1", + "east": "low", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2274 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11931, "properties": { - "east": "up", - "north": "side", - "power": "1", + "east": "low", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2275 + } }, { + "id": 11932, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2276 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11933, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2277 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11934, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2278 + } }, { + "id": 11935, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2279 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11936, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2280 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11937, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2281 + } }, { + "id": 11938, "properties": { - "east": "up", - "north": "side", - "power": "2", + "east": "low", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2282 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11939, "properties": { - "east": "up", - "north": "side", - "power": "2", + "east": "low", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2283 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11940, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2284 + } }, { + "id": 11941, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2285 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11942, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2286 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11943, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2287 + } }, { + "id": 11944, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2288 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11945, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2289 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11946, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2290 + } }, { + "id": 11947, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2291 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11948, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2292 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11949, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2293 + } }, { + "id": 11950, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2294 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11951, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2295 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11952, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2296 + } }, { + "id": 11953, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2297 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11954, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2298 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11955, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2299 + } }, { + "id": 11956, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2300 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11957, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2301 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11958, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2302 + } }, { + "id": 11959, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2303 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11960, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2304 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11961, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2305 + } }, { + "id": 11962, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2306 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11963, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2307 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11964, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2308 + } }, { + "id": 11965, "properties": { - "east": "up", - "north": "side", - "power": "5", + "east": "tall", + "north": "none", "south": "none", - "west": "up" - }, - "id": 2309 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11966, "properties": { - "east": "up", - "north": "side", - "power": "5", + "east": "tall", + "north": "none", "south": "none", - "west": "side" - }, - "id": 2310 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11967, "properties": { - "east": "up", - "north": "side", - "power": "5", + "east": "tall", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2311 + } }, { + "id": 11968, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2312 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11969, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2313 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11970, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2314 + } }, { + "id": 11971, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2315 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11972, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2316 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11973, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2317 + } }, { + "id": 11974, "properties": { - "east": "up", - "north": "side", - "power": "6", + "east": "tall", + "north": "none", "south": "none", - "west": "up" - }, - "id": 2318 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11975, "properties": { - "east": "up", - "north": "side", - "power": "6", + "east": "tall", + "north": "none", "south": "none", - "west": "side" - }, - "id": 2319 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11976, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2320 + } }, { + "id": 11977, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2321 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11978, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2322 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11979, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2323 + } }, { + "id": 11980, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2324 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11981, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2325 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11982, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2326 + } }, { + "id": 11983, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2327 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11984, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2328 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11985, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2329 + } }, { + "id": 11986, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2330 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11987, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2331 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11988, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2332 + } }, { + "id": 11989, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2333 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11990, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2334 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11991, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2335 + } }, { + "id": 11992, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2336 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11993, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2337 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 11994, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2338 + } }, { + "id": 11995, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2339 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 11996, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2340 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 11997, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2341 + } }, { + "id": 11998, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2342 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 11999, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2343 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12000, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2344 + } }, { + "id": 12001, "properties": { - "east": "up", - "north": "side", - "power": "9", + "east": "tall", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2345 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12002, "properties": { - "east": "up", - "north": "side", - "power": "9", + "east": "tall", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2346 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12003, "properties": { - "east": "up", - "north": "side", - "power": "9", + "east": "tall", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2347 + } }, { + "id": 12004, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2348 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12005, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2349 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12006, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2350 + } }, { + "id": 12007, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2351 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12008, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2352 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12009, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2353 + } }, { + "id": 12010, "properties": { - "east": "up", - "north": "side", - "power": "10", + "east": "tall", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2354 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12011, "properties": { - "east": "up", - "north": "side", - "power": "10", + "east": "tall", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2355 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12012, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2356 + } }, { + "id": 12013, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2357 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12014, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2358 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12015, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2359 + } }, { + "id": 12016, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2360 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12017, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2361 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12018, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2362 + } }, { + "id": 12019, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2363 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12020, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2364 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12021, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2365 + } }, { + "id": 12022, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2366 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12023, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2367 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12024, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2368 + } }, { + "id": 12025, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2369 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12026, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2370 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12027, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2371 + } }, { + "id": 12028, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2372 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12029, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2373 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12030, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2374 + } }, { + "id": 12031, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2375 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12032, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2376 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12033, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2377 + } }, { + "id": 12034, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2378 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12035, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2379 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12036, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2380 + } }, { + "id": 12037, "properties": { - "east": "up", - "north": "side", - "power": "13", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2381 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12038, "properties": { - "east": "up", - "north": "side", - "power": "13", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2382 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12039, "properties": { - "east": "up", - "north": "side", - "power": "13", + "east": "tall", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2383 + } }, { + "id": 12040, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2384 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12041, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2385 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12042, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2386 + } }, { + "id": 12043, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2387 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12044, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2388 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12045, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2389 + } }, { + "id": 12046, "properties": { - "east": "up", - "north": "side", - "power": "14", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 2390 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12047, "properties": { - "east": "up", - "north": "side", - "power": "14", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 2391 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12048, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2392 + } }, { + "id": 12049, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2393 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12050, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2394 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12051, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2395 + } }, { + "id": 12052, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2396 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12053, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2397 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12054, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2398 + } }, { + "id": 12055, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2399 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12056, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2400 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12057, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2401 + } }, { + "id": 12058, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2402 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12059, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2403 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12060, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2404 + } }, { + "id": 12061, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2405 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12062, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2406 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12063, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2407 + } }, { + "id": 12064, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2408 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12065, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2409 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12066, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2410 + } }, { + "id": 12067, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2411 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12068, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2412 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12069, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2413 + } }, { + "id": 12070, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2414 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12071, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2415 - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "states": [ { - "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2416 - }, + "default": true, + "id": 1683 + } + ] + }, + "minecraft:brown_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8830, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2417 + "rotation": "0" + } }, { + "id": 8831, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2418 + "rotation": "1" + } }, { + "id": 8832, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2419 + "rotation": "2" + } }, { + "id": 8833, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2420 + "rotation": "3" + } }, { + "id": 8834, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2421 + "rotation": "4" + } }, { + "id": 8835, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2422 + "rotation": "5" + } }, { + "id": 8836, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2423 + "rotation": "6" + } }, { + "id": 8837, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2424 + "rotation": "7" + } }, { + "id": 8838, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2425 + "rotation": "8" + } }, { + "id": 8839, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2426 + "rotation": "9" + } }, { + "id": 8840, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2427 + "rotation": "10" + } }, { + "id": 8841, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2428 + "rotation": "11" + } }, { + "id": 8842, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2429 + "rotation": "12" + } }, { + "id": 8843, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2430 + "rotation": "13" + } }, { + "id": 8844, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2431 + "rotation": "14" + } }, { + "id": 8845, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2432 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1471, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2433 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1472, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2434 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1473, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2435 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1474, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2436 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1475, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2437 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1476, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2438 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1477, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2439 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1478, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2440 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1479, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2441 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1480, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2442 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1481, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2443 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1482, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2444 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1483, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2445 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1484, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2446 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1485, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2447 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1486, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2448 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18521, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2449 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18522, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2450 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18523, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2451 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18524, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2452 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18525, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2453 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18526, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2454 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18527, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2455 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18528, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2456 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18529, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2457 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18530, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2458 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18531, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2459 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18532, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2460 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18533, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2461 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18534, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2462 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18535, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2463 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18536, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2464 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18611, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2465 + "lit": "true" + } }, { + "default": true, + "id": 18612, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2466 - }, + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "states": [ { - "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2467 - }, + "default": true, + "id": 8619 + } + ] + }, + "minecraft:brown_concrete": { + "states": [ + { + "default": true, + "id": 10331 + } + ] + }, + "minecraft:brown_concrete_powder": { + "states": [ + { + "default": true, + "id": 10347 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10303, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2468 + "facing": "north" + } }, { + "id": 10304, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2469 + "facing": "south" + } }, { + "id": 10305, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2470 + "facing": "west" + } }, { + "id": 10306, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2471 - }, + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "states": [ + { + "default": true, + "id": 1679 + } + ] + }, + "minecraft:brown_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 4880, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2472 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4881, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2473 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4882, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2474 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4883, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2475 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4884, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2476 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4885, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2477 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4886, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2478 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4887, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2479 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4888, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2480 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4889, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2481 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4890, "properties": { - "east": "up", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2482 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4891, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2483 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4892, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2484 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4893, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2485 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4894, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2486 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4895, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2487 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4896, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2488 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4897, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2489 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4898, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2490 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4899, "properties": { - "east": "up", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2491 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4900, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2492 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4901, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2493 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4902, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2494 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4903, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2495 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4904, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2496 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4905, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2497 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4906, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2498 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4907, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2499 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4908, "properties": { - "east": "up", - "north": "none", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2500 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4909, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2501 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4910, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2502 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4911, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2503 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4912, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2504 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4913, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2505 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4914, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2506 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4915, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2507 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4916, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2508 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4917, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2509 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4918, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2510 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4919, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2511 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4920, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2512 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4921, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2513 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4922, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2514 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4923, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2515 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4924, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2516 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4925, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2517 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4926, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2518 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4927, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2519 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4928, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2520 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4929, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2521 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4930, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2522 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4931, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2523 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4932, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2524 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4933, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2525 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4934, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2526 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4935, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2527 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4936, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2528 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4937, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2529 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4938, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2530 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4939, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2531 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4940, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2532 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4941, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2533 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4942, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2534 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4943, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2535 - }, + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10231, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2536 + "facing": "north" + } }, { + "id": 10232, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2537 + "facing": "east" + } }, { + "id": 10233, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2538 + "facing": "south" + } }, { + "id": 10234, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2539 + "facing": "west" + } }, { + "default": true, + "id": 10235, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2540 + "facing": "up" + } }, { + "id": 10236, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2541 - }, + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "states": [ + { + "default": true, + "id": 4416 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7876, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2542 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7877, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2543 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7878, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2544 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7879, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2545 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7880, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2546 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7881, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2547 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7882, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2548 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7883, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2549 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7884, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2550 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7885, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2551 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7886, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2552 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7887, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2553 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7888, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2554 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7889, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2555 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7890, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2556 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7891, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2557 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7892, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2558 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7893, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2559 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7894, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2560 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7895, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2561 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7896, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2562 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7897, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2563 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7898, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2564 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7899, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2565 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7900, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2566 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7901, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2567 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7902, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2568 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7903, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2569 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7904, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2570 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7905, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2571 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7906, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2572 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7907, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2573 - }, + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "states": [ + { + "default": true, + "id": 7488 + } + ] + }, + "minecraft:brown_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8942, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2574 + "facing": "north" + } }, { + "id": 8943, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2575 + "facing": "south" + } }, { + "id": 8944, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2576 + "facing": "west" + } }, { + "id": 8945, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2577 - }, + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "states": [ + { + "default": true, + "id": 1650 + } + ] + }, + "minecraft:bubble_column": { + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10548, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2578 + "drag": "true" + } }, { + "id": 10549, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2579 - }, + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10415, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2580 + "waterlogged": "true" + } }, { + "id": 10416, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2581 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "states": [ + { + "default": true, + "id": 10398 + } + ] + }, + "minecraft:bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10435, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2582 + "waterlogged": "true" + } }, { + "id": 10436, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2583 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10497, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2584 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10498, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2585 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10499, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2586 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10500, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2587 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10501, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2588 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10502, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2589 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10503, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2590 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10504, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2591 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "states": [ + { + "default": true, + "id": 18620 + } + ] + }, + "minecraft:cactus": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 4240, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2592 + "age": "0" + } }, { + "id": 4241, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2593 + "age": "1" + } }, { + "id": 4242, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2594 + "age": "2" + } }, { + "id": 4243, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2595 + "age": "3" + } }, { + "id": 4244, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2596 + "age": "4" + } }, { + "id": 4245, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2597 + "age": "5" + } }, { + "id": 4246, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2598 + "age": "6" + } }, { + "id": 4247, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2599 + "age": "7" + } }, { + "id": 4248, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2600 + "age": "8" + } }, { + "id": 4249, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2601 + "age": "9" + } }, { + "id": 4250, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2602 + "age": "10" + } }, { + "id": 4251, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2603 + "age": "11" + } }, { + "id": 4252, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2604 + "age": "12" + } }, { + "id": 4253, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2605 + "age": "13" + } }, { + "id": 4254, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2606 + "age": "14" + } }, { + "id": 4255, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2607 - }, + "age": "15" + } + } + ] + }, + "minecraft:cake": { + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ { + "default": true, + "id": 4333, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2608 + "bites": "0" + } }, { + "id": 4334, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2609 + "bites": "1" + } }, { + "id": 4335, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2610 + "bites": "2" + } }, { + "id": 4336, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2611 + "bites": "3" + } }, { + "id": 4337, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2612 + "bites": "4" + } }, { + "id": 4338, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2613 + "bites": "5" + } }, { + "id": 4339, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2614 - }, + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "states": [ + { + "default": true, + "id": 18670 + } + ] + }, + "minecraft:campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16099, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2615 + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16100, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2616 + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16101, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2617 + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 16102, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2618 + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16103, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2619 + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16104, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2620 + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16105, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2621 + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16106, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2622 + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16107, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2623 + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16108, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2624 + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16109, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2625 + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16110, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2626 + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16111, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2627 + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16112, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2628 + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16113, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2629 + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16114, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2630 + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16115, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2631 + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16116, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2632 + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16117, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2633 + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16118, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2634 + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16119, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2635 + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16120, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2636 + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16121, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2637 + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16122, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2638 + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16123, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2639 + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16124, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2640 + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16125, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2641 + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16126, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2642 + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } }, { + "id": 16127, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2643 + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } }, { + "id": 16128, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2644 + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } }, { + "id": 16129, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2645 + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } }, { + "id": 16130, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2646 - }, + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18313, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2647 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18314, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2648 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18315, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2649 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18316, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2650 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18317, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2651 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18318, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2652 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18319, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2653 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18320, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2654 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18321, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2655 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18322, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2656 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18323, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2657 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18324, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2658 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18325, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2659 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18326, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2660 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18327, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2661 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18328, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2662 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18585, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2663 + "lit": "true" + } }, { + "default": true, + "id": 18586, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2664 - }, + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ { + "default": true, + "id": 6923, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2665 + "age": "0" + } }, { + "id": 6924, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2666 + "age": "1" + } }, { + "id": 6925, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2667 + "age": "2" + } }, { + "id": 6926, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2668 + "age": "3" + } }, { + "id": 6927, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2669 + "age": "4" + } }, { + "id": 6928, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2670 + "age": "5" + } }, { + "id": 6929, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2671 + "age": "6" + } }, { + "id": 6930, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2672 - }, + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "states": [ + { + "default": true, + "id": 16024 + } + ] + }, + "minecraft:carved_pumpkin": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 4325, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2673 + "facing": "north" + } }, { + "id": 4326, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2674 + "facing": "south" + } }, { + "id": 4327, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2675 + "facing": "west" + } }, { + "id": 4328, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2676 - }, + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "states": [ + { + "default": true, + "id": 5728 + } + ] + }, + "minecraft:cave_air": { + "states": [ + { + "default": true, + "id": 10547 + } + ] + }, + "minecraft:cave_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19659, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2677 + "age": "0", + "berries": "true" + } }, { + "default": true, + "id": 19660, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2678 + "age": "0", + "berries": "false" + } }, { + "id": 19661, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2679 + "age": "1", + "berries": "true" + } }, { + "id": 19662, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2680 + "age": "1", + "berries": "false" + } }, { + "id": 19663, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2681 + "age": "2", + "berries": "true" + } }, { + "id": 19664, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2682 + "age": "2", + "berries": "false" + } }, { + "id": 19665, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2683 + "age": "3", + "berries": "true" + } }, { + "id": 19666, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2684 + "age": "3", + "berries": "false" + } }, { + "id": 19667, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2685 + "age": "4", + "berries": "true" + } }, { + "id": 19668, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2686 + "age": "4", + "berries": "false" + } }, { + "id": 19669, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2687 + "age": "5", + "berries": "true" + } }, { + "id": 19670, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2688 + "age": "5", + "berries": "false" + } }, { + "id": 19671, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2689 + "age": "6", + "berries": "true" + } }, { + "id": 19672, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2690 + "age": "6", + "berries": "false" + } }, { + "id": 19673, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2691 + "age": "7", + "berries": "true" + } }, { + "id": 19674, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2692 + "age": "7", + "berries": "false" + } }, { + "id": 19675, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2693 + "age": "8", + "berries": "true" + } }, { + "id": 19676, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2694 + "age": "8", + "berries": "false" + } }, { + "id": 19677, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2695 + "age": "9", + "berries": "true" + } }, { + "id": 19678, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2696 + "age": "9", + "berries": "false" + } }, { + "id": 19679, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2697 + "age": "10", + "berries": "true" + } }, { + "id": 19680, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2698 + "age": "10", + "berries": "false" + } }, { + "id": 19681, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2699 + "age": "11", + "berries": "true" + } }, { + "id": 19682, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2700 + "age": "11", + "berries": "false" + } }, { + "id": 19683, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2701 + "age": "12", + "berries": "true" + } }, { + "id": 19684, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2702 + "age": "12", + "berries": "false" + } }, { + "id": 19685, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2703 + "age": "13", + "berries": "true" + } }, { + "id": 19686, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2704 + "age": "13", + "berries": "false" + } }, { + "id": 19687, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2705 + "age": "14", + "berries": "true" + } }, { + "id": 19688, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2706 + "age": "14", + "berries": "false" + } }, { + "id": 19689, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2707 + "age": "15", + "berries": "true" + } }, { + "id": 19690, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2708 + "age": "15", + "berries": "false" + } }, { + "id": 19691, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2709 + "age": "16", + "berries": "true" + } }, { + "id": 19692, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2710 + "age": "16", + "berries": "false" + } }, { + "id": 19693, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2711 + "age": "17", + "berries": "true" + } }, { + "id": 19694, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2712 + "age": "17", + "berries": "false" + } }, { + "id": 19695, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2713 + "age": "18", + "berries": "true" + } }, { + "id": 19696, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2714 + "age": "18", + "berries": "false" + } }, { + "id": 19697, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2715 + "age": "19", + "berries": "true" + } }, { + "id": 19698, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2716 + "age": "19", + "berries": "false" + } }, { + "id": 19699, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2717 + "age": "20", + "berries": "true" + } }, { + "id": 19700, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2718 + "age": "20", + "berries": "false" + } }, { + "id": 19701, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2719 + "age": "21", + "berries": "true" + } }, { + "id": 19702, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2720 + "age": "21", + "berries": "false" + } }, { + "id": 19703, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2721 + "age": "22", + "berries": "true" + } }, { + "id": 19704, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2722 + "age": "22", + "berries": "false" + } }, { + "id": 19705, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2723 + "age": "23", + "berries": "true" + } }, { + "id": 19706, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2724 + "age": "23", + "berries": "false" + } }, { + "id": 19707, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2725 + "age": "24", + "berries": "true" + } }, { + "id": 19708, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2726 + "age": "24", + "berries": "false" + } }, { + "id": 19709, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2727 + "age": "25", + "berries": "true" + } }, { + "id": 19710, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2728 - }, + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19711, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2729 + "berries": "true" + } }, { + "default": true, + "id": 19712, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2730 - }, + "berries": "false" + } + } + ] + }, + "minecraft:chain": { + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 5104, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2731 + "axis": "x", + "waterlogged": "true" + } }, { + "id": 5105, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2732 + "axis": "x", + "waterlogged": "false" + } }, { + "id": 5106, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2733 + "axis": "y", + "waterlogged": "true" + } }, { + "default": true, + "id": 5107, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2734 + "axis": "y", + "waterlogged": "false" + } }, { + "id": 5108, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2735 + "axis": "z", + "waterlogged": "true" + } }, { + "id": 5109, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2736 - }, + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10118, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2737 + "conditional": "true", + "facing": "north" + } }, { + "id": 10119, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2738 + "conditional": "true", + "facing": "east" + } }, { + "id": 10120, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2739 + "conditional": "true", + "facing": "south" + } }, { + "id": 10121, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2740 + "conditional": "true", + "facing": "west" + } }, { + "id": 10122, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2741 + "conditional": "true", + "facing": "up" + } }, { + "id": 10123, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2742 + "conditional": "true", + "facing": "down" + } }, { + "default": true, + "id": 10124, "properties": { - "east": "side", - "north": "side", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2743 + "conditional": "false", + "facing": "north" + } }, { + "id": 10125, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2744 + "conditional": "false", + "facing": "east" + } }, { + "id": 10126, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2745 + "conditional": "false", + "facing": "south" + } }, { + "id": 10127, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2746 + "conditional": "false", + "facing": "west" + } }, { + "id": 10128, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2747 + "conditional": "false", + "facing": "up" + } }, { + "id": 10129, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2748 - }, + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 2288, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2749 + "type": "single", + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 2289, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2750 + "type": "single", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 2290, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2751 + "type": "left", + "facing": "north", + "waterlogged": "true" + } }, { + "id": 2291, "properties": { - "east": "side", - "north": "side", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2752 + "type": "left", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 2292, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2753 + "type": "right", + "facing": "north", + "waterlogged": "true" + } }, { + "id": 2293, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2754 + "type": "right", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 2294, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2755 + "type": "single", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 2295, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2756 + "type": "single", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 2296, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2757 + "type": "left", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 2297, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2758 + "type": "left", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 2298, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2759 + "type": "right", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 2299, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2760 + "type": "right", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 2300, "properties": { - "east": "side", - "north": "side", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2761 + "type": "single", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 2301, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2762 + "type": "single", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 2302, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2763 + "type": "left", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 2303, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2764 + "type": "left", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 2304, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2765 + "type": "right", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 2305, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2766 + "type": "right", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 2306, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2767 + "type": "single", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 2307, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2768 + "type": "single", + "facing": "east", + "waterlogged": "false" + } }, { + "id": 2308, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2769 + "type": "left", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 2309, "properties": { - "east": "side", - "north": "side", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2770 + "type": "left", + "facing": "east", + "waterlogged": "false" + } }, { + "id": 2310, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2771 + "type": "right", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 2311, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2772 - }, + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 7231, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2773 + "facing": "north" + } }, { + "id": 7232, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2774 + "facing": "south" + } }, { + "id": 7233, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2775 + "facing": "west" + } }, { + "id": 7234, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2776 - }, + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_deepslate": { + "states": [ + { + "default": true, + "id": 21425 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "states": [ + { + "default": true, + "id": 18310 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "states": [ + { + "default": true, + "id": 17462 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "states": [ + { + "default": true, + "id": 7356 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "states": [ + { + "default": true, + "id": 8959 + } + ] + }, + "minecraft:chiseled_sandstone": { + "states": [ + { + "default": true, + "id": 477 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 4871 + } + ] + }, + "minecraft:chorus_flower": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ { + "default": true, + "id": 10009, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2777 + "age": "0" + } }, { + "id": 10010, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2778 + "age": "1" + } }, { + "id": 10011, "properties": { - "east": "side", - "north": "side", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2779 + "age": "2" + } }, { + "id": 10012, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2780 + "age": "3" + } }, { + "id": 10013, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2781 + "age": "4" + } }, { + "id": 10014, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2782 - }, + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9945, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2783 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9946, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2784 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9947, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2785 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9948, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2786 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9949, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2787 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9950, "properties": { - "east": "side", - "north": "side", - "power": "10", - "south": "none", - "west": "none" - }, - "id": 2788 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9951, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2789 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9952, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2790 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9953, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "up", - "west": "none" - }, - "id": 2791 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9954, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2792 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9955, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2793 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9956, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "side", - "west": "none" - }, - "id": 2794 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9957, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 2795 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9958, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 2796 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9959, "properties": { - "east": "side", - "north": "side", - "power": "11", - "south": "none", - "west": "none" - }, - "id": 2797 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9960, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2798 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9961, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2799 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9962, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "up", - "west": "none" - }, - "id": 2800 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9963, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2801 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9964, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2802 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9965, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "side", - "west": "none" - }, - "id": 2803 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9966, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2804 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9967, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2805 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9968, "properties": { - "east": "side", - "north": "side", - "power": "12", - "south": "none", - "west": "none" - }, - "id": 2806 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9969, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2807 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9970, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2808 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9971, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "up", - "west": "none" - }, - "id": 2809 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9972, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2810 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9973, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2811 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9974, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "side", - "west": "none" - }, - "id": 2812 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9975, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2813 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9976, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2814 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9977, "properties": { - "east": "side", - "north": "side", - "power": "13", - "south": "none", - "west": "none" - }, - "id": 2815 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9978, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2816 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9979, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2817 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9980, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "up", - "west": "none" - }, - "id": 2818 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9981, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2819 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9982, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2820 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9983, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "side", - "west": "none" - }, - "id": 2821 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9984, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2822 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9985, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2823 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9986, "properties": { - "east": "side", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 2824 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9987, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2825 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9988, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2826 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9989, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 2827 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9990, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2828 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9991, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2829 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 9992, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 2830 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 9993, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 2831 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 9994, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 2832 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 9995, "properties": { - "east": "side", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 2833 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 9996, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2834 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 9997, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2835 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 9998, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 2836 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 9999, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2837 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 10000, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2838 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 10001, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 2839 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 10002, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2840 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 10003, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2841 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 10004, "properties": { - "east": "side", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 2842 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 10005, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2843 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 10006, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2844 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 10007, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 2845 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "default": true, + "id": 10008, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2846 - }, + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "states": [ + { + "default": true, + "id": 4256 + } + ] + }, + "minecraft:coal_block": { + "states": [ + { + "default": true, + "id": 8624 + } + ] + }, + "minecraft:coal_ore": { + "states": [ + { + "default": true, + "id": 114 + } + ] + }, + "minecraft:coarse_dirt": { + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "states": [ + { + "default": true, + "id": 19781 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19862, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2847 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19863, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 2848 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19864, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2849 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19865, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2850 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19866, "properties": { - "east": "side", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 2851 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19867, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2852 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19782, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19783, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2853 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19784, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 2854 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19785, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2855 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19786, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 2856 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19787, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 2857 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19788, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 2858 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19789, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 2859 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19790, "properties": { - "east": "side", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 2860 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19791, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 2861 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19792, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 2862 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19793, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 2863 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19794, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 2864 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19795, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 2865 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19796, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 2866 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19797, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 2867 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19798, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 2868 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19799, "properties": { - "east": "side", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 2869 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19800, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 2870 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19801, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 2871 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19802, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 2872 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19803, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 2873 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19804, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 2874 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19805, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 2875 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19806, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 2876 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19807, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 2877 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19808, "properties": { - "east": "side", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 2878 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19809, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 2879 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19810, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 2880 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19811, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 2881 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19812, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 2882 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19813, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 2883 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19814, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 2884 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19815, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 2885 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19816, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 2886 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19817, "properties": { - "east": "side", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 2887 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19818, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 2888 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19819, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 2889 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19820, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 2890 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19821, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 2891 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19822, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 2892 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19823, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 2893 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19824, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 2894 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19825, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 2895 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19826, "properties": { - "east": "side", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 2896 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19827, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 2897 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19828, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 2898 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19829, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 2899 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19830, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 2900 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19831, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 2901 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19832, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 2902 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19833, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 2903 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19834, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 2904 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19835, "properties": { - "east": "side", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 2905 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19836, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 2906 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19837, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 2907 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19838, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 2908 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19839, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 2909 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19840, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 2910 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19841, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "side", - "west": "none" - }, - "id": 2911 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19842, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 2912 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19843, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 2913 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19844, "properties": { - "east": "side", - "north": "none", - "power": "8", - "south": "none", - "west": "none" - }, - "id": 2914 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19845, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 2915 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19846, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 2916 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19847, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "up", - "west": "none" - }, - "id": 2917 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19848, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 2918 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19849, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 2919 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19850, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "side", - "west": "none" - }, - "id": 2920 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19851, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 2921 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19852, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 2922 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19853, "properties": { - "east": "side", - "north": "none", - "power": "9", - "south": "none", - "west": "none" - }, - "id": 2923 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19854, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 2924 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19855, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 2925 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19856, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "up", - "west": "none" - }, - "id": 2926 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19857, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 2927 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19858, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 2928 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19859, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "side", - "west": "none" - }, - "id": 2929 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19860, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 2930 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19861, "properties": { - "east": "side", - "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 2931 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ { + "id": 19868, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "10", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2932 + } }, { + "id": 19869, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 2933 + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19870, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 2934 + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 19871, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "up", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2935 + } }, { + "id": 19872, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 2936 + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19873, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 2937 + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19874, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", - "south": "side", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2938 + } }, { + "id": 19875, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", "south": "none", - "west": "up" - }, - "id": 2939 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19876, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", "south": "none", - "west": "side" - }, - "id": 2940 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19877, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "11", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2941 + } }, { + "id": 19878, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 2942 + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19879, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 2943 + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19880, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "up", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2944 + } }, { + "id": 19881, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 2945 + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19882, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 2946 + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19883, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "side", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2947 + } }, { + "id": 19884, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 2948 + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19885, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 2949 + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19886, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "12", - "south": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2950 + } }, { + "id": 19887, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 2951 + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19888, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 2952 + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19889, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "up", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2953 + } }, { + "id": 19890, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 2954 + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19891, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 2955 + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19892, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "side", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2956 + } }, { + "id": 19893, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 2957 + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19894, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 2958 + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19895, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "13", - "south": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2959 + } }, { + "id": 19896, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 2960 + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19897, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 2961 + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19898, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "up", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2962 + } }, { + "id": 19899, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 2963 + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19900, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 2964 + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19901, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "side", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2965 + } }, { + "id": 19902, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 2966 + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19903, "properties": { - "east": "side", + "east": "none", "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 2967 + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19904, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "none", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2968 + } }, { + "id": 19905, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 2969 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19906, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 2970 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19907, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "up", + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2971 + } }, { + "id": 19908, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 2972 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19909, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 2973 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19910, "properties": { - "east": "side", - "north": "none", - "power": "15", - "south": "side", + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2974 + } }, { + "id": 19911, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "none", + "north": "low", "south": "none", - "west": "up" - }, - "id": 2975 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19912, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "none", + "north": "low", "south": "none", - "west": "side" - }, - "id": 2976 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19913, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "none", + "north": "low", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2977 + } }, { + "id": 19914, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 2978 + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19915, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 2979 + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19916, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "up", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2980 + } }, { + "id": 19917, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 2981 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19918, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 2982 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19919, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "side", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2983 + } }, { + "id": 19920, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 2984 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19921, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 2985 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19922, "properties": { "east": "none", - "north": "up", - "power": "0", - "south": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2986 + } }, { + "id": 19923, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 2987 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19924, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 2988 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19925, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "up", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 2989 + } }, { + "id": 19926, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 2990 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19927, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 2991 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19928, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "side", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 2992 + } }, { + "id": 19929, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 2993 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19930, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 2994 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19931, "properties": { "east": "none", - "north": "up", - "power": "1", - "south": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 2995 + } }, { + "id": 19932, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 2996 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19933, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 2997 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19934, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "up", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 2998 + } }, { + "id": 19935, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 2999 + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19936, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3000 + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19937, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "side", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3001 + } }, { + "id": 19938, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3002 + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19939, "properties": { "east": "none", - "north": "up", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3003 + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19940, "properties": { "east": "none", - "north": "up", - "power": "2", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3004 + } }, { + "id": 19941, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3005 + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19942, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3006 + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19943, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "up", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3007 + } }, { + "id": 19944, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3008 + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19945, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3009 + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19946, "properties": { "east": "none", - "north": "up", - "power": "3", - "south": "side", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3010 + } }, { + "id": 19947, "properties": { "east": "none", - "north": "up", - "power": "3", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 3011 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19948, "properties": { "east": "none", - "north": "up", - "power": "3", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 3012 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19949, "properties": { "east": "none", - "north": "up", - "power": "3", + "north": "tall", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3013 + } }, { + "id": 19950, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3014 + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19951, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3015 + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19952, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "up", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3016 + } }, { + "id": 19953, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3017 + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19954, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3018 + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19955, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "side", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3019 + } }, { + "id": 19956, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3020 + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19957, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3021 + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19958, "properties": { "east": "none", - "north": "up", - "power": "4", - "south": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3022 + } }, { + "id": 19959, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3023 + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19960, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3024 + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19961, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "up", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3025 + } }, { + "id": 19962, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3026 + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19963, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3027 + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19964, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "side", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3028 + } }, { + "id": 19965, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3029 + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19966, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3030 + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19967, "properties": { "east": "none", - "north": "up", - "power": "5", - "south": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3031 + } }, { + "id": 19968, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3032 + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19969, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3033 + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19970, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "up", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3034 + } }, { + "id": 19971, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3035 + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19972, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3036 + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19973, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "side", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3037 + } }, { + "id": 19974, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3038 + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19975, "properties": { "east": "none", - "north": "up", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3039 + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19976, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "low", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3040 + } }, { + "id": 19977, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3041 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19978, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3042 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19979, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "up", + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3043 + } }, { + "id": 19980, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3044 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19981, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3045 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19982, "properties": { - "east": "none", - "north": "up", - "power": "7", - "south": "side", + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3046 + } }, { + "id": 19983, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "low", + "north": "none", "south": "none", - "west": "up" - }, - "id": 3047 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19984, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "low", + "north": "none", "south": "none", - "west": "side" - }, - "id": 3048 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19985, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "low", + "north": "none", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3049 + } }, { + "id": 19986, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3050 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19987, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3051 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19988, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "up", + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3052 + } }, { + "id": 19989, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3053 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19990, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3054 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19991, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "side", + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3055 + } }, { + "id": 19992, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3056 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19993, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3057 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 19994, "properties": { - "east": "none", - "north": "up", - "power": "8", - "south": "none", + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3058 + } }, { + "id": 19995, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3059 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 19996, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3060 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 19997, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "up", + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3061 + } }, { + "id": 19998, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3062 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 19999, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3063 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20000, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "side", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3064 + } }, { + "id": 20001, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3065 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20002, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3066 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20003, "properties": { - "east": "none", - "north": "up", - "power": "9", - "south": "none", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3067 + } }, { + "id": 20004, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3068 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20005, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3069 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20006, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "up", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3070 + } }, { + "id": 20007, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3071 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20008, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3072 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20009, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "side", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3073 + } }, { + "id": 20010, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3074 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20011, "properties": { - "east": "none", - "north": "up", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3075 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20012, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "low", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3076 + } }, { + "id": 20013, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3077 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20014, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3078 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20015, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "up", + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3079 + } }, { + "id": 20016, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3080 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20017, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3081 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20018, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "side", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3082 + } }, { + "id": 20019, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "low", + "north": "low", "south": "none", - "west": "up" - }, - "id": 3083 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20020, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "low", + "north": "low", "south": "none", - "west": "side" - }, - "id": 3084 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20021, "properties": { - "east": "none", - "north": "up", - "power": "11", - "south": "none", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3085 + } }, { + "id": 20022, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3086 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20023, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3087 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20024, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3088 + } }, { + "id": 20025, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3089 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20026, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3090 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20027, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "side", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3091 + } }, { + "id": 20028, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3092 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20029, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3093 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20030, "properties": { - "east": "none", - "north": "up", - "power": "12", - "south": "none", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3094 + } }, { + "id": 20031, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3095 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20032, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3096 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20033, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3097 + } }, { + "id": 20034, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3098 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20035, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3099 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20036, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3100 + } }, { + "id": 20037, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3101 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20038, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3102 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20039, "properties": { - "east": "none", - "north": "up", - "power": "13", - "south": "none", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3103 + } }, { + "id": 20040, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3104 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20041, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3105 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20042, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "up", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3106 + } }, { + "id": 20043, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3107 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20044, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3108 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20045, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3109 + } }, { + "id": 20046, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3110 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20047, "properties": { - "east": "none", - "north": "up", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3111 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20048, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "low", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3112 + } }, { + "id": 20049, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3113 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20050, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3114 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20051, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "up", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3115 + } }, { + "id": 20052, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3116 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20053, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3117 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20054, "properties": { - "east": "none", - "north": "up", - "power": "15", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3118 + } }, { + "id": 20055, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "low", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 3119 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20056, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "low", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 3120 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20057, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "low", + "north": "tall", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3121 + } }, { + "id": 20058, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3122 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20059, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3123 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20060, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3124 + } }, { + "id": 20061, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3125 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20062, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3126 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20063, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "side", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3127 + } }, { + "id": 20064, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3128 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20065, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3129 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20066, "properties": { - "east": "none", - "north": "side", - "power": "0", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3130 + } }, { + "id": 20067, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3131 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20068, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3132 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20069, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3133 + } }, { + "id": 20070, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3134 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20071, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3135 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20072, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3136 + } }, { + "id": 20073, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3137 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20074, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3138 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20075, "properties": { - "east": "none", - "north": "side", - "power": "1", - "south": "none", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3139 + } }, { + "id": 20076, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3140 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20077, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3141 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20078, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "up", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3142 + } }, { + "id": 20079, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3143 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20080, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3144 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20081, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3145 + } }, { + "id": 20082, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3146 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20083, "properties": { - "east": "none", - "north": "side", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3147 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20084, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "tall", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3148 + } }, { + "id": 20085, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3149 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20086, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3150 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20087, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "up", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3151 + } }, { + "id": 20088, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3152 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20089, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3153 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20090, "properties": { - "east": "none", - "north": "side", - "power": "3", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3154 + } }, { + "id": 20091, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "tall", + "north": "none", "south": "none", - "west": "up" - }, - "id": 3155 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20092, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "tall", + "north": "none", "south": "none", - "west": "side" - }, - "id": 3156 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20093, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "tall", + "north": "none", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3157 + } }, { + "id": 20094, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3158 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20095, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3159 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20096, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3160 + } }, { + "id": 20097, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3161 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20098, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3162 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20099, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "side", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3163 + } }, { + "id": 20100, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3164 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20101, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3165 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20102, "properties": { - "east": "none", - "north": "side", - "power": "4", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3166 + } }, { + "id": 20103, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3167 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20104, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3168 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20105, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3169 + } }, { + "id": 20106, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3170 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20107, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3171 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20108, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3172 + } }, { + "id": 20109, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3173 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20110, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3174 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20111, "properties": { - "east": "none", - "north": "side", - "power": "5", - "south": "none", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3175 + } }, { + "id": 20112, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3176 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20113, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3177 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20114, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3178 + } }, { + "id": 20115, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3179 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20116, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3180 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20117, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3181 + } }, { + "id": 20118, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3182 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20119, "properties": { - "east": "none", - "north": "side", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3183 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20120, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "tall", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3184 + } }, { + "id": 20121, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3185 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20122, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3186 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20123, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "up", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3187 + } }, { + "id": 20124, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3188 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20125, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3189 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20126, "properties": { - "east": "none", - "north": "side", - "power": "7", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3190 + } }, { + "id": 20127, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "tall", + "north": "low", "south": "none", - "west": "up" - }, - "id": 3191 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20128, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "tall", + "north": "low", "south": "none", - "west": "side" - }, - "id": 3192 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20129, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "tall", + "north": "low", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3193 + } }, { + "id": 20130, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3194 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20131, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3195 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20132, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3196 + } }, { + "id": 20133, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3197 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20134, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3198 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20135, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "side", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3199 + } }, { + "id": 20136, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "up" - }, - "id": 3200 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20137, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", - "west": "side" - }, - "id": 3201 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20138, "properties": { - "east": "none", - "north": "side", - "power": "8", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3202 + } }, { + "id": 20139, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3203 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20140, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3204 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20141, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3205 + } }, { + "id": 20142, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3206 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20143, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3207 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20144, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3208 + } }, { + "id": 20145, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "up" - }, - "id": 3209 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20146, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", - "west": "side" - }, - "id": 3210 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20147, "properties": { - "east": "none", - "north": "side", - "power": "9", - "south": "none", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3211 + } }, { + "id": 20148, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3212 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20149, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3213 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20150, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3214 + } }, { + "id": 20151, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3215 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20152, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3216 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20153, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3217 + } }, { + "id": 20154, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3218 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20155, "properties": { - "east": "none", - "north": "side", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3219 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20156, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "tall", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3220 + } }, { + "id": 20157, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3221 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20158, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3222 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20159, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "up", + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3223 + } }, { + "id": 20160, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3224 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20161, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3225 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20162, "properties": { - "east": "none", - "north": "side", - "power": "11", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3226 + } }, { + "id": 20163, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" - }, - "id": 3227 + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20164, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" - }, - "id": 3228 + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20165, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3229 + } }, { + "id": 20166, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3230 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20167, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3231 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20168, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3232 + } }, { + "id": 20169, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3233 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20170, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3234 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20171, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "side", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3235 + } }, { + "id": 20172, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "up" - }, - "id": 3236 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20173, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", - "west": "side" - }, - "id": 3237 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20174, "properties": { - "east": "none", - "north": "side", - "power": "12", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3238 + } }, { + "id": 20175, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3239 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20176, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3240 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20177, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3241 + } }, { + "id": 20178, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3242 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20179, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3243 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20180, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3244 + } }, { + "id": 20181, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "up" - }, - "id": 3245 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20182, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", - "west": "side" - }, - "id": 3246 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20183, "properties": { - "east": "none", - "north": "side", - "power": "13", - "south": "none", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3247 + } }, { + "id": 20184, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3248 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20185, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3249 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20186, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3250 + } }, { + "id": 20187, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3251 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20188, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3252 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20189, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3253 + } }, { + "id": 20190, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3254 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20191, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3255 - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9113, "properties": { - "east": "none", - "north": "side", - "power": "14", - "south": "none", - "west": "none" - }, - "id": 3256 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9114, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3257 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9115, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3258 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9116, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "up", - "west": "none" - }, - "id": 3259 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9117, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3260 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9118, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3261 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 3952, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "side", - "west": "none" - }, - "id": 3262 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 3953, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3263 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 3954, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3264 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 3955, "properties": { - "east": "none", - "north": "side", - "power": "15", - "south": "none", - "west": "none" - }, - "id": 3265 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 3956, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "up" - }, - "id": 3266 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 3957, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "side" - }, - "id": 3267 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 3958, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "up", - "west": "none" - }, - "id": 3268 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 3959, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "up" - }, - "id": 3269 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 3960, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "side" - }, - "id": 3270 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 3961, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "side", - "west": "none" - }, - "id": 3271 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 3962, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "up" - }, - "id": 3272 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 3963, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "side" - }, - "id": 3273 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 3964, "properties": { - "east": "none", - "north": "none", - "power": "0", - "south": "none", - "west": "none" - }, - "id": 3274, - "default": true + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 3965, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "up" - }, - "id": 3275 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 3966, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "side" - }, - "id": 3276 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 3967, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "up", - "west": "none" - }, - "id": 3277 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 3968, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "up" - }, - "id": 3278 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 3969, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - }, - "id": 3279 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 3970, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "side", - "west": "none" - }, - "id": 3280 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 3971, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "up" - }, - "id": 3281 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 3972, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "side" - }, - "id": 3282 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 3973, "properties": { - "east": "none", - "north": "none", - "power": "1", - "south": "none", - "west": "none" - }, - "id": 3283 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 3974, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "up" - }, - "id": 3284 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 3975, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "side" - }, - "id": 3285 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 3976, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "up", - "west": "none" - }, - "id": 3286 - }, - { - "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "up" - }, - "id": 3287 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 3977, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "side" - }, - "id": 3288 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 3978, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "side", - "west": "none" - }, - "id": 3289 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 3979, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "up" - }, - "id": 3290 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 3980, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "side" - }, - "id": 3291 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 3981, "properties": { - "east": "none", - "north": "none", - "power": "2", - "south": "none", - "west": "none" - }, - "id": 3292 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 3982, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "up" - }, - "id": 3293 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 3983, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "side" - }, - "id": 3294 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 3984, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "up", - "west": "none" - }, - "id": 3295 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 3985, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "up" - }, - "id": 3296 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 3986, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "side" - }, - "id": 3297 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 3987, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "side", - "west": "none" - }, - "id": 3298 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 3988, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "up" - }, - "id": 3299 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 3989, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "side" - }, - "id": 3300 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 3990, "properties": { - "east": "none", - "north": "none", - "power": "3", - "south": "none", - "west": "none" - }, - "id": 3301 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 3991, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "up" - }, - "id": 3302 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 3992, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "side" - }, - "id": 3303 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 3993, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "up", - "west": "none" - }, - "id": 3304 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 3994, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "up" - }, - "id": 3305 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 3995, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "side" - }, - "id": 3306 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 3996, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "side", - "west": "none" - }, - "id": 3307 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 3997, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "up" - }, - "id": 3308 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 3998, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "side" - }, - "id": 3309 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 3999, "properties": { - "east": "none", - "north": "none", - "power": "4", - "south": "none", - "west": "none" - }, - "id": 3310 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 4000, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "up" - }, - "id": 3311 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 4001, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "side" - }, - "id": 3312 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 4002, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "up", - "west": "none" - }, - "id": 3313 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 4003, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "up" - }, - "id": 3314 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 4004, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "side" - }, - "id": 3315 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 4005, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "side", - "west": "none" - }, - "id": 3316 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 4006, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "up" - }, - "id": 3317 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 4007, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "side" - }, - "id": 3318 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 4008, "properties": { - "east": "none", - "north": "none", - "power": "5", - "south": "none", - "west": "none" - }, - "id": 3319 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 4009, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "up" - }, - "id": 3320 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 4010, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "side" - }, - "id": 3321 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 4011, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "up", - "west": "none" - }, - "id": 3322 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 4012, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "up" - }, - "id": 3323 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 4013, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "side" - }, - "id": 3324 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 4014, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "side", - "west": "none" - }, - "id": 3325 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 4015, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "up" - }, - "id": 3326 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 4016, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "side" - }, - "id": 3327 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 4017, "properties": { - "east": "none", - "north": "none", - "power": "6", - "south": "none", - "west": "none" - }, - "id": 3328 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 4018, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "up" - }, - "id": 3329 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 4019, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "side" - }, - "id": 3330 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 4020, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "up", - "west": "none" - }, - "id": 3331 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 4021, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "up" - }, - "id": 3332 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 4022, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "side" - }, - "id": 3333 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 4023, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "side", - "west": "none" - }, - "id": 3334 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 4024, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "up" - }, - "id": 3335 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 4025, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "side" - }, - "id": 3336 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 4026, "properties": { - "east": "none", - "north": "none", - "power": "7", - "south": "none", - "west": "none" - }, - "id": 3337 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 4027, "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "up" - }, - "id": 3338 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 4028, "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "side" - }, - "id": 3339 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 4029, "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "up", - "west": "none" - }, - "id": 3340 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 4030, "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "up" - }, - "id": 3341 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 4031, "properties": { - "east": "none", - "north": "none", - "power": "8", - "south": "side", - "west": "side" - }, - "id": 3342 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ { + "id": 6249, "properties": { "east": "none", "north": "none", - "power": "8", - "south": "side", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3343 + } }, { + "id": 6250, "properties": { "east": "none", "north": "none", - "power": "8", "south": "none", - "west": "up" - }, - "id": 3344 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6251, "properties": { "east": "none", "north": "none", - "power": "8", "south": "none", - "west": "side" - }, - "id": 3345 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 6252, "properties": { "east": "none", "north": "none", - "power": "8", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3346 + } }, { + "id": 6253, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "up", - "west": "up" - }, - "id": 3347 + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6254, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "up", - "west": "side" - }, - "id": 3348 + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6255, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "up", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3349 + } }, { + "id": 6256, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "side", - "west": "up" - }, - "id": 3350 + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6257, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "side", - "west": "side" - }, - "id": 3351 + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6258, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "side", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3352 + } }, { + "id": 6259, "properties": { "east": "none", "north": "none", - "power": "9", "south": "none", - "west": "up" - }, - "id": 3353 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6260, "properties": { "east": "none", "north": "none", - "power": "9", "south": "none", - "west": "side" - }, - "id": 3354 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6261, "properties": { "east": "none", "north": "none", - "power": "9", - "south": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3355 + } }, { + "id": 6262, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "up", - "west": "up" - }, - "id": 3356 + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6263, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "up", - "west": "side" - }, - "id": 3357 + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6264, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "up", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3358 + } }, { + "id": 6265, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "side", - "west": "up" - }, - "id": 3359 + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6266, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "side", - "west": "side" - }, - "id": 3360 + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6267, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "side", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3361 + } }, { + "id": 6268, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "none", - "west": "up" - }, - "id": 3362 + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6269, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "none", - "west": "side" - }, - "id": 3363 + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6270, "properties": { "east": "none", "north": "none", - "power": "10", - "south": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3364 + } }, { + "id": 6271, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "up", - "west": "up" - }, - "id": 3365 + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6272, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "up", - "west": "side" - }, - "id": 3366 + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6273, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "up", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3367 + } }, { + "id": 6274, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "side", - "west": "up" - }, - "id": 3368 + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6275, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "side", - "west": "side" - }, - "id": 3369 + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6276, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "side", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3370 + } }, { + "id": 6277, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "none", - "west": "up" - }, - "id": 3371 + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6278, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "none", - "west": "side" - }, - "id": 3372 + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6279, "properties": { "east": "none", "north": "none", - "power": "11", - "south": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3373 + } }, { + "id": 6280, "properties": { "east": "none", "north": "none", - "power": "12", - "south": "up", - "west": "up" - }, - "id": 3374 + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6281, "properties": { "east": "none", "north": "none", - "power": "12", - "south": "up", - "west": "side" - }, - "id": 3375 + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6282, "properties": { "east": "none", "north": "none", - "power": "12", - "south": "up", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3376 + } }, { + "id": 6283, "properties": { "east": "none", "north": "none", - "power": "12", - "south": "side", - "west": "up" - }, - "id": 3377 + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6284, "properties": { "east": "none", "north": "none", - "power": "12", - "south": "side", - "west": "side" - }, - "id": 3378 + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6285, "properties": { "east": "none", - "north": "none", - "power": "12", - "south": "side", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3379 + } }, { + "id": 6286, "properties": { "east": "none", - "north": "none", - "power": "12", + "north": "low", "south": "none", - "west": "up" - }, - "id": 3380 + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6287, "properties": { "east": "none", - "north": "none", - "power": "12", + "north": "low", "south": "none", - "west": "side" - }, - "id": 3381 + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6288, "properties": { "east": "none", - "north": "none", - "power": "12", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3382 + } }, { + "id": 6289, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "up" - }, - "id": 3383 + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6290, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "up", - "west": "side" - }, - "id": 3384 + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6291, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "up", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3385 + } }, { + "id": 6292, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "up" - }, - "id": 3386 + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6293, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "side", - "west": "side" - }, - "id": 3387 + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6294, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "side", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3388 + } }, { + "id": 6295, "properties": { "east": "none", - "north": "none", - "power": "13", + "north": "low", "south": "none", - "west": "up" - }, - "id": 3389 + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6296, "properties": { "east": "none", - "north": "none", - "power": "13", + "north": "low", "south": "none", - "west": "side" - }, - "id": 3390 + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6297, "properties": { "east": "none", - "north": "none", - "power": "13", - "south": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3391 + } }, { + "id": 6298, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "up" - }, - "id": 3392 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6299, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "up", - "west": "side" - }, - "id": 3393 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6300, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "up", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3394 + } }, { + "id": 6301, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "up" - }, - "id": 3395 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6302, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "side", - "west": "side" - }, - "id": 3396 + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6303, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "side", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3397 + } }, { + "id": 6304, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "up" - }, - "id": 3398 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6305, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "none", - "west": "side" - }, - "id": 3399 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6306, "properties": { "east": "none", - "north": "none", - "power": "14", - "south": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 3400 + } }, { + "id": 6307, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "up" - }, - "id": 3401 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6308, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "up", - "west": "side" - }, - "id": 3402 + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6309, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "up", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" - }, - "id": 3403 + } }, { + "id": 6310, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "up" - }, - "id": 3404 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6311, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "side", - "west": "side" - }, - "id": 3405 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6312, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "side", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" - }, - "id": 3406 + } }, { + "id": 6313, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "up" - }, - "id": 3407 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6314, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "none", - "west": "side" - }, - "id": 3408 + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6315, "properties": { "east": "none", - "north": "none", - "power": "15", - "south": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" - }, - "id": 3409 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ - { - "id": 3410, - "default": true - } - ] - }, - "minecraft:deepslate_diamond_ore": { - "states": [ - { - "id": 3411, - "default": true - } - ] - }, - "minecraft:diamond_block": { - "states": [ - { - "id": 3412, - "default": true - } - ] - }, - "minecraft:crafting_table": { - "states": [ - { - "id": 3413, - "default": true - } - ] - }, - "minecraft:wheat": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + } + }, { + "id": 6316, "properties": { - "age": "0" - }, - "id": 3414, - "default": true + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6317, "properties": { - "age": "1" - }, - "id": 3415 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6318, "properties": { - "age": "2" - }, - "id": 3416 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6319, "properties": { - "age": "3" - }, - "id": 3417 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6320, "properties": { - "age": "4" - }, - "id": 3418 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6321, "properties": { - "age": "5" - }, - "id": 3419 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6322, "properties": { - "age": "6" - }, - "id": 3420 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6323, "properties": { - "age": "7" - }, - "id": 3421 - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "properties": { - "moisture": "0" - }, - "id": 3422, - "default": true + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6324, "properties": { - "moisture": "1" - }, - "id": 3423 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6325, "properties": { - "moisture": "2" - }, - "id": 3424 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6326, "properties": { - "moisture": "3" - }, - "id": 3425 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6327, "properties": { - "moisture": "4" - }, - "id": 3426 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6328, "properties": { - "moisture": "5" - }, - "id": 3427 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6329, "properties": { - "moisture": "6" - }, - "id": 3428 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6330, "properties": { - "moisture": "7" - }, - "id": 3429 - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3430 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6331, "properties": { - "facing": "north", - "lit": "false" - }, - "id": 3431, - "default": true + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6332, "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3432 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6333, "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3433 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6334, "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3434 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6335, "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3435 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6336, "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3436 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6337, "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3437 - } - ] - }, - "minecraft:oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3438 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6338, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3439, - "default": true + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6339, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3440 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6340, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3441 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6341, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3442 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6342, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3443 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6343, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3444 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6344, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3445 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6345, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3446 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6346, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3447 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6347, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3448 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6348, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3449 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6349, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3450 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6350, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3451 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6351, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3452 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6352, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3453 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6353, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3454 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6354, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3455 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6355, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3456 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6356, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3457 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6357, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3458 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6358, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3459 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6359, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3460 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6360, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3461 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6361, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3462 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6362, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3463 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6363, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3464 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6364, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3465 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6365, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3466 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6366, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3467 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6367, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3468 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6368, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3469 - } - ] - }, - "minecraft:spruce_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3470 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6369, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3471, - "default": true + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6370, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3472 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6371, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3473 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6372, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3474 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6373, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3475 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6374, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3476 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6375, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3477 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6376, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3478 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6377, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3479 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6378, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3480 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6379, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3481 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6380, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3482 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6381, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3483 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6382, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3484 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6383, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3485 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6384, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3486 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6385, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3487 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6386, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3488 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6387, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3489 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6388, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3490 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6389, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3491 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6390, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3492 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6391, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3493 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6392, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3494 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6393, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3495 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6394, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3496 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6395, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3497 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6396, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3498 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6397, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3499 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6398, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3500 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6399, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3501 - } - ] - }, - "minecraft:birch_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 6400, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3502 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6401, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3503, - "default": true + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6402, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3504 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6403, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3505 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6404, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3506 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6405, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3507 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6406, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3508 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6407, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3509 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6408, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3510 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6409, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3511 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6410, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3512 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6411, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3513 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6412, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3514 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6413, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3515 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6414, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3516 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6415, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3517 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6416, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3518 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6417, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3519 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6418, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3520 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6419, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3521 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6420, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3522 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6421, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3523 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6422, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3524 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6423, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3525 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6424, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3526 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6425, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3527 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6426, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3528 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6427, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3529 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6428, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3530 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6429, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3531 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6430, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3532 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6431, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3533 - } - ] - }, - "minecraft:acacia_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 6432, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3534 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6433, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3535, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6434, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3536 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6435, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3537 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6436, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3538 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6437, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3539 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6438, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3540 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6439, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3541 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6440, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3542 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6441, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3543 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6442, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3544 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6443, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3545 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6444, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3546 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6445, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3547 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6446, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3548 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6447, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3549 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6448, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3550 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6449, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3551 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6450, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3552 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6451, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3553 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6452, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3554 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6453, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3555 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6454, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3556 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6455, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3557 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6456, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3558 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6457, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3559 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6458, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3560 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6459, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3561 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6460, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3562 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6461, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3563 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6462, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3564 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6463, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3565 - } - ] - }, - "minecraft:jungle_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 6464, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3566 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6465, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3567, - "default": true + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6466, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3568 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6467, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3569 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6468, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3570 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6469, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3571 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6470, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3572 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6471, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3573 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6472, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3574 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6473, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3575 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6474, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3576 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6475, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3577 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6476, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3578 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6477, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3579 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6478, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3580 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6479, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3581 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6480, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3582 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6481, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3583 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6482, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3584 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6483, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3585 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6484, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3586 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6485, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3587 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6486, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3588 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6487, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3589 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6488, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3590 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6489, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3591 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6490, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3592 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6491, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3593 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6492, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3594 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6493, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3595 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6494, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3596 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6495, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3597 - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 6496, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 3598 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6497, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 3599, - "default": true + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6498, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 3600 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6499, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 3601 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6500, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 3602 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6501, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 3603 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6502, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 3604 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6503, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 3605 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6504, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 3606 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6505, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 3607 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6506, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 3608 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6507, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 3609 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6508, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 3610 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6509, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 3611 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6510, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 3612 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6511, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 3613 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6512, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 3614 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6513, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 3615 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6514, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 3616 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6515, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 3617 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6516, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 3618 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6517, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 3619 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6518, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 3620 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6519, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 3621 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6520, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 3622 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6521, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 3623 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6522, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 3624 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6523, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 3625 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6524, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 3626 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6525, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 3627 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6526, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 3628 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6527, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 3629 - } - ] - }, - "minecraft:oak_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 6528, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3630 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6529, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3631 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6530, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3632 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6531, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3633 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6532, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3634 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6533, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3635 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6534, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3636 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6535, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3637 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6536, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3638 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6537, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3639 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6538, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3640 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6539, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3641, - "default": true + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6540, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3642 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6541, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3643 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6542, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3644 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6543, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3645 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6544, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3646 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6545, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3647 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6546, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3648 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6547, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3649 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6548, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3650 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6549, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3651 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6550, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3652 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6551, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3653 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6552, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3654 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6553, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3655 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6554, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3656 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6555, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3657 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6556, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3658 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6557, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3659 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6558, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3660 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6559, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3661 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6560, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3662 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6561, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3663 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6562, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3664 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6563, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3665 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6564, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3666 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6565, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3667 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6566, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3668 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6567, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3669 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6568, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 3670 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6569, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 3671 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6570, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 3672 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6571, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 3673 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6572, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 3674 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "states": [ + { + "default": true, + "id": 1595 + } + ] + }, + "minecraft:cocoa": { + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5749, + "properties": { + "age": "0", + "facing": "north" + } }, { + "id": 5750, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 3675 + "age": "0", + "facing": "south" + } }, { + "id": 5751, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 3676 + "age": "0", + "facing": "west" + } }, { + "id": 5752, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 3677 + "age": "0", + "facing": "east" + } }, { + "id": 5753, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", + "age": "1", + "facing": "north" + } + }, + { + "id": 5754, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 5755, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 5756, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 5757, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 5758, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 5759, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 5760, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 6236, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 6237, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 6238, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 6239, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 6240, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 6241, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 6242, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 6243, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 6244, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 6245, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 6246, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 6247, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7295, + "properties": { + "facing": "north", + "mode": "compare", "powered": "true" - }, - "id": 3678 + } }, { + "default": true, + "id": 7296, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", + "facing": "north", + "mode": "compare", "powered": "false" - }, - "id": 3679 + } }, { + "id": 7297, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", + "facing": "north", + "mode": "subtract", "powered": "true" - }, - "id": 3680 + } }, { + "id": 7298, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", + "facing": "north", + "mode": "subtract", "powered": "false" - }, - "id": 3681 + } }, { + "id": 7299, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "south", + "mode": "compare", "powered": "true" - }, - "id": 3682 + } }, { + "id": 7300, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "south", + "mode": "compare", "powered": "false" - }, - "id": 3683 + } }, { + "id": 7301, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", + "facing": "south", + "mode": "subtract", "powered": "true" - }, - "id": 3684 + } }, { + "id": 7302, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", + "facing": "south", + "mode": "subtract", "powered": "false" - }, - "id": 3685 + } }, { + "id": 7303, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", + "facing": "west", + "mode": "compare", "powered": "true" - }, - "id": 3686 + } }, { + "id": 7304, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", + "facing": "west", + "mode": "compare", "powered": "false" - }, - "id": 3687 + } }, { + "id": 7305, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", + "facing": "west", + "mode": "subtract", "powered": "true" - }, - "id": 3688 + } }, { + "id": 7306, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", + "facing": "west", + "mode": "subtract", "powered": "false" - }, - "id": 3689 + } }, { + "id": 7307, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", + "mode": "compare", "powered": "true" - }, - "id": 3690 + } }, { + "id": 7308, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", + "mode": "compare", "powered": "false" - }, - "id": 3691 + } }, { + "id": 7309, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", + "mode": "subtract", "powered": "true" - }, - "id": 3692 + } }, { + "id": 7310, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", + "mode": "subtract", "powered": "false" - }, - "id": 3693 + } } ] }, - "minecraft:ladder": { + "minecraft:composter": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" ] }, "states": [ { + "default": true, + "id": 16960, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3694 + "level": "0" + } }, { + "id": 16961, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3695, - "default": true + "level": "1" + } }, { + "id": 16962, "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3696 + "level": "2" + } }, { + "id": 16963, "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3697 + "level": "3" + } }, { + "id": 16964, "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3698 + "level": "4" + } }, { + "id": 16965, "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3699 + "level": "5" + } }, { + "id": 16966, "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3700 + "level": "6" + } }, { + "id": 16967, "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3701 + "level": "7" + } + }, + { + "id": 16968, + "properties": { + "level": "8" + } } ] }, - "minecraft:rail": { + "minecraft:conduit": { "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ], "waterlogged": [ "true", "false" @@ -34885,1572 +38605,465 @@ }, "states": [ { + "default": true, + "id": 10530, "properties": { - "shape": "north_south", "waterlogged": "true" - }, - "id": 3702 + } }, { + "id": 10531, "properties": { - "shape": "north_south", "waterlogged": "false" - }, - "id": 3703, - "default": true + } + } + ] + }, + "minecraft:copper_block": { + "states": [ + { + "default": true, + "id": 18911 + } + ] + }, + "minecraft:copper_ore": { + "states": [ + { + "default": true, + "id": 18912 + } + ] + }, + "minecraft:cornflower": { + "states": [ + { + "default": true, + "id": 1676 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "states": [ + { + "default": true, + "id": 21426 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "states": [ + { + "default": true, + "id": 21427 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "states": [ + { + "default": true, + "id": 18311 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 17461 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 4870 + } + ] + }, + "minecraft:crafting_table": { + "states": [ + { + "default": true, + "id": 3611 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 7187, + "properties": { + "rotation": "0" + } }, { + "id": 7188, "properties": { - "shape": "east_west", - "waterlogged": "true" - }, - "id": 3704 + "rotation": "1" + } }, { + "id": 7189, "properties": { - "shape": "east_west", - "waterlogged": "false" - }, - "id": 3705 + "rotation": "2" + } }, { + "id": 7190, "properties": { - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 3706 + "rotation": "3" + } }, { + "id": 7191, "properties": { - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 3707 + "rotation": "4" + } }, { + "id": 7192, "properties": { - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 3708 + "rotation": "5" + } }, { + "id": 7193, "properties": { - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 3709 + "rotation": "6" + } }, { + "id": 7194, "properties": { - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 3710 + "rotation": "7" + } }, { + "id": 7195, "properties": { - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 3711 + "rotation": "8" + } }, { + "id": 7196, "properties": { - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 3712 + "rotation": "9" + } }, { + "id": 7197, "properties": { - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 3713 + "rotation": "10" + } }, { + "id": 7198, "properties": { - "shape": "south_east", - "waterlogged": "true" - }, - "id": 3714 + "rotation": "11" + } }, { + "id": 7199, "properties": { - "shape": "south_east", - "waterlogged": "false" - }, - "id": 3715 + "rotation": "12" + } }, { + "id": 7200, "properties": { - "shape": "south_west", - "waterlogged": "true" - }, - "id": 3716 + "rotation": "13" + } }, { + "id": 7201, "properties": { - "shape": "south_west", - "waterlogged": "false" - }, - "id": 3717 + "rotation": "14" + } }, { + "id": 7202, "properties": { - "shape": "north_west", - "waterlogged": "true" - }, - "id": 3718 + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7203, + "properties": { + "facing": "north" + } }, { + "id": 7204, "properties": { - "shape": "north_west", - "waterlogged": "false" - }, - "id": 3719 + "facing": "south" + } }, { + "id": 7205, "properties": { - "shape": "north_east", - "waterlogged": "true" - }, - "id": 3720 + "facing": "west" + } }, { + "id": 7206, "properties": { - "shape": "north_east", - "waterlogged": "false" - }, - "id": 3721 + "facing": "east" + } } ] }, - "minecraft:cobblestone_stairs": { + "minecraft:crimson_button": { "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], "facing": [ "north", "south", "west", "east" ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { + "id": 16688, "properties": { + "face": "floor", "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3722 + "powered": "true" + } }, { + "id": 16689, "properties": { + "face": "floor", "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3723 + "powered": "false" + } }, { + "id": 16690, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3724 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 16691, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3725 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 16692, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3726 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3727 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3728 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3729 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3730 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3731 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3732 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3733, - "default": true - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3734 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3735 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3736 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3737 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3738 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3739 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3740 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3741 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3742 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3743 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3744 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3745 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3746 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3747 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3748 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3749 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3750 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3751 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3752 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3753 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3754 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3755 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3756 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3757 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3758 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3759 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3760 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3761 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3762 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3763 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3764 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3765 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3766 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3767 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3768 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3769 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3770 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3771 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3772 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3773 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3774 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3775 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3776 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3777 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3778 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3779 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3780 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3781 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3782 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3783 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3784 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3785 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3786 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3787 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3788 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3789 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3790 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3791 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 3792 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 3793 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 3794 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 3795 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 3796 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 3797 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 3798 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 3799 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 3800 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 3801 - } - ] - }, - "minecraft:oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3802 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3803, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3804 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3805 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3806 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3807 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3808 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3809 - } - ] - }, - "minecraft:spruce_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3810 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3811, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3812 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3813 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3814 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3815 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3816 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3817 - } - ] - }, - "minecraft:birch_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3818 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3819, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3820 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3821 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3822 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3823 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3824 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3825 - } - ] - }, - "minecraft:acacia_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3826 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3827, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3828 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3829 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3830 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3831 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3832 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3833 - } - ] - }, - "minecraft:jungle_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3834 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3835, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3836 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3837 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3838 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3839 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3840 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3841 - } - ] - }, - "minecraft:dark_oak_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 3842 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 3843, - "default": true - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 3844 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 3845 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 3846 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 3847 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 3848 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 3849 - } - ] - }, - "minecraft:lever": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 3850 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 3851 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 3852 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 3853 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 3854 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 16693, "properties": { "face": "floor", "facing": "west", "powered": "false" - }, - "id": 3855 + } }, { + "id": 16694, "properties": { "face": "floor", "facing": "east", "powered": "true" - }, - "id": 3856 + } }, { + "id": 16695, "properties": { "face": "floor", "facing": "east", "powered": "false" - }, - "id": 3857 + } }, { + "id": 16696, "properties": { "face": "wall", "facing": "north", "powered": "true" - }, - "id": 3858 + } }, { + "default": true, + "id": 16697, "properties": { "face": "wall", "facing": "north", "powered": "false" - }, - "id": 3859, - "default": true + } }, { + "id": 16698, "properties": { "face": "wall", "facing": "south", "powered": "true" - }, - "id": 3860 + } }, { + "id": 16699, "properties": { "face": "wall", "facing": "south", "powered": "false" - }, - "id": 3861 + } }, { + "id": 16700, "properties": { "face": "wall", "facing": "west", "powered": "true" - }, - "id": 3862 + } }, { + "id": 16701, "properties": { "face": "wall", "facing": "west", "powered": "false" - }, - "id": 3863 + } }, { + "id": 16702, "properties": { "face": "wall", "facing": "east", "powered": "true" - }, - "id": 3864 + } }, { + "id": 16703, "properties": { "face": "wall", "facing": "east", "powered": "false" - }, - "id": 3865 + } }, { + "id": 16704, "properties": { "face": "ceiling", "facing": "north", "powered": "true" - }, - "id": 3866 + } }, { + "id": 16705, "properties": { "face": "ceiling", "facing": "north", "powered": "false" - }, - "id": 3867 + } }, { + "id": 16706, "properties": { "face": "ceiling", "facing": "south", "powered": "true" - }, - "id": 3868 + } }, { + "id": 16707, "properties": { "face": "ceiling", "facing": "south", "powered": "false" - }, - "id": 3869 + } }, { + "id": 16708, "properties": { "face": "ceiling", "facing": "west", "powered": "true" - }, - "id": 3870 + } }, { + "id": 16709, "properties": { "face": "ceiling", "facing": "west", "powered": "false" - }, - "id": 3871 + } }, { + "id": 16710, "properties": { "face": "ceiling", "facing": "east", "powered": "true" - }, - "id": 3872 + } }, { + "id": 16711, "properties": { "face": "ceiling", "facing": "east", "powered": "false" - }, - "id": 3873 - } - ] - }, - "minecraft:stone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 3874 - }, - { - "properties": { - "powered": "false" - }, - "id": 3875, - "default": true + } } ] }, - "minecraft:iron_door": { + "minecraft:crimson_door": { "properties": { "facing": [ "north", @@ -36477,941 +39090,1011 @@ }, "states": [ { + "id": 16736, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3876 + } }, { + "id": 16737, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3877 + } }, { + "id": 16738, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3878 + } }, { + "id": 16739, "properties": { "facing": "north", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3879 + } }, { + "id": 16740, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3880 + } }, { + "id": 16741, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3881 + } }, { + "id": 16742, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3882 + } }, { + "id": 16743, "properties": { "facing": "north", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3883 + } }, { + "id": 16744, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3884 + } }, { + "id": 16745, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3885 + } }, { + "id": 16746, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3886 + } }, { + "default": true, + "id": 16747, "properties": { "facing": "north", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3887, - "default": true + } }, { + "id": 16748, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3888 + } }, { + "id": 16749, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3889 + } }, { + "id": 16750, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3890 + } }, { + "id": 16751, "properties": { "facing": "north", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3891 + } }, { + "id": 16752, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3892 + } }, { + "id": 16753, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3893 + } }, { + "id": 16754, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3894 + } }, { + "id": 16755, "properties": { "facing": "south", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3895 + } }, { + "id": 16756, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3896 + } }, { + "id": 16757, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3897 + } }, { + "id": 16758, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3898 + } }, { + "id": 16759, "properties": { "facing": "south", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3899 + } }, { + "id": 16760, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3900 + } }, { + "id": 16761, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3901 + } }, { + "id": 16762, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3902 + } }, { + "id": 16763, "properties": { "facing": "south", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3903 + } }, { + "id": 16764, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3904 + } }, { + "id": 16765, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3905 + } }, { + "id": 16766, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3906 + } }, { + "id": 16767, "properties": { "facing": "south", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3907 + } }, { + "id": 16768, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3908 + } }, { + "id": 16769, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3909 + } }, { + "id": 16770, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3910 + } }, { + "id": 16771, "properties": { "facing": "west", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3911 + } }, { + "id": 16772, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3912 + } }, { + "id": 16773, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3913 + } }, { + "id": 16774, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3914 + } }, { + "id": 16775, "properties": { "facing": "west", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3915 + } }, { + "id": 16776, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3916 + } }, { + "id": 16777, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3917 + } }, { + "id": 16778, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3918 + } }, { + "id": 16779, "properties": { "facing": "west", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3919 + } }, { + "id": 16780, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3920 + } }, { + "id": 16781, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3921 + } }, { + "id": 16782, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3922 + } }, { + "id": 16783, "properties": { "facing": "west", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3923 + } }, { + "id": 16784, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3924 + } }, { + "id": 16785, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3925 + } }, { + "id": 16786, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3926 + } }, { + "id": 16787, "properties": { "facing": "east", "half": "upper", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3927 + } }, { + "id": 16788, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3928 + } }, { + "id": 16789, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3929 + } }, { + "id": 16790, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3930 + } }, { + "id": 16791, "properties": { "facing": "east", "half": "upper", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3931 + } }, { + "id": 16792, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "true" - }, - "id": 3932 + } }, { + "id": 16793, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "true", "powered": "false" - }, - "id": 3933 + } }, { + "id": 16794, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "true" - }, - "id": 3934 + } }, { + "id": 16795, "properties": { "facing": "east", "half": "lower", "hinge": "left", "open": "false", "powered": "false" - }, - "id": 3935 + } }, { + "id": 16796, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "true" - }, - "id": 3936 + } }, { + "id": 16797, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "true", "powered": "false" - }, - "id": 3937 + } }, { + "id": 16798, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "true" - }, - "id": 3938 + } }, { + "id": 16799, "properties": { "facing": "east", "half": "lower", "hinge": "right", "open": "false", "powered": "false" - }, - "id": 3939 + } } ] }, - "minecraft:oak_pressure_plate": { + "minecraft:crimson_fence": { "properties": { - "powered": [ + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ "true", "false" ] }, "states": [ { + "id": 16272, "properties": { - "powered": "true" - }, - "id": 3940 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16273, "properties": { - "powered": "false" - }, - "id": 3941, - "default": true - } - ] - }, - "minecraft:spruce_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 16274, "properties": { - "powered": "true" - }, - "id": 3942 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16275, "properties": { - "powered": "false" - }, - "id": 3943, - "default": true - } - ] - }, - "minecraft:birch_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 16276, "properties": { - "powered": "true" - }, - "id": 3944 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16277, "properties": { - "powered": "false" - }, - "id": 3945, - "default": true - } - ] - }, - "minecraft:jungle_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 16278, "properties": { - "powered": "true" - }, - "id": 3946 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16279, "properties": { - "powered": "false" - }, - "id": 3947, - "default": true - } - ] - }, - "minecraft:acacia_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 16280, "properties": { - "powered": "true" - }, - "id": 3948 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16281, "properties": { - "powered": "false" - }, - "id": 3949, - "default": true - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 16282, "properties": { - "powered": "true" - }, - "id": 3950 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16283, "properties": { - "powered": "false" - }, - "id": 3951, - "default": true - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 16284, "properties": { - "lit": "true" - }, - "id": 3952 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16285, "properties": { - "lit": "false" - }, - "id": 3953, - "default": true - } - ] - }, - "minecraft:deepslate_redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 16286, "properties": { - "lit": "true" - }, - "id": 3954 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16287, "properties": { - "lit": "false" - }, - "id": 3955, - "default": true - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 16288, "properties": { - "lit": "true" - }, - "id": 3956, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16289, "properties": { - "lit": "false" - }, - "id": 3957 - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 16290, "properties": { - "facing": "north", - "lit": "true" - }, - "id": 3958, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16291, "properties": { - "facing": "north", - "lit": "false" - }, - "id": 3959 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16292, "properties": { - "facing": "south", - "lit": "true" - }, - "id": 3960 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16293, "properties": { - "facing": "south", - "lit": "false" - }, - "id": 3961 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16294, "properties": { - "facing": "west", - "lit": "true" - }, - "id": 3962 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16295, "properties": { - "facing": "west", - "lit": "false" - }, - "id": 3963 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16296, "properties": { - "facing": "east", - "lit": "true" - }, - "id": 3964 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16297, "properties": { - "facing": "east", - "lit": "false" - }, - "id": 3965 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16298, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 16299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 16300, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 16301, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 16302, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 16303, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:stone_button": { + "minecraft:crimson_fence_gate": { "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], "facing": [ "north", "south", "west", "east" ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], "powered": [ "true", "false" @@ -37419,284 +40102,384 @@ }, "states": [ { + "id": 16464, "properties": { - "face": "floor", "facing": "north", + "in_wall": "true", + "open": "true", "powered": "true" - }, - "id": 3966 + } }, { + "id": 16465, "properties": { - "face": "floor", "facing": "north", + "in_wall": "true", + "open": "true", "powered": "false" - }, - "id": 3967 + } }, { + "id": 16466, "properties": { - "face": "floor", - "facing": "south", + "facing": "north", + "in_wall": "true", + "open": "false", "powered": "true" - }, - "id": 3968 + } }, { + "id": 16467, "properties": { - "face": "floor", - "facing": "south", + "facing": "north", + "in_wall": "true", + "open": "false", "powered": "false" - }, - "id": 3969 + } }, { + "id": 16468, "properties": { - "face": "floor", - "facing": "west", + "facing": "north", + "in_wall": "false", + "open": "true", "powered": "true" - }, - "id": 3970 + } }, { + "id": 16469, "properties": { - "face": "floor", - "facing": "west", + "facing": "north", + "in_wall": "false", + "open": "true", "powered": "false" - }, - "id": 3971 + } }, { + "id": 16470, "properties": { - "face": "floor", - "facing": "east", + "facing": "north", + "in_wall": "false", + "open": "false", "powered": "true" - }, - "id": 3972 + } }, { + "default": true, + "id": 16471, "properties": { - "face": "floor", - "facing": "east", + "facing": "north", + "in_wall": "false", + "open": "false", "powered": "false" - }, - "id": 3973 + } }, { + "id": 16472, "properties": { - "face": "wall", - "facing": "north", + "facing": "south", + "in_wall": "true", + "open": "true", "powered": "true" - }, - "id": 3974 + } }, { + "id": 16473, "properties": { - "face": "wall", - "facing": "north", + "facing": "south", + "in_wall": "true", + "open": "true", "powered": "false" - }, - "id": 3975, - "default": true + } }, { + "id": 16474, "properties": { - "face": "wall", "facing": "south", + "in_wall": "true", + "open": "false", "powered": "true" - }, - "id": 3976 + } }, { + "id": 16475, "properties": { - "face": "wall", "facing": "south", + "in_wall": "true", + "open": "false", "powered": "false" - }, - "id": 3977 + } }, { + "id": 16476, "properties": { - "face": "wall", - "facing": "west", + "facing": "south", + "in_wall": "false", + "open": "true", "powered": "true" - }, - "id": 3978 + } }, { + "id": 16477, "properties": { - "face": "wall", - "facing": "west", + "facing": "south", + "in_wall": "false", + "open": "true", "powered": "false" - }, - "id": 3979 + } }, { + "id": 16478, "properties": { - "face": "wall", - "facing": "east", + "facing": "south", + "in_wall": "false", + "open": "false", "powered": "true" - }, - "id": 3980 + } }, { + "id": 16479, "properties": { - "face": "wall", - "facing": "east", + "facing": "south", + "in_wall": "false", + "open": "false", "powered": "false" - }, - "id": 3981 + } }, { + "id": 16480, "properties": { - "face": "ceiling", - "facing": "north", + "facing": "west", + "in_wall": "true", + "open": "true", "powered": "true" - }, - "id": 3982 + } }, { + "id": 16481, "properties": { - "face": "ceiling", - "facing": "north", + "facing": "west", + "in_wall": "true", + "open": "true", "powered": "false" - }, - "id": 3983 + } }, { + "id": 16482, "properties": { - "face": "ceiling", - "facing": "south", + "facing": "west", + "in_wall": "true", + "open": "false", "powered": "true" - }, - "id": 3984 + } }, { + "id": 16483, "properties": { - "face": "ceiling", - "facing": "south", + "facing": "west", + "in_wall": "true", + "open": "false", "powered": "false" - }, - "id": 3985 + } }, { + "id": 16484, "properties": { - "face": "ceiling", "facing": "west", + "in_wall": "false", + "open": "true", "powered": "true" - }, - "id": 3986 + } }, { + "id": 16485, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 16486, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 16487, "properties": { - "face": "ceiling", "facing": "west", + "in_wall": "false", + "open": "false", "powered": "false" - }, - "id": 3987 + } }, { + "id": 16488, "properties": { - "face": "ceiling", "facing": "east", + "in_wall": "true", + "open": "true", "powered": "true" - }, - "id": 3988 + } }, { + "id": 16489, "properties": { - "face": "ceiling", "facing": "east", + "in_wall": "true", + "open": "true", "powered": "false" - }, - "id": 3989 - } - ] - }, - "minecraft:snow": { - "properties": { - "layers": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ + } + }, { + "id": 16490, "properties": { - "layers": "1" - }, - "id": 3990, - "default": true + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 16491, "properties": { - "layers": "2" - }, - "id": 3991 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 16492, "properties": { - "layers": "3" - }, - "id": 3992 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 16493, "properties": { - "layers": "4" - }, - "id": 3993 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 16494, "properties": { - "layers": "5" - }, - "id": 3994 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 16495, "properties": { - "layers": "6" - }, - "id": 3995 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "states": [ + { + "default": true, + "id": 16197 + } + ] + }, + "minecraft:crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16190, + "properties": { + "axis": "x" + } }, { + "default": true, + "id": 16191, "properties": { - "layers": "7" - }, - "id": 3996 + "axis": "y" + } }, { + "id": 16192, "properties": { - "layers": "8" - }, - "id": 3997 + "axis": "z" + } } ] }, - "minecraft:ice": { + "minecraft:crimson_nylium": { "states": [ { - "id": 3998, - "default": true + "default": true, + "id": 16196 } ] }, - "minecraft:snow_block": { + "minecraft:crimson_planks": { "states": [ { - "id": 3999, - "default": true + "default": true, + "id": 16254 } ] }, - "minecraft:cactus": { + "minecraft:crimson_pressure_plate": { "properties": { - "age": [ + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16268, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 16269, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "states": [ + { + "default": true, + "id": 16253 + } + ] + }, + "minecraft:crimson_sign": { + "properties": { + "rotation": [ "0", "1", "2", @@ -37713,1639 +40496,1077 @@ "13", "14", "15" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 16864, "properties": { - "age": "0" - }, - "id": 4000, - "default": true + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 16865, "properties": { - "age": "1" - }, - "id": 4001 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 16866, "properties": { - "age": "2" - }, - "id": 4002 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 16867, "properties": { - "age": "3" - }, - "id": 4003 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 16868, "properties": { - "age": "4" - }, - "id": 4004 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 16869, "properties": { - "age": "5" - }, - "id": 4005 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 16870, "properties": { - "age": "6" - }, - "id": 4006 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 16871, "properties": { - "age": "7" - }, - "id": 4007 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 16872, "properties": { - "age": "8" - }, - "id": 4008 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 16873, "properties": { - "age": "9" - }, - "id": 4009 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 16874, "properties": { - "age": "10" - }, - "id": 4010 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 16875, "properties": { - "age": "11" - }, - "id": 4011 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 16876, "properties": { - "age": "12" - }, - "id": 4012 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 16877, "properties": { - "age": "13" - }, - "id": 4013 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 16878, "properties": { - "age": "14" - }, - "id": 4014 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 16879, "properties": { - "age": "15" - }, - "id": 4015 - } - ] - }, - "minecraft:clay": { - "states": [ - { - "id": 4016, - "default": true - } - ] - }, - "minecraft:sugar_cane": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "rotation": "7", + "waterlogged": "false" + } + }, { + "id": 16880, "properties": { - "age": "0" - }, - "id": 4017, - "default": true + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 16881, "properties": { - "age": "1" - }, - "id": 4018 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 16882, "properties": { - "age": "2" - }, - "id": 4019 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 16883, "properties": { - "age": "3" - }, - "id": 4020 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 16884, "properties": { - "age": "4" - }, - "id": 4021 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 16885, "properties": { - "age": "5" - }, - "id": 4022 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 16886, "properties": { - "age": "6" - }, - "id": 4023 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 16887, "properties": { - "age": "7" - }, - "id": 4024 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 16888, "properties": { - "age": "8" - }, - "id": 4025 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 16889, "properties": { - "age": "9" - }, - "id": 4026 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 16890, "properties": { - "age": "10" - }, - "id": 4027 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 16891, "properties": { - "age": "11" - }, - "id": 4028 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 16892, "properties": { - "age": "12" - }, - "id": 4029 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 16893, "properties": { - "age": "13" - }, - "id": 4030 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 16894, "properties": { - "age": "14" - }, - "id": 4031 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 16895, "properties": { - "age": "15" - }, - "id": 4032 + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:jukebox": { + "minecraft:crimson_slab": { "properties": { - "has_record": [ + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 16256, "properties": { - "has_record": "true" - }, - "id": 4033 + "type": "top", + "waterlogged": "true" + } }, { + "id": 16257, "properties": { - "has_record": "false" - }, - "id": 4034, - "default": true + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16258, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16259, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16260, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16261, + "properties": { + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:oak_fence": { + "minecraft:crimson_stairs": { "properties": { - "east": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], "waterlogged": [ "true", "false" - ], - "west": [ - "true", - "false" ] }, "states": [ { + "id": 16528, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4035 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16529, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4036 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16530, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4037 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16531, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4038 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16532, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4039 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16533, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4040 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16534, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4041 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16535, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4042 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16536, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4043 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16537, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4044 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16538, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4045 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 16539, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4046 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16540, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4047 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16541, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4048 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16542, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4049 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16543, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4050 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16544, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4051 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16545, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4052 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16546, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4053 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16547, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4054 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16548, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4055 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16549, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4056 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16550, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4057 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16551, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4058 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16552, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4059 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16553, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4060 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16554, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4061 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16555, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4062 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16556, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4063 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16557, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4064 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16558, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4065 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16559, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4066, - "default": true - } - ] - }, - "minecraft:pumpkin": { - "states": [ + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, { - "id": 4067, - "default": true - } - ] - }, - "minecraft:netherrack": { - "states": [ - { - "id": 4068, - "default": true - } - ] - }, - "minecraft:soul_sand": { - "states": [ - { - "id": 4069, - "default": true - } - ] - }, - "minecraft:soul_soil": { - "states": [ - { - "id": 4070, - "default": true - } - ] - }, - "minecraft:basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4071 - }, - { - "properties": { - "axis": "y" - }, - "id": 4072, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4073 - } - ] - }, - "minecraft:polished_basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4074 - }, - { - "properties": { - "axis": "y" - }, - "id": 4075, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4076 - } - ] - }, - "minecraft:soul_torch": { - "states": [ - { - "id": 4077, - "default": true - } - ] - }, - "minecraft:soul_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4078, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4079 - }, - { - "properties": { - "facing": "west" - }, - "id": 4080 - }, - { - "properties": { - "facing": "east" - }, - "id": 4081 - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "id": 4082, - "default": true - } - ] - }, - "minecraft:nether_portal": { - "properties": { - "axis": [ - "x", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 4083, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 4084 - } - ] - }, - "minecraft:carved_pumpkin": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4085, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4086 - }, - { - "properties": { - "facing": "west" - }, - "id": 4087 - }, - { - "properties": { - "facing": "east" - }, - "id": 4088 - } - ] - }, - "minecraft:jack_o_lantern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 4089, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 4090 - }, - { - "properties": { - "facing": "west" - }, - "id": 4091 - }, - { - "properties": { - "facing": "east" - }, - "id": 4092 - } - ] - }, - "minecraft:cake": { - "properties": { - "bites": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - }, - "states": [ - { - "properties": { - "bites": "0" - }, - "id": 4093, - "default": true - }, - { - "properties": { - "bites": "1" - }, - "id": 4094 - }, - { - "properties": { - "bites": "2" - }, - "id": 4095 - }, - { - "properties": { - "bites": "3" - }, - "id": 4096 - }, - { - "properties": { - "bites": "4" - }, - "id": 4097 - }, - { - "properties": { - "bites": "5" - }, - "id": 4098 - }, - { - "properties": { - "bites": "6" - }, - "id": 4099 - } - ] - }, - "minecraft:repeater": { - "properties": { - "delay": [ - "1", - "2", - "3", - "4" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "locked": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4100 - }, + "id": 16560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, { + "id": 16561, "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4101 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16562, "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4102 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16563, "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4103, - "default": true + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16564, "properties": { - "delay": "1", "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4104 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16565, "properties": { - "delay": "1", "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4105 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16566, "properties": { - "delay": "1", "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4106 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16567, "properties": { - "delay": "1", "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4107 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16568, "properties": { - "delay": "1", "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4108 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16569, "properties": { - "delay": "1", "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4109 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16570, "properties": { - "delay": "1", "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4110 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16571, "properties": { - "delay": "1", "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4111 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4112 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4113 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4114 - }, - { - "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4115 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4116 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4117 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4118 - }, - { - "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4119 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4120 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4121 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4122 - }, - { - "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4123 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16572, "properties": { - "delay": "2", "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4124 + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16573, "properties": { - "delay": "2", "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4125 + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16574, "properties": { - "delay": "2", "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4126 + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16575, "properties": { - "delay": "2", "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4127 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4128 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4129 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4130 - }, - { - "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4131 + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16576, "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4132 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16577, "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4133 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16578, "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4134 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16579, "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4135 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16580, "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4136 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16581, "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4137 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16582, "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4138 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16583, "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4139 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16584, "properties": { - "delay": "3", "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4140 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16585, "properties": { - "delay": "3", "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4141 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16586, "properties": { - "delay": "3", "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4142 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16587, "properties": { - "delay": "3", "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4143 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16588, "properties": { - "delay": "3", "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4144 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16589, "properties": { - "delay": "3", "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4145 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16590, "properties": { - "delay": "3", "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4146 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16591, "properties": { - "delay": "3", "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4147 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16592, "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" - }, - "id": 4148 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16593, "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" - }, - "id": 4149 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16594, "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" - }, - "id": 4150 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16595, "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" - }, - "id": 4151 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16596, "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" - }, - "id": 4152 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16597, "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" - }, - "id": 4153 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 16598, "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" - }, - "id": 4154 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 16599, "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" - }, - "id": 4155 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 16600, "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" - }, - "id": 4156 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 16601, "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" - }, - "id": 4157 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 16602, "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" - }, - "id": 4158 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 16603, "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" - }, - "id": 4159 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 16604, "properties": { - "delay": "4", "facing": "east", - "locked": "true", - "powered": "true" - }, - "id": 4160 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 16605, "properties": { - "delay": "4", "facing": "east", - "locked": "true", - "powered": "false" - }, - "id": 4161 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 16606, "properties": { - "delay": "4", "facing": "east", - "locked": "false", - "powered": "true" - }, - "id": 4162 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 16607, "properties": { - "delay": "4", "facing": "east", - "locked": "false", - "powered": "false" - }, - "id": 4163 - } - ] - }, - "minecraft:white_stained_glass": { - "states": [ - { - "id": 4164, - "default": true - } - ] - }, - "minecraft:orange_stained_glass": { - "states": [ - { - "id": 4165, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass": { - "states": [ - { - "id": 4166, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass": { - "states": [ - { - "id": 4167, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass": { - "states": [ - { - "id": 4168, - "default": true - } - ] - }, - "minecraft:lime_stained_glass": { - "states": [ - { - "id": 4169, - "default": true - } - ] - }, - "minecraft:pink_stained_glass": { - "states": [ - { - "id": 4170, - "default": true - } - ] - }, - "minecraft:gray_stained_glass": { - "states": [ - { - "id": 4171, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass": { - "states": [ - { - "id": 4172, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "id": 4173, - "default": true - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "id": 4174, - "default": true - } - ] - }, - "minecraft:blue_stained_glass": { - "states": [ - { - "id": 4175, - "default": true - } - ] - }, - "minecraft:brown_stained_glass": { - "states": [ - { - "id": 4176, - "default": true + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:green_stained_glass": { + "minecraft:crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 4177, - "default": true - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ + "id": 16184, + "properties": { + "axis": "x" + } + }, { - "id": 4178, - "default": true - } - ] - }, - "minecraft:black_stained_glass": { - "states": [ + "default": true, + "id": 16185, + "properties": { + "axis": "y" + } + }, { - "id": 4179, - "default": true + "id": 16186, + "properties": { + "axis": "z" + } } ] }, - "minecraft:oak_trapdoor": { + "minecraft:crimson_trapdoor": { "properties": { "facing": [ "north", @@ -39372,649 +41593,649 @@ }, "states": [ { + "id": 16336, "properties": { "facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4180 + } }, { + "id": 16337, "properties": { "facing": "north", "half": "top", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4181 + } }, { + "id": 16338, "properties": { "facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4182 + } }, { + "id": 16339, "properties": { "facing": "north", "half": "top", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4183 + } }, { + "id": 16340, "properties": { "facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4184 + } }, { + "id": 16341, "properties": { "facing": "north", "half": "top", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4185 + } }, { + "id": 16342, "properties": { "facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4186 + } }, { + "id": 16343, "properties": { "facing": "north", "half": "top", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4187 + } }, { + "id": 16344, "properties": { "facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4188 + } }, { + "id": 16345, "properties": { "facing": "north", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4189 + } }, { + "id": 16346, "properties": { "facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4190 + } }, { + "id": 16347, "properties": { "facing": "north", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4191 + } }, { + "id": 16348, "properties": { "facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4192 + } }, { + "id": 16349, "properties": { "facing": "north", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4193 + } }, { + "id": 16350, "properties": { "facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4194 + } }, { + "default": true, + "id": 16351, "properties": { "facing": "north", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4195, - "default": true + } }, { + "id": 16352, "properties": { "facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4196 + } }, { + "id": 16353, "properties": { "facing": "south", "half": "top", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4197 + } }, { + "id": 16354, "properties": { "facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4198 + } }, { + "id": 16355, "properties": { "facing": "south", "half": "top", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4199 + } }, { + "id": 16356, "properties": { "facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4200 + } }, { + "id": 16357, "properties": { "facing": "south", "half": "top", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4201 + } }, { + "id": 16358, "properties": { "facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4202 + } }, { + "id": 16359, "properties": { "facing": "south", "half": "top", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4203 + } }, { + "id": 16360, "properties": { "facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4204 + } }, { + "id": 16361, "properties": { "facing": "south", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4205 + } }, { + "id": 16362, "properties": { "facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4206 + } }, { + "id": 16363, "properties": { "facing": "south", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4207 + } }, { + "id": 16364, "properties": { "facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4208 + } }, { + "id": 16365, "properties": { "facing": "south", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4209 + } }, { + "id": 16366, "properties": { "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4210 + } }, { + "id": 16367, "properties": { "facing": "south", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4211 + } }, { + "id": 16368, "properties": { "facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4212 + } }, { + "id": 16369, "properties": { "facing": "west", "half": "top", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4213 + } }, { + "id": 16370, "properties": { "facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4214 + } }, { + "id": 16371, "properties": { "facing": "west", "half": "top", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4215 + } }, { + "id": 16372, "properties": { "facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4216 + } }, { + "id": 16373, "properties": { "facing": "west", "half": "top", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4217 + } }, { + "id": 16374, "properties": { "facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4218 + } }, { + "id": 16375, "properties": { "facing": "west", "half": "top", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4219 + } }, { + "id": 16376, "properties": { "facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4220 + } }, { + "id": 16377, "properties": { "facing": "west", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4221 + } }, { + "id": 16378, "properties": { "facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4222 + } }, { + "id": 16379, "properties": { "facing": "west", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4223 + } }, { + "id": 16380, "properties": { "facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4224 + } }, { + "id": 16381, "properties": { "facing": "west", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4225 + } }, { + "id": 16382, "properties": { "facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4226 + } }, { + "id": 16383, "properties": { "facing": "west", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4227 + } }, { + "id": 16384, "properties": { "facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4228 + } }, { + "id": 16385, "properties": { "facing": "east", "half": "top", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4229 + } }, { + "id": 16386, "properties": { "facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4230 + } }, { + "id": 16387, "properties": { "facing": "east", "half": "top", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4231 + } }, { + "id": 16388, "properties": { "facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4232 + } }, { + "id": 16389, "properties": { "facing": "east", "half": "top", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4233 + } }, { + "id": 16390, "properties": { "facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4234 + } }, { + "id": 16391, "properties": { "facing": "east", "half": "top", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4235 + } }, { + "id": 16392, "properties": { "facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "true" - }, - "id": 4236 + } }, { + "id": 16393, "properties": { "facing": "east", "half": "bottom", "open": "true", "powered": "true", "waterlogged": "false" - }, - "id": 4237 + } }, { + "id": 16394, "properties": { "facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "true" - }, - "id": 4238 + } }, { + "id": 16395, "properties": { "facing": "east", "half": "bottom", "open": "true", "powered": "false", "waterlogged": "false" - }, - "id": 4239 + } }, { + "id": 16396, "properties": { "facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "true" - }, - "id": 4240 + } }, { + "id": 16397, "properties": { "facing": "east", "half": "bottom", "open": "false", "powered": "true", "waterlogged": "false" - }, - "id": 4241 + } }, { + "id": 16398, "properties": { "facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "true" - }, - "id": 4242 + } }, { + "id": 16399, "properties": { "facing": "east", "half": "bottom", "open": "false", "powered": "false", "waterlogged": "false" - }, - "id": 4243 + } } ] }, - "minecraft:spruce_trapdoor": { + "minecraft:crimson_wall_sign": { "properties": { "facing": [ "north", @@ -40022,18 +42243,6 @@ "west", "east" ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], "waterlogged": [ "true", "false" @@ -40041,1318 +42250,1140 @@ }, "states": [ { + "id": 16928, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "true", "waterlogged": "true" - }, - "id": 4244 + } }, { + "default": true, + "id": 16929, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "true", "waterlogged": "false" - }, - "id": 4245 + } }, { + "id": 16930, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "facing": "south", "waterlogged": "true" - }, - "id": 4246 + } }, { + "id": 16931, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "facing": "south", "waterlogged": "false" - }, - "id": 4247 + } }, { + "id": 16932, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "facing": "west", "waterlogged": "true" - }, - "id": 4248 + } }, { + "id": 16933, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "facing": "west", "waterlogged": "false" - }, - "id": 4249 + } }, { + "id": 16934, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "facing": "east", "waterlogged": "true" - }, - "id": 4250 + } }, { + "id": 16935, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "facing": "east", "waterlogged": "false" - }, - "id": 4251 - }, + } + } + ] + }, + "minecraft:crying_obsidian": { + "states": [ + { + "default": true, + "id": 17037 + } + ] + }, + "minecraft:cut_copper": { + "states": [ + { + "default": true, + "id": 18917 + } + ] + }, + "minecraft:cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19256, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "type": "top", "waterlogged": "true" - }, - "id": 4252 + } }, { + "id": 19257, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "type": "top", "waterlogged": "false" - }, - "id": 4253 + } }, { + "id": 19258, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "type": "bottom", "waterlogged": "true" - }, - "id": 4254 + } }, { + "default": true, + "id": 19259, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "type": "bottom", "waterlogged": "false" - }, - "id": 4255 + } }, { + "id": 19260, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "type": "double", "waterlogged": "true" - }, - "id": 4256 + } }, { + "id": 19261, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "type": "double", "waterlogged": "false" - }, - "id": 4257 - }, + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19158, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 4258 + } }, { + "id": 19159, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 4259, - "default": true + } }, { + "id": 19160, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4260 + } }, { + "id": 19161, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4261 + } }, { + "id": 19162, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4262 + } }, { + "id": 19163, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4263 + } }, { + "id": 19164, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4264 + } }, { + "id": 19165, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4265 + } }, { + "id": 19166, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4266 + } }, { + "id": 19167, "properties": { - "facing": "south", + "facing": "north", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4267 + } }, { + "id": 19168, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" - }, - "id": 4268 + } }, { + "default": true, + "id": 19169, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" - }, - "id": 4269 + } }, { + "id": 19170, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4270 + } }, { + "id": 19171, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4271 + } }, { + "id": 19172, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4272 + } }, { + "id": 19173, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4273 + } }, { + "id": 19174, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4274 + } }, { + "id": 19175, "properties": { - "facing": "south", + "facing": "north", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4275 + } }, { + "id": 19176, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4276 + } }, { + "id": 19177, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4277 + } }, { + "id": 19178, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", + "shape": "straight", "waterlogged": "true" - }, - "id": 4278 + } }, { + "id": 19179, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "true", - "powered": "false", + "shape": "straight", "waterlogged": "false" - }, - "id": 4279 + } }, { + "id": 19180, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4280 + } }, { + "id": 19181, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4281 + } }, { + "id": 19182, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "false", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4282 + } }, { + "id": 19183, "properties": { - "facing": "west", + "facing": "south", "half": "top", - "open": "false", - "powered": "false", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4283 + } }, { + "id": 19184, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4284 + } }, { + "id": 19185, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4285 + } }, { + "id": 19186, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4286 + } }, { + "id": 19187, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4287 + } }, { + "id": 19188, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "straight", "waterlogged": "true" - }, - "id": 4288 + } }, { + "id": 19189, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "straight", "waterlogged": "false" - }, - "id": 4289 + } }, { + "id": 19190, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4290 + } }, { + "id": 19191, "properties": { - "facing": "west", + "facing": "south", "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4291 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4292 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4293 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4294 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4295 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4296 - }, - { - "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4297 + } }, { + "id": 19192, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4298 + } }, { + "id": 19193, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4299 + } }, { + "id": 19194, "properties": { - "facing": "east", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4300 + } }, { + "id": 19195, "properties": { - "facing": "east", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4301 + } }, { + "id": 19196, "properties": { - "facing": "east", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4302 + } }, { + "id": 19197, "properties": { - "facing": "east", + "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4303 + } }, { + "id": 19198, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 4304 + } }, { + "id": 19199, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 4305 + } }, { + "id": 19200, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4306 + } }, { + "id": 19201, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4307 - } - ] - }, - "minecraft:birch_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 19202, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4308 + } }, { + "id": 19203, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4309 + } }, { + "id": 19204, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4310 + } }, { + "id": 19205, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "true", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4311 + } }, { + "id": 19206, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4312 + } }, { + "id": 19207, "properties": { - "facing": "north", + "facing": "west", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4313 + } }, { + "id": 19208, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 4314 + } }, { + "id": 19209, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 4315 + } }, { + "id": 19210, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4316 + } }, { + "id": 19211, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4317 + } }, { + "id": 19212, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4318 + } }, { + "id": 19213, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4319 + } }, { + "id": 19214, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4320 + } }, { + "id": 19215, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4321 + } }, { + "id": 19216, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4322 + } }, { + "id": 19217, "properties": { - "facing": "north", + "facing": "west", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4323, - "default": true + } }, { + "id": 19218, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" - }, - "id": 4324 + } }, { + "id": 19219, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" - }, - "id": 4325 + } }, { + "id": 19220, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4326 + } }, { + "id": 19221, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4327 + } }, { + "id": 19222, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4328 + } }, { + "id": 19223, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4329 + } }, { + "id": 19224, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4330 + } }, { + "id": 19225, "properties": { - "facing": "south", + "facing": "east", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4331 + } }, { + "id": 19226, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4332 + } }, { + "id": 19227, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4333 + } }, { + "id": 19228, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "straight", "waterlogged": "true" - }, - "id": 4334 + } }, { + "id": 19229, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "straight", "waterlogged": "false" - }, - "id": 4335 + } }, { + "id": 19230, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 4336 + } }, { + "id": 19231, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 4337 + } }, { + "id": 19232, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 4338 + } }, { + "id": 19233, "properties": { - "facing": "south", + "facing": "east", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 4339 + } }, { + "id": 19234, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4340 + } }, { + "id": 19235, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4341 + } }, { + "id": 19236, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4342 + } }, { + "id": 19237, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4343 - }, + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "default": true, + "id": 8960 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9155, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "type": "top", "waterlogged": "true" - }, - "id": 4344 + } }, { + "id": 9156, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "type": "top", "waterlogged": "false" - }, - "id": 4345 + } }, { + "id": 9157, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "type": "bottom", "waterlogged": "true" - }, - "id": 4346 + } }, { + "default": true, + "id": 9158, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "type": "bottom", "waterlogged": "false" - }, - "id": 4347 + } }, { + "id": 9159, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "type": "double", "waterlogged": "true" - }, - "id": 4348 + } }, { + "id": 9160, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "type": "double", "waterlogged": "false" - }, - "id": 4349 - }, + } + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "default": true, + "id": 478 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9101, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "type": "top", "waterlogged": "true" - }, - "id": 4350 + } }, { + "id": 9102, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "type": "top", "waterlogged": "false" - }, - "id": 4351 + } }, { + "id": 9103, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "type": "bottom", "waterlogged": "true" - }, - "id": 4352 + } }, { + "default": true, + "id": 9104, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "type": "bottom", "waterlogged": "false" - }, - "id": 4353 + } }, { + "id": 9105, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "type": "double", "waterlogged": "true" - }, - "id": 4354 + } }, { + "id": 9106, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "type": "double", "waterlogged": "false" - }, - "id": 4355 - }, + } + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8782, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4356 + "rotation": "0" + } }, { + "id": 8783, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4357 + "rotation": "1" + } }, { + "id": 8784, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4358 + "rotation": "2" + } }, { + "id": 8785, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4359 + "rotation": "3" + } }, { + "id": 8786, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4360 + "rotation": "4" + } }, { + "id": 8787, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4361 + "rotation": "5" + } }, { + "id": 8788, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4362 + "rotation": "6" + } }, { + "id": 8789, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4363 + "rotation": "7" + } }, { + "id": 8790, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4364 + "rotation": "8" + } }, { + "id": 8791, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4365 + "rotation": "9" + } }, { + "id": 8792, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4366 + "rotation": "10" + } }, { + "id": 8793, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4367 + "rotation": "11" + } }, { + "id": 8794, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4368 + "rotation": "12" + } }, { + "id": 8795, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4369 + "rotation": "13" + } }, { + "id": 8796, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4370 + "rotation": "14" + } }, { + "id": 8797, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4371 + "rotation": "15" + } } ] }, - "minecraft:jungle_trapdoor": { + "minecraft:cyan_bed": { "properties": { "facing": [ "north", @@ -41360,668 +43391,1099 @@ "west", "east" ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ + "occupied": [ "true", "false" ], - "waterlogged": [ - "true", - "false" + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1423, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4372 + "occupied": "true", + "part": "head" + } }, { + "id": 1424, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4373 + "occupied": "true", + "part": "foot" + } }, { + "id": 1425, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4374 + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1426, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4375 + "occupied": "false", + "part": "foot" + } }, { + "id": 1427, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4376 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1428, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4377 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1429, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4378 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1430, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4379 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1431, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4380 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1432, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4381 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1433, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4382 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1434, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4383 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1435, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4384 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1436, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4385 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1437, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4386 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1438, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4387, - "default": true - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18473, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "candles": "1", + "lit": "true", "waterlogged": "true" - }, - "id": 4388 + } }, { + "id": 18474, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "candles": "1", + "lit": "true", "waterlogged": "false" - }, - "id": 4389 + } }, { + "id": 18475, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "candles": "1", + "lit": "false", "waterlogged": "true" - }, - "id": 4390 + } }, { + "default": true, + "id": 18476, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "candles": "1", + "lit": "false", "waterlogged": "false" - }, - "id": 4391 + } }, { + "id": 18477, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "candles": "2", + "lit": "true", "waterlogged": "true" - }, - "id": 4392 + } }, { + "id": 18478, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "candles": "2", + "lit": "true", "waterlogged": "false" - }, - "id": 4393 + } }, { + "id": 18479, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "candles": "2", + "lit": "false", "waterlogged": "true" - }, - "id": 4394 + } }, { + "id": 18480, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "candles": "2", + "lit": "false", "waterlogged": "false" - }, - "id": 4395 + } }, { + "id": 18481, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "candles": "3", + "lit": "true", "waterlogged": "true" - }, - "id": 4396 + } }, { + "id": 18482, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "candles": "3", + "lit": "true", "waterlogged": "false" - }, - "id": 4397 + } }, { + "id": 18483, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "candles": "3", + "lit": "false", "waterlogged": "true" - }, - "id": 4398 + } }, { + "id": 18484, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "candles": "3", + "lit": "false", "waterlogged": "false" - }, - "id": 4399 + } }, { + "id": 18485, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "candles": "4", + "lit": "true", "waterlogged": "true" - }, - "id": 4400 + } }, { + "id": 18486, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "candles": "4", + "lit": "true", "waterlogged": "false" - }, - "id": 4401 + } }, { + "id": 18487, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "candles": "4", + "lit": "false", "waterlogged": "true" - }, - "id": 4402 + } }, { + "id": 18488, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "candles": "4", + "lit": "false", "waterlogged": "false" - }, - "id": 4403 - }, + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18605, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4404 + "lit": "true" + } }, { + "default": true, + "id": 18606, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4405 - }, + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4406 - }, + "default": true, + "id": 8616 + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ { - "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4407 - }, + "default": true, + "id": 10328 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ { - "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4408 + "default": true, + "id": 10344 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10291, + "properties": { + "facing": "north" + } }, { + "id": 10292, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4409 + "facing": "south" + } }, { + "id": 10293, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4410 + "facing": "west" + } }, { + "id": 10294, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4411 + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10213, + "properties": { + "facing": "north" + } }, { + "id": 10214, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4412 + "facing": "east" + } }, { + "id": 10215, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, + "facing": "south" + } + }, + { + "id": 10216, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 10217, + "properties": { + "facing": "up" + } + }, + { + "id": 10218, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ + { + "default": true, "id": 4413 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7781, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4414 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7782, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4415 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7783, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4416 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7784, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4417 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7787, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7791, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7795, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7799, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7803, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7807, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7811, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ + { + "default": true, + "id": 7485 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8930, + "properties": { + "facing": "north" + } + }, + { + "id": 8931, + "properties": { + "facing": "south" + } + }, + { + "id": 8932, + "properties": { + "facing": "west" + } + }, + { + "id": 8933, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "states": [ + { + "default": true, + "id": 1647 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7235, + "properties": { + "facing": "north" + } + }, + { + "id": 7236, + "properties": { + "facing": "south" + } + }, + { + "id": 7237, + "properties": { + "facing": "west" + } + }, + { + "id": 7238, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "states": [ + { + "default": true, + "id": 1666 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7059, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7060, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7061, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7062, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 7063, "properties": { + "face": "floor", "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4418 + "powered": "true" + } }, { + "id": 7064, "properties": { + "face": "floor", "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4419 + "powered": "false" + } }, { + "id": 7065, "properties": { + "face": "floor", "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4420 + "powered": "true" + } }, { + "id": 7066, "properties": { + "face": "floor", "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4421 + "powered": "false" + } }, { + "id": 7067, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4422 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 7068, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4423 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 7069, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4424 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 7070, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4425 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 7071, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4426 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 7072, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4427 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 7073, "properties": { + "face": "wall", "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4428 + "powered": "true" + } }, { + "id": 7074, "properties": { + "face": "wall", "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4429 + "powered": "false" + } }, { + "id": 7075, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4430 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 7076, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4431 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 7077, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4432 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 7078, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4433 + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7079, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7080, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 7081, "properties": { + "face": "ceiling", "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4434 + "powered": "true" + } }, { + "id": 7082, "properties": { + "face": "ceiling", "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4435 + "powered": "false" + } } ] }, - "minecraft:acacia_trapdoor": { + "minecraft:dark_oak_door": { "properties": { "facing": [ "north", @@ -42030,8 +44492,12 @@ "east" ], "half": [ - "top", - "bottom" + "upper", + "lower" + ], + "hinge": [ + "left", + "right" ], "open": [ "true", @@ -42040,24990 +44506,24724 @@ "powered": [ "true", "false" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "id": 9811, "properties": { "facing": "north", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4436 + "powered": "true" + } }, { + "id": 9812, "properties": { "facing": "north", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4437 + "powered": "false" + } }, { + "id": 9813, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4438 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9814, "properties": { "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4439 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9815, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4440 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9816, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4441 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9817, "properties": { "facing": "north", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4442 + "powered": "true" + } }, { + "id": 9818, "properties": { "facing": "north", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4443 + "powered": "false" + } }, { + "id": 9819, "properties": { "facing": "north", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4444 + "powered": "true" + } }, { + "id": 9820, "properties": { "facing": "north", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4445 + "powered": "false" + } }, { + "id": 9821, "properties": { "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4446 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9822, "properties": { "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4447 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9823, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4448 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9824, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4449 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9825, "properties": { "facing": "north", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4450 + "powered": "true" + } }, { + "id": 9826, "properties": { "facing": "north", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4451, - "default": true + "powered": "false" + } }, { + "id": 9827, "properties": { "facing": "south", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4452 + "powered": "true" + } }, { + "id": 9828, "properties": { "facing": "south", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4453 + "powered": "false" + } }, { + "id": 9829, "properties": { "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4454 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9830, "properties": { "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4455 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9831, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4456 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9832, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4457 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9833, "properties": { "facing": "south", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4458 + "powered": "true" + } }, { + "id": 9834, "properties": { "facing": "south", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4459 + "powered": "false" + } }, { + "id": 9835, "properties": { "facing": "south", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4460 + "powered": "true" + } }, { + "id": 9836, "properties": { "facing": "south", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4461 + "powered": "false" + } }, { + "id": 9837, "properties": { "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4462 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9838, "properties": { "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4463 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9839, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4464 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9840, "properties": { "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4465 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9841, "properties": { "facing": "south", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4466 + "powered": "true" + } }, { + "id": 9842, "properties": { "facing": "south", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4467 + "powered": "false" + } }, { + "id": 9843, "properties": { "facing": "west", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4468 + "powered": "true" + } }, { + "id": 9844, "properties": { "facing": "west", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4469 + "powered": "false" + } }, { + "id": 9845, "properties": { "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4470 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9846, "properties": { "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4471 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9847, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4472 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9848, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4473 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9849, "properties": { "facing": "west", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4474 + "powered": "true" + } }, { + "id": 9850, "properties": { "facing": "west", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4475 + "powered": "false" + } }, { + "id": 9851, "properties": { "facing": "west", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4476 + "powered": "true" + } }, { + "id": 9852, "properties": { "facing": "west", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4477 + "powered": "false" + } }, { + "id": 9853, "properties": { "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4478 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9854, "properties": { "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4479 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9855, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4480 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9856, "properties": { "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4481 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9857, "properties": { "facing": "west", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4482 + "powered": "true" + } }, { + "id": 9858, "properties": { "facing": "west", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4483 + "powered": "false" + } }, { + "id": 9859, "properties": { "facing": "east", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4484 + "powered": "true" + } }, { + "id": 9860, "properties": { "facing": "east", - "half": "top", + "half": "upper", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4485 + "powered": "false" + } }, { + "id": 9861, "properties": { "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4486 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9862, "properties": { "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4487 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9863, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4488 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9864, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4489 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9865, "properties": { "facing": "east", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4490 + "powered": "true" + } }, { + "id": 9866, "properties": { "facing": "east", - "half": "top", + "half": "upper", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4491 + "powered": "false" + } }, { + "id": 9867, "properties": { "facing": "east", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4492 + "powered": "true" + } }, { + "id": 9868, "properties": { "facing": "east", - "half": "bottom", + "half": "lower", + "hinge": "left", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4493 + "powered": "false" + } }, { + "id": 9869, "properties": { "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4494 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9870, "properties": { "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4495 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9871, "properties": { "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4496 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9872, "properties": { "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4497 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9873, "properties": { "facing": "east", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4498 + "powered": "true" + } }, { + "id": 9874, "properties": { "facing": "east", - "half": "bottom", + "half": "lower", + "hinge": "right", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4499 + "powered": "false" + } } ] }, - "minecraft:dark_oak_trapdoor": { + "minecraft:dark_oak_fence": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" + "east": [ + "true", + "false" ], - "open": [ + "north": [ "true", "false" ], - "powered": [ + "south": [ "true", "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 9491, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4500 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9492, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4501 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9493, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4502 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9494, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4503 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9495, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4504 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9496, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4505 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9497, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4506 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9498, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4507 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9499, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4508 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9500, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4509 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9501, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9502, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9503, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9504, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9505, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9506, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9507, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9508, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9509, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9510, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9511, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9512, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9513, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9514, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9515, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9516, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9517, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9518, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9519, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9520, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9521, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9522, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9299, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4510 + "powered": "true" + } }, { + "id": 9300, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4511 + "powered": "false" + } }, { + "id": 9301, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4512 + "powered": "true" + } }, { + "id": 9302, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4513 + "powered": "false" + } }, { + "id": 9303, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 9304, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 9305, + "properties": { + "facing": "north", + "in_wall": "false", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4514 + "powered": "true" + } }, { + "default": true, + "id": 9306, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "false", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4515, - "default": true + "powered": "false" + } }, { + "id": 9307, "properties": { "facing": "south", - "half": "top", + "in_wall": "true", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4516 + "powered": "true" + } }, { + "id": 9308, "properties": { "facing": "south", - "half": "top", + "in_wall": "true", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4517 + "powered": "false" + } }, { + "id": 9309, "properties": { "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4518 + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9310, "properties": { "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4519 + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9311, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4520 + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9312, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4521 + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9313, "properties": { "facing": "south", - "half": "top", + "in_wall": "false", "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4522 + "powered": "true" + } }, { + "id": 9314, "properties": { "facing": "south", - "half": "top", + "in_wall": "false", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4523 + "powered": "false" + } }, { + "id": 9315, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4524 + "powered": "true" + } }, { + "id": 9316, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4525 + "powered": "false" + } }, { + "id": 9317, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 9318, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 9319, + "properties": { + "facing": "west", + "in_wall": "false", "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4526 + "powered": "true" + } }, { + "id": 9320, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "false", "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4527 + "powered": "false" + } }, { + "id": 9321, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "false", "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 4528 + "powered": "true" + } }, { + "id": 9322, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "false", "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 4529 + "powered": "false" + } }, { + "id": 9323, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 4530 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9324, "properties": { - "facing": "south", - "half": "bottom", + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 9325, + "properties": { + "facing": "east", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 4531 + "powered": "true" + } }, { + "id": 9326, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 4532 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9327, "properties": { - "facing": "west", - "half": "top", + "facing": "east", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 4533 + "powered": "true" + } }, { + "id": 9328, "properties": { - "facing": "west", - "half": "top", + "facing": "east", + "in_wall": "false", "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 4534 + "powered": "false" + } }, { + "id": 9329, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 4535 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9330, "properties": { - "facing": "west", - "half": "top", + "facing": "east", + "in_wall": "false", "open": "false", - "powered": "true", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 346, + "properties": { + "distance": "1", + "persistent": "true", "waterlogged": "true" - }, - "id": 4536 + } }, { + "id": 347, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "distance": "1", + "persistent": "true", "waterlogged": "false" - }, - "id": 4537 + } }, { + "id": 348, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "distance": "1", + "persistent": "false", "waterlogged": "true" - }, - "id": 4538 + } }, { + "id": 349, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "distance": "1", + "persistent": "false", "waterlogged": "false" - }, - "id": 4539 + } }, { + "id": 350, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "2", + "persistent": "true", "waterlogged": "true" - }, - "id": 4540 + } }, { + "id": 351, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "2", + "persistent": "true", "waterlogged": "false" - }, - "id": 4541 + } }, { + "id": 352, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "2", + "persistent": "false", "waterlogged": "true" - }, - "id": 4542 + } }, { + "id": 353, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "2", + "persistent": "false", "waterlogged": "false" - }, - "id": 4543 + } }, { + "id": 354, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "3", + "persistent": "true", "waterlogged": "true" - }, - "id": 4544 + } }, { + "id": 355, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "3", + "persistent": "true", "waterlogged": "false" - }, - "id": 4545 + } }, { + "id": 356, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "3", + "persistent": "false", "waterlogged": "true" - }, - "id": 4546 + } }, { + "id": 357, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "3", + "persistent": "false", "waterlogged": "false" - }, - "id": 4547 + } }, { + "id": 358, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "distance": "4", + "persistent": "true", "waterlogged": "true" - }, - "id": 4548 + } }, { + "id": 359, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "distance": "4", + "persistent": "true", "waterlogged": "false" - }, - "id": 4549 + } }, { + "id": 360, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "distance": "4", + "persistent": "false", "waterlogged": "true" - }, - "id": 4550 + } }, { + "id": 361, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "distance": "4", + "persistent": "false", "waterlogged": "false" - }, - "id": 4551 + } }, { + "id": 362, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "distance": "5", + "persistent": "true", "waterlogged": "true" - }, - "id": 4552 + } }, { + "id": 363, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "distance": "5", + "persistent": "true", "waterlogged": "false" - }, - "id": 4553 + } }, { + "id": 364, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "distance": "5", + "persistent": "false", "waterlogged": "true" - }, - "id": 4554 + } }, { + "id": 365, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "distance": "5", + "persistent": "false", "waterlogged": "false" - }, - "id": 4555 + } }, { + "id": 366, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "6", + "persistent": "true", "waterlogged": "true" - }, - "id": 4556 + } }, { + "id": 367, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "6", + "persistent": "true", "waterlogged": "false" - }, - "id": 4557 + } }, { + "id": 368, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "6", + "persistent": "false", "waterlogged": "true" - }, - "id": 4558 + } }, { + "id": 369, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "6", + "persistent": "false", "waterlogged": "false" - }, - "id": 4559 + } }, { + "id": 370, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "7", + "persistent": "true", "waterlogged": "true" - }, - "id": 4560 + } }, { + "id": 371, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "7", + "persistent": "true", "waterlogged": "false" - }, - "id": 4561 + } }, { + "id": 372, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "7", + "persistent": "false", "waterlogged": "true" - }, - "id": 4562 + } }, { + "default": true, + "id": 373, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "7", + "persistent": "false", "waterlogged": "false" - }, - "id": 4563 - } - ] - }, - "minecraft:stone_bricks": { - "states": [ - { - "id": 4564, - "default": true - } - ] - }, - "minecraft:mossy_stone_bricks": { - "states": [ - { - "id": 4565, - "default": true + } } ] }, - "minecraft:cracked_stone_bricks": { + "minecraft:dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 4566, - "default": true - } - ] - }, - "minecraft:chiseled_stone_bricks": { - "states": [ + "id": 132, + "properties": { + "axis": "x" + } + }, { - "id": 4567, - "default": true - } - ] - }, - "minecraft:infested_stone": { - "states": [ + "default": true, + "id": 133, + "properties": { + "axis": "y" + } + }, { - "id": 4568, - "default": true + "id": 134, + "properties": { + "axis": "z" + } } ] }, - "minecraft:infested_cobblestone": { + "minecraft:dark_oak_planks": { "states": [ { - "id": 4569, - "default": true + "default": true, + "id": 20 } ] }, - "minecraft:infested_stone_bricks": { + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, "states": [ { - "id": 4570, - "default": true - } - ] - }, - "minecraft:infested_mossy_stone_bricks": { - "states": [ + "id": 4188, + "properties": { + "powered": "true" + } + }, { - "id": 4571, - "default": true + "default": true, + "id": 4189, + "properties": { + "powered": "false" + } } ] }, - "minecraft:infested_cracked_stone_bricks": { + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, "states": [ { - "id": 4572, - "default": true - } - ] - }, - "minecraft:infested_chiseled_stone_bricks": { - "states": [ + "default": true, + "id": 32, + "properties": { + "stage": "0" + } + }, { - "id": 4573, - "default": true + "id": 33, + "properties": { + "stage": "1" + } } ] }, - "minecraft:brown_mushroom_block": { + "minecraft:dark_oak_sign": { "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 3796, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4574, - "default": true + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3797, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4575 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3798, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4576 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3799, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4577 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3800, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4578 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3801, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4579 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3802, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4580 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3803, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4581 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3804, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4582 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3805, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4583 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3806, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4584 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3807, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4585 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3808, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4586 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3809, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4587 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3810, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4588 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3811, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4589 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 3812, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4590 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3813, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4591 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3814, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4592 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3815, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4593 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3816, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4594 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3817, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4595 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3818, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4596 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3819, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4597 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3820, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4598 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3821, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4599 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3822, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4600 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3823, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4601 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3824, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4602 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3825, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4603 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3826, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4604 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3827, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4605 - }, + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9071, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4606 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9072, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4607 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9073, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4608 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9074, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4609 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9075, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4610 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9076, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4611 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8084, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4612 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8085, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4613 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8086, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4614 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8087, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4615 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8088, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4616 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8089, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4617 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8090, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4618 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8091, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4619 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8092, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4620 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8093, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4621 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8094, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4622 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 8095, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4623 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8096, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4624 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8097, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4625 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8098, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4626 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8099, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4627 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8100, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4628 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8101, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4629 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8102, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4630 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8103, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4631 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8104, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4632 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8105, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4633 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8106, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4634 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8107, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4635 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8108, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4636 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8109, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4637 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, { + "id": 8110, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4638, - "default": true + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8111, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4639 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8112, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4640 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8113, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4641 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8114, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4642 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8115, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4643 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8116, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4644 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8117, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4645 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8118, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4646 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8119, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4647 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8120, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4648 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8121, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4649 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8122, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4650 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8123, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4651 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8124, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4652 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8125, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4653 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8126, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4654 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8127, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4655 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8128, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4656 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8129, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4657 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8130, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4658 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8131, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4659 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8132, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4660 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8133, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4661 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8134, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4662 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8135, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4663 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8136, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4664 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8137, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4665 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8138, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4666 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8139, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4667 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8140, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4668 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8141, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4669 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8142, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4670 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8143, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4671 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8144, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4672 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8145, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4673 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8146, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4674 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8147, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4675 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8148, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4676 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8149, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4677 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8150, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4678 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8151, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4679 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8152, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4680 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4681 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4682 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4683 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4684 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4685 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4686 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4687 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4688 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4689 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4690 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8153, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4691 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8154, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4692 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8155, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4693 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8156, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4694 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8157, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4695 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8158, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4696 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8159, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4697 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8160, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4698 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8161, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4699 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8162, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4700 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8163, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4701 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:mushroom_stem": { + "minecraft:dark_oak_trapdoor": { "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ + "open": [ "true", "false" ], - "up": [ + "powered": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 4740, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4702, - "default": true + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4741, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4703 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4742, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4704 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4743, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4705 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4744, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4706 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4745, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4707 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4746, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4708 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4747, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4709 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4748, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4710 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4749, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4711 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4750, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4712 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4751, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4713 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4752, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4714 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4753, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4715 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4754, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4716 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 4755, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4717 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4756, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4718 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4757, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4719 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4758, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4720 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4759, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4721 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4760, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4722 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4761, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4723 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4762, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4724 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4763, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4725 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4764, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4726 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4765, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4727 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4766, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4728 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4767, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4729 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4768, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4730 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4769, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4731 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4770, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4732 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4771, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4733 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4772, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4734 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4773, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4735 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4774, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4736 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4775, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4737 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4776, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4738 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4777, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4739 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4778, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4740 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4779, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4741 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4780, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4742 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4781, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4743 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4782, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4744 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4783, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4745 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4784, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4746 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4785, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4747 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4786, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4748 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4787, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4749 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4788, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4750 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4789, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4751 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4790, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4752 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4791, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4753 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4792, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4754 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4793, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4755 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4794, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4756 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4795, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4757 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4796, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4758 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4797, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4759 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4798, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4760 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4799, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4761 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4800, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4762 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4801, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4763 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4802, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4764 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4803, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4765 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, - "minecraft:iron_bars": { + "minecraft:dark_oak_wall_sign": { "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], "waterlogged": [ "true", "false" - ], - "west": [ - "true", - "false" ] }, "states": [ { + "id": 4072, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4766 + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 4073, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4767 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 4074, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4768 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 4075, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4769 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 4076, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4770 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 4077, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4771 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 4078, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4772 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 4079, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4773 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 179, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4774 + "axis": "x" + } }, { + "default": true, + "id": 180, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4775 + "axis": "y" + } }, { + "id": 181, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4776 - }, + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "states": [ + { + "default": true, + "id": 8344 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8597, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4777 + "type": "top", + "waterlogged": "true" + } }, { + "id": 8598, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4778 + "type": "top", + "waterlogged": "false" + } }, { + "id": 8599, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4779 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 8600, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4780 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 8601, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4781 + "type": "double", + "waterlogged": "true" + } }, { + "id": 8602, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4782 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8505, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8506, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4783 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8507, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4784 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8508, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4785 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8509, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4786 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8510, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4787 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8511, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4788 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8512, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4789 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8513, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4790 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8514, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4791 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8515, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4792 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 8516, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4793 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8517, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4794 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8518, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4795 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8519, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4796 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8520, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4797, - "default": true - } - ] - }, - "minecraft:chain": { - "properties": { - "axis": [ - "x", - "y", - "z" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, { + "id": 8521, "properties": { - "axis": "x", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 4798 + } }, { + "id": 8522, "properties": { - "axis": "x", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 4799 + } }, { + "id": 8523, "properties": { - "axis": "y", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 4800 + } }, { + "id": 8524, "properties": { - "axis": "y", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 4801, - "default": true + } }, { + "id": 8525, "properties": { - "axis": "z", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 4802 + } }, { + "id": 8526, "properties": { - "axis": "z", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 4803 - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8527, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4804 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8528, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4805 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8529, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4806 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8530, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4807 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8531, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4808 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8532, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4809 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8533, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4810 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8534, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4811 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8535, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4812 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8536, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4813 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8537, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4814 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8538, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4815 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8539, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4816 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8540, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4817 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8541, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4818 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8542, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4819 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8543, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4820 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8544, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4821 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8545, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4822 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8546, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4823 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8547, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4824 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8548, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4825 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8549, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4826 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8550, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4827 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8551, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4828 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8552, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4829 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8553, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4830 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8554, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4831 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8555, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4832 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8556, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4833 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8557, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4834 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8558, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4835, - "default": true - } - ] - }, - "minecraft:melon": { - "states": [ + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, { - "id": 4836, - "default": true - } - ] - }, - "minecraft:attached_pumpkin_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "id": 8559, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, { + "id": 8560, "properties": { - "facing": "north" - }, - "id": 4837, - "default": true + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8561, "properties": { - "facing": "south" - }, - "id": 4838 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8562, "properties": { - "facing": "west" - }, - "id": 4839 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8563, "properties": { - "facing": "east" - }, - "id": 4840 - } - ] - }, - "minecraft:attached_melon_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, { + "id": 8564, "properties": { - "facing": "north" - }, - "id": 4841, - "default": true + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8565, "properties": { - "facing": "south" - }, - "id": 4842 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8566, "properties": { - "facing": "west" - }, - "id": 4843 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8567, "properties": { - "facing": "east" - }, - "id": 4844 - } - ] - }, - "minecraft:pumpkin_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, { + "id": 8568, "properties": { - "age": "0" - }, - "id": 4845, - "default": true + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8569, "properties": { - "age": "1" - }, - "id": 4846 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8570, "properties": { - "age": "2" - }, - "id": 4847 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8571, "properties": { - "age": "3" - }, - "id": 4848 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8572, "properties": { - "age": "4" - }, - "id": 4849 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8573, "properties": { - "age": "5" - }, - "id": 4850 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8574, "properties": { - "age": "6" - }, - "id": 4851 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8575, "properties": { - "age": "7" - }, - "id": 4852 - } - ] - }, - "minecraft:melon_stem": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, { + "id": 8576, "properties": { - "age": "0" - }, - "id": 4853, - "default": true + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8577, "properties": { - "age": "1" - }, - "id": 4854 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8578, "properties": { - "age": "2" - }, - "id": 4855 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8579, "properties": { - "age": "3" - }, - "id": 4856 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8580, "properties": { - "age": "4" - }, - "id": 4857 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8581, "properties": { - "age": "5" - }, - "id": 4858 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8582, "properties": { - "age": "6" - }, - "id": 4859 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8583, "properties": { - "age": "7" - }, - "id": 4860 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8584, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:vine": { + "minecraft:daylight_detector": { "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ + "inverted": [ "true", "false" ], - "west": [ - "true", - "false" + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "id": 7311, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4861 + "inverted": "true", + "power": "0" + } }, { + "id": 7312, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4862 + "inverted": "true", + "power": "1" + } }, { + "id": 7313, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4863 + "inverted": "true", + "power": "2" + } }, { + "id": 7314, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4864 + "inverted": "true", + "power": "3" + } }, { + "id": 7315, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4865 + "inverted": "true", + "power": "4" + } }, { + "id": 7316, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4866 + "inverted": "true", + "power": "5" + } }, { + "id": 7317, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4867 + "inverted": "true", + "power": "6" + } }, { + "id": 7318, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4868 + "inverted": "true", + "power": "7" + } }, { + "id": 7319, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4869 + "inverted": "true", + "power": "8" + } }, { + "id": 7320, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4870 + "inverted": "true", + "power": "9" + } }, { + "id": 7321, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4871 + "inverted": "true", + "power": "10" + } }, { + "id": 7322, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4872 + "inverted": "true", + "power": "11" + } }, { + "id": 7323, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4873 + "inverted": "true", + "power": "12" + } }, { + "id": 7324, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4874 + "inverted": "true", + "power": "13" + } }, { + "id": 7325, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4875 + "inverted": "true", + "power": "14" + } }, { + "id": 7326, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4876 + "inverted": "true", + "power": "15" + } }, { + "default": true, + "id": 7327, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4877 + "inverted": "false", + "power": "0" + } }, { + "id": 7328, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4878 + "inverted": "false", + "power": "1" + } }, { + "id": 7329, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4879 + "inverted": "false", + "power": "2" + } }, { + "id": 7330, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4880 + "inverted": "false", + "power": "3" + } }, { + "id": 7331, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4881 + "inverted": "false", + "power": "4" + } }, { + "id": 7332, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4882 + "inverted": "false", + "power": "5" + } }, { + "id": 7333, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4883 + "inverted": "false", + "power": "6" + } }, { + "id": 7334, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4884 + "inverted": "false", + "power": "7" + } }, { + "id": 7335, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 4885 + "inverted": "false", + "power": "8" + } }, { + "id": 7336, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 4886 + "inverted": "false", + "power": "9" + } }, { + "id": 7337, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 4887 + "inverted": "false", + "power": "10" + } }, { + "id": 7338, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 4888 + "inverted": "false", + "power": "11" + } }, { + "id": 7339, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 4889 + "inverted": "false", + "power": "12" + } }, { + "id": 7340, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 4890 + "inverted": "false", + "power": "13" + } }, { + "id": 7341, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 4891 + "inverted": "false", + "power": "14" + } }, { + "id": 7342, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 4892, - "default": true + "inverted": "false", + "power": "15" + } } ] }, - "minecraft:glow_lichen": { + "minecraft:dead_brain_coral": { "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ + "waterlogged": [ "true", "false" - ], + ] + }, + "states": [ + { + "default": true, + "id": 10403, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10404, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ + { + "default": true, + "id": 10392 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { "waterlogged": [ "true", "false" + ] + }, + "states": [ + { + "default": true, + "id": 10423, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10424, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "default": true, + "id": 10449, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4893 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10450, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4894 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10451, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4895 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10452, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4896 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10453, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4897 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10454, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4898 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10455, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4899 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10456, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4900 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10405, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4901 + "waterlogged": "true" + } }, { + "id": 10406, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4902 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ + { + "default": true, + "id": 10393 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10425, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4903 + "waterlogged": "true" + } }, { + "id": 10426, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4904 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10457, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4905 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10458, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4906 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10459, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4907 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10460, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4908 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10461, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4909 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10462, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4910 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10463, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4911 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10464, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4912 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "states": [ + { + "default": true, + "id": 1598 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10407, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4913 + "waterlogged": "true" + } }, { + "id": 10408, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4914 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ + { + "default": true, + "id": 10394 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10427, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4915 + "waterlogged": "true" + } }, { + "id": 10428, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4916 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10465, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4917 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10466, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4918 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10467, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4919 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10468, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4920 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10469, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4921 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10470, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4922 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10471, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4923 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10472, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4924 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10409, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4925 + "waterlogged": "true" + } }, { + "id": 10410, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4926 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ { + "default": true, + "id": 10395 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 10429, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4927 + "waterlogged": "true" + } }, { + "id": 10430, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4928 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10473, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4929 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10474, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4930 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10475, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4931 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10476, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4932 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10477, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4933 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10478, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4934 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10479, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4935 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10480, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4936 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10401, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4937 + "waterlogged": "true" + } }, { + "id": 10402, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4938 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ + { + "default": true, + "id": 10391 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10421, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4939 + "waterlogged": "true" + } }, { + "id": 10422, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4940 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10441, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4941 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10442, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4942 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10443, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4943 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10444, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4944 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10445, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4945 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10446, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4946 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10447, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4947 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10448, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4948 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 19778, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4949 + "axis": "x" + } }, { + "default": true, + "id": 19779, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4950 + "axis": "y" + } }, { + "id": 19780, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4951 - }, + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 21095, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4952 + "type": "top", + "waterlogged": "true" + } }, { + "id": 21096, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4953 + "type": "top", + "waterlogged": "false" + } }, { + "id": 21097, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4954 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 21098, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4955 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 21099, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4956 + "type": "double", + "waterlogged": "true" + } }, { + "id": 21100, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4957 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21015, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 21016, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4958 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 21017, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4959 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 21018, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4960 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4961 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4962 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4963 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4964 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4965 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4966 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4967 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4968 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4969 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4970 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4971 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4972 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4973 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4974 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4975 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4976 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4977 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4978 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4979 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4980 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4981 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4982 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4983 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4984 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4985 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4986 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4987 - }, - { - "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4988 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4989 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4990 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4991 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 4992 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 4993 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 4994 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 4995 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 4996 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 4997 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 4998 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 4999 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5000 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5001 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5002 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5003 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5004 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5005 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5006 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5007 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5008 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5009 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5010 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5011 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5012 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5013 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5014 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5015 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5016 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5017 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5018 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5019 - }, - { - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5020, - "default": true - } - ] - }, - "minecraft:oak_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5021 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5022 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5023 - }, - { - "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5024 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5025 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5026 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5027 - }, - { - "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5028, - "default": true - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5029 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5030 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5031 - }, - { - "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5032 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5033 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5034 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5035 - }, - { - "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5036 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5037 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5038 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5039 - }, - { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5040 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5041 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5042 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5043 - }, - { - "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5044 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 5045 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 5046 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 5047 - }, - { - "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 5048 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 5049 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 5050 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 5051 - }, - { - "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 5052 - } - ] - }, - "minecraft:brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5053 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5054 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5055 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5056 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 21019, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5057 + } }, { + "id": 21020, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5058 + } }, { + "id": 21021, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5059 + } }, { + "id": 21022, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5060 + } }, { + "id": 21023, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5061 + } }, { + "id": 21024, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5062 + } }, { + "id": 21025, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5063 + } }, { + "default": true, + "id": 21026, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5064, - "default": true + } }, { + "id": 21027, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5065 + } }, { + "id": 21028, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5066 + } }, { + "id": 21029, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5067 + } }, { + "id": 21030, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5068 + } }, { + "id": 21031, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5069 + } }, { + "id": 21032, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5070 + } }, { + "id": 21033, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5071 + } }, { + "id": 21034, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5072 + } }, { + "id": 21035, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5073 + } }, { + "id": 21036, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5074 + } }, { + "id": 21037, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5075 + } }, { + "id": 21038, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5076 + } }, { + "id": 21039, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5077 + } }, { + "id": 21040, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5078 + } }, { + "id": 21041, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5079 + } }, { + "id": 21042, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5080 + } }, { + "id": 21043, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5081 + } }, { + "id": 21044, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5082 + } }, { + "id": 21045, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5083 + } }, { + "id": 21046, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5084 + } }, { + "id": 21047, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5085 + } }, { + "id": 21048, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5086 + } }, { + "id": 21049, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5087 + } }, { + "id": 21050, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5088 + } }, { + "id": 21051, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5089 + } }, { + "id": 21052, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5090 + } }, { + "id": 21053, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5091 + } }, { + "id": 21054, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5092 + } }, { + "id": 21055, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5093 + } }, { + "id": 21056, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5094 + } }, { + "id": 21057, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5095 + } }, { + "id": 21058, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5096 + } }, { + "id": 21059, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5097 + } }, { + "id": 21060, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5098 + } }, { + "id": 21061, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5099 + } }, { + "id": 21062, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5100 + } }, { + "id": 21063, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5101 + } }, { + "id": 21064, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5102 + } }, { + "id": 21065, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5103 + } }, { + "id": 21066, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5104 + } }, { + "id": 21067, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5105 + } }, { + "id": 21068, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5106 + } }, { + "id": 21069, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5107 + } }, { + "id": 21070, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5108 + } }, { + "id": 21071, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5109 + } }, { + "id": 21072, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5110 + } }, { + "id": 21073, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5111 + } }, { + "id": 21074, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5112 + } }, { + "id": 21075, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 5113 + } }, { + "id": 21076, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 5114 + } }, { + "id": 21077, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5115 + } }, { + "id": 21078, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5116 + } }, { + "id": 21079, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5117 + } }, { + "id": 21080, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5118 + } }, { + "id": 21081, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5119 + } }, { + "id": 21082, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5120 + } }, { + "id": 21083, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5121 + } }, { + "id": 21084, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5122 + } }, { + "id": 21085, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 5123 + } }, { + "id": 21086, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 5124 + } }, { + "id": 21087, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 5125 + } }, { + "id": 21088, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 5126 + } }, { + "id": 21089, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 5127 + } }, { + "id": 21090, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 5128 + } }, { + "id": 21091, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 5129 + } }, { + "id": 21092, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 5130 + } }, { + "id": 21093, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 5131 + } }, { + "id": 21094, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 5132 + } } ] }, - "minecraft:stone_brick_stairs": { + "minecraft:deepslate_brick_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 21101, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5133 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21102, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5134 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21103, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5135 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 21104, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5136 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21105, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5137 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21106, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5138 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21107, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5139 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21108, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5140 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21109, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5141 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5142 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21110, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5143 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21111, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5144, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21112, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5145 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21113, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5146 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21114, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5147 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21115, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5148 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21116, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5149 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21117, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5150 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21118, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5151 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21119, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5152 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21120, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5153 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21121, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5154 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21122, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5155 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21123, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5156 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21124, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5157 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21125, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5158 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21126, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5159 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21127, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5160 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21128, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5161 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21129, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5162 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21130, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5163 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21131, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5164 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21132, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5165 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21133, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5166 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21134, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5167 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21135, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5168 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21136, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5169 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21137, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5170 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21138, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5171 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21139, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5172 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21140, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5173 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21141, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5174 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21142, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5175 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21143, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5176 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21144, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5177 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21145, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5178 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21146, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5179 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21147, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5180 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21148, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5181 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21149, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5182 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21150, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5183 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21151, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5184 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21152, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5185 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21153, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5186 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21154, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5187 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21155, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5188 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21156, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5189 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21157, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5190 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21158, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5191 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21159, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5192 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21160, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5193 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21161, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5194 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21162, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5195 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21163, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5196 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21164, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5197 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21165, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5198 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21166, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5199 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21167, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5200 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21168, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5201 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21169, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5202 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21170, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5203 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21171, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5204 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21172, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5205 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21173, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5206 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21174, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5207 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21175, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5208 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21176, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5209 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21177, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5210 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21178, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5211 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21179, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5212 - } - ] - }, - "minecraft:mycelium": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "snowy": "true" - }, - "id": 5213 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21180, "properties": { - "snowy": "false" - }, - "id": 5214, - "default": true - } - ] - }, - "minecraft:lily_pad": { - "states": [ - { - "id": 5215, - "default": true - } - ] - }, - "minecraft:nether_bricks": { - "states": [ - { - "id": 5216, - "default": true - } - ] - }, - "minecraft:nether_brick_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 5217 + "west": "low" + } }, { + "id": 21181, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 5218 + "west": "tall" + } }, { + "id": 21182, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 5219 + "west": "none" + } }, { + "id": 21183, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 5220 + "west": "low" + } }, { + "id": 21184, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 5221 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21185, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 5222 - }, - { - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5223 + "west": "none" + } }, { + "id": 21186, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 5224 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21187, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 5225 + "west": "tall" + } }, { + "id": 21188, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5226 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21189, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 5227 + "west": "low" + } }, { + "id": 21190, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 5228 + "west": "tall" + } }, { + "id": 21191, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 5229 + "west": "none" + } }, { + "id": 21192, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 5230 + "west": "low" + } }, { + "id": 21193, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 5231 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21194, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 5232 - }, - { - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5233 + "west": "none" + } }, { + "id": 21195, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 5234 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21196, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 5235 + "west": "tall" + } }, { + "id": 21197, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5236 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21198, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 5237 + "west": "low" + } }, { + "id": 21199, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 5238 + "west": "tall" + } }, { + "id": 21200, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 5239 + "west": "none" + } }, { + "id": 21201, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 5240 + "west": "low" + } }, { + "id": 21202, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 5241 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21203, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 5242 + "west": "none" + } }, { + "id": 21204, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 5243 - }, - { - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 5244 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21205, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 5245 + "west": "tall" + } }, { + "id": 21206, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 5246 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21207, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 5247 + "west": "low" + } }, { + "id": 21208, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 5248, - "default": true - } - ] - }, - "minecraft:nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "west": "tall" + } + }, { + "id": 21209, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5249 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21210, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5250 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21211, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5251 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21212, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5252 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21213, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5253 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21214, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5254 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21215, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5255 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21216, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5256 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21217, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5257 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21218, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5258 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21219, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5259 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21220, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5260, - "default": true + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21221, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5261 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21222, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5262 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21223, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5263 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21224, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5264 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21225, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5265 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21226, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5266 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21227, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5267 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21228, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5268 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21229, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5269 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21230, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5270 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21231, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5271 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21232, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5272 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21233, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5273 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21234, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5274 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21235, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5275 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21236, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5276 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21237, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5277 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21238, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5278 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21239, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5279 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21240, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5280 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21241, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5281 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21242, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5282 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21243, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5283 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21244, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5284 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21245, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5285 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21246, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5286 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21247, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5287 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21248, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5288 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21249, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5289 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21250, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5290 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21251, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5291 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21252, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5292 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21253, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5293 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21254, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5294 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21255, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5295 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21256, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5296 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21257, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5297 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21258, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5298 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21259, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5299 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21260, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5300 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21261, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5301 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21262, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5302 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21263, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5303 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21264, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5304 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21265, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5305 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21266, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5306 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21267, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5307 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21268, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5308 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21269, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5309 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21270, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5310 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21271, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5311 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21272, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5312 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21273, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5313 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21274, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5314 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21275, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5315 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21276, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5316 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21277, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5317 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21278, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5318 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21279, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5319 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21280, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5320 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21281, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5321 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21282, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5322 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21283, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5323 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21284, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5324 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21285, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5325 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21286, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5326 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21287, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5327 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21288, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5328 - } - ] - }, - "minecraft:nether_wart": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 21289, "properties": { - "age": "0" - }, - "id": 5329, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21290, "properties": { - "age": "1" - }, - "id": 5330 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21291, "properties": { - "age": "2" - }, - "id": 5331 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21292, "properties": { - "age": "3" - }, - "id": 5332 - } - ] - }, - "minecraft:enchanting_table": { - "states": [ - { - "id": 5333, - "default": true - } - ] - }, - "minecraft:brewing_stand": { - "properties": { - "has_bottle_0": [ - "true", - "false" - ], - "has_bottle_1": [ - "true", - "false" - ], - "has_bottle_2": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 21293, "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5334 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21294, "properties": { - "has_bottle_0": "true", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5335 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21295, "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5336 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21296, "properties": { - "has_bottle_0": "true", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5337 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21297, "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "true" - }, - "id": 5338 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21298, "properties": { - "has_bottle_0": "false", - "has_bottle_1": "true", - "has_bottle_2": "false" - }, - "id": 5339 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21299, "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "true" - }, - "id": 5340 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21300, "properties": { - "has_bottle_0": "false", - "has_bottle_1": "false", - "has_bottle_2": "false" - }, - "id": 5341, - "default": true - } - ] - }, - "minecraft:cauldron": { - "states": [ - { - "id": 5342, - "default": true - } - ] - }, - "minecraft:water_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "properties": { - "level": "1" - }, - "id": 5343, - "default": true + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21301, "properties": { - "level": "2" - }, - "id": 5344 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21302, "properties": { - "level": "3" - }, - "id": 5345 - } - ] - }, - "minecraft:lava_cauldron": { - "states": [ - { - "id": 5346, - "default": true - } - ] - }, - "minecraft:powder_snow_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 21303, "properties": { - "level": "1" - }, - "id": 5347, - "default": true + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21304, "properties": { - "level": "2" - }, - "id": 5348 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21305, "properties": { - "level": "3" - }, - "id": 5349 - } - ] - }, - "minecraft:end_portal": { - "states": [ - { - "id": 5350, - "default": true - } - ] - }, - "minecraft:end_portal_frame": { - "properties": { - "eye": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 21306, "properties": { - "eye": "true", - "facing": "north" - }, - "id": 5351 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21307, "properties": { - "eye": "true", - "facing": "south" - }, - "id": 5352 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21308, "properties": { - "eye": "true", - "facing": "west" - }, - "id": 5353 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21309, "properties": { - "eye": "true", - "facing": "east" - }, - "id": 5354 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21310, "properties": { - "eye": "false", - "facing": "north" - }, - "id": 5355, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21311, "properties": { - "eye": "false", - "facing": "south" - }, - "id": 5356 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21312, "properties": { - "eye": "false", - "facing": "west" - }, - "id": 5357 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21313, "properties": { - "eye": "false", - "facing": "east" - }, - "id": 5358 - } - ] - }, - "minecraft:end_stone": { - "states": [ - { - "id": 5359, - "default": true - } - ] - }, - "minecraft:dragon_egg": { - "states": [ - { - "id": 5360, - "default": true - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 21314, "properties": { - "lit": "true" - }, - "id": 5361 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21315, "properties": { - "lit": "false" - }, - "id": 5362, - "default": true - } - ] - }, - "minecraft:cocoa": { - "properties": { - "age": [ - "0", - "1", - "2" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 21316, "properties": { - "age": "0", - "facing": "north" - }, - "id": 5363, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21317, "properties": { - "age": "0", - "facing": "south" - }, - "id": 5364 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21318, "properties": { - "age": "0", - "facing": "west" - }, - "id": 5365 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21319, "properties": { - "age": "0", - "facing": "east" - }, - "id": 5366 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21320, "properties": { - "age": "1", - "facing": "north" - }, - "id": 5367 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21321, "properties": { - "age": "1", - "facing": "south" - }, - "id": 5368 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21322, "properties": { - "age": "1", - "facing": "west" - }, - "id": 5369 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21323, "properties": { - "age": "1", - "facing": "east" - }, - "id": 5370 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21324, "properties": { - "age": "2", - "facing": "north" - }, - "id": 5371 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21325, "properties": { - "age": "2", - "facing": "south" - }, - "id": 5372 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21326, "properties": { - "age": "2", - "facing": "west" - }, - "id": 5373 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21327, "properties": { - "age": "2", - "facing": "east" - }, - "id": 5374 - } - ] - }, - "minecraft:sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 21328, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5375 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21329, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5376 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21330, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5377 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21331, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5378 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21332, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5379 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21333, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5380 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21334, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5381 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21335, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5382 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21336, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5383 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21337, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5384 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21338, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5385 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21339, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5386, - "default": true + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21340, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5387 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21341, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5388 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21342, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5389 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21343, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5390 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21344, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5391 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21345, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5392 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21346, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5393 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21347, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5394 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21348, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5395 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21349, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5396 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21350, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5397 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21351, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5398 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21352, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5399 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21353, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5400 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21354, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5401 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21355, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5402 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21356, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5403 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21357, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5404 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21358, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5405 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21359, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5406 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21360, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5407 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21361, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5408 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21362, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5409 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21363, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5410 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21364, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5411 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21365, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5412 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21366, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5413 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21367, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5414 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21368, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5415 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21369, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5416 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21370, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5417 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21371, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5418 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21372, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5419 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21373, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5420 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21374, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5421 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21375, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5422 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21376, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5423 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21377, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5424 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21378, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5425 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21379, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5426 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21380, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5427 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21381, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5428 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21382, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5429 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21383, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5430 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21384, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5431 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21385, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5432 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21386, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5433 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21387, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5434 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21388, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5435 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21389, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5436 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21390, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5437 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21391, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5438 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21392, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5439 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21393, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5440 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21394, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5441 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21395, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5442 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21396, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5443 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21397, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5444 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21398, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5445 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21399, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5446 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21400, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5447 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21401, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5448 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 21402, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5449 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 21403, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5450 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 21404, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5451 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 21405, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5452 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 21406, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5453 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 21407, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5454 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21408, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21409, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21410, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21411, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21412, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21413, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21414, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21415, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21416, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21417, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21418, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21419, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21420, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21421, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21422, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21423, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21424, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } } ] }, - "minecraft:emerald_ore": { + "minecraft:deepslate_bricks": { "states": [ { - "id": 5455, - "default": true + "default": true, + "id": 21014 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "states": [ + { + "default": true, + "id": 115 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "states": [ + { + "default": true, + "id": 18913 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "states": [ + { + "default": true, + "id": 3609 } ] }, "minecraft:deepslate_emerald_ore": { "states": [ { - "id": 5456, - "default": true + "default": true, + "id": 5842 } ] }, - "minecraft:ender_chest": { + "minecraft:deepslate_gold_ore": { + "states": [ + { + "default": true, + "id": 111 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "states": [ + { + "default": true, + "id": 113 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "states": [ + { + "default": true, + "id": 462 + } + ] + }, + "minecraft:deepslate_redstone_ore": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ + "lit": [ "true", "false" ] }, "states": [ { + "id": 4194, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 5457 + "lit": "true" + } }, { + "default": true, + "id": 4195, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 5458, - "default": true - }, + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 20684, "properties": { - "facing": "south", + "type": "top", "waterlogged": "true" - }, - "id": 5459 + } }, { + "id": 20685, "properties": { - "facing": "south", + "type": "top", "waterlogged": "false" - }, - "id": 5460 + } }, { + "id": 20686, "properties": { - "facing": "west", + "type": "bottom", "waterlogged": "true" - }, - "id": 5461 + } }, { + "default": true, + "id": 20687, "properties": { - "facing": "west", + "type": "bottom", "waterlogged": "false" - }, - "id": 5462 + } }, { + "id": 20688, "properties": { - "facing": "east", + "type": "double", "waterlogged": "true" - }, - "id": 5463 + } }, { + "id": 20689, "properties": { - "facing": "east", + "type": "double", "waterlogged": "false" - }, - "id": 5464 + } } ] }, - "minecraft:tripwire_hook": { + "minecraft:deepslate_tile_stairs": { "properties": { - "attached": [ - "true", - "false" - ], "facing": [ "north", "south", "west", "east" ], - "powered": [ + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 20604, "properties": { - "attached": "true", "facing": "north", - "powered": "true" - }, - "id": 5465 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20605, "properties": { - "attached": "true", "facing": "north", - "powered": "false" - }, - "id": 5466 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20606, "properties": { - "attached": "true", - "facing": "south", - "powered": "true" - }, - "id": 5467 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20607, "properties": { - "attached": "true", - "facing": "south", - "powered": "false" - }, - "id": 5468 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20608, "properties": { - "attached": "true", - "facing": "west", - "powered": "true" - }, - "id": 5469 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20609, "properties": { - "attached": "true", - "facing": "west", - "powered": "false" - }, - "id": 5470 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20610, "properties": { - "attached": "true", - "facing": "east", - "powered": "true" - }, - "id": 5471 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20611, "properties": { - "attached": "true", - "facing": "east", - "powered": "false" - }, - "id": 5472 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20612, "properties": { - "attached": "false", "facing": "north", - "powered": "true" - }, - "id": 5473 + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20613, "properties": { - "attached": "false", "facing": "north", - "powered": "false" - }, - "id": 5474, - "default": true + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20614, "properties": { - "attached": "false", - "facing": "south", - "powered": "true" - }, - "id": 5475 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 20615, "properties": { - "attached": "false", - "facing": "south", - "powered": "false" - }, - "id": 5476 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20616, "properties": { - "attached": "false", - "facing": "west", - "powered": "true" - }, - "id": 5477 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20617, "properties": { - "attached": "false", - "facing": "west", - "powered": "false" - }, - "id": 5478 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20618, "properties": { - "attached": "false", - "facing": "east", - "powered": "true" - }, - "id": 5479 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20619, "properties": { - "attached": "false", - "facing": "east", - "powered": "false" - }, - "id": 5480 - } - ] - }, - "minecraft:tripwire": { - "properties": { - "attached": [ - "true", - "false" - ], - "disarmed": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5481 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20620, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5482 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20621, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5483 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20622, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5484 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20623, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5485 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20624, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5486 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20625, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5487 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20626, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5488 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20627, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5489 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20628, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5490 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20629, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5491 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20630, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5492 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20631, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5493 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20632, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5494 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20633, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5495 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20634, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5496 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20635, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5497 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20636, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5498 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20637, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5499 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20638, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5500 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20639, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5501 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20640, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5502 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20641, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5503 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20642, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5504 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20643, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5505 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20644, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5506 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20645, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5507 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20646, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5508 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20647, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5509 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20648, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5510 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20649, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5511 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20650, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5512 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20651, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5513 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20652, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5514 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20653, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5515 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20654, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5516 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20655, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5517 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20656, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5518 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20657, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5519 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20658, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5520 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20659, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5521 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20660, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5522 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20661, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5523 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20662, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5524 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20663, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5525 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20664, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5526 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20665, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5527 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20666, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5528 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20667, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5529 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20668, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5530 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20669, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5531 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20670, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5532 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20671, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5533 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20672, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5534 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20673, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5535 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 20674, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5536 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 20675, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5537 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 20676, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5538 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 20677, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5539 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 20678, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5540 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 20679, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5541 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 20680, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5542 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 20681, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5543 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 20682, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5544 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 20683, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5545 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ { + "id": 20690, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5546 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20691, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5547 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20692, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5548 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 20693, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5549 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20694, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5550 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20695, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5551 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20696, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5552 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20697, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5553 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20698, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5554 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20699, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5555 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20700, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5556 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20701, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5557 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20702, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5558 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20703, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5559 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20704, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5560 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20705, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5561 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20706, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5562 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20707, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5563 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20708, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5564 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20709, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5565 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20710, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5566 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20711, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5567 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20712, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5568 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20713, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5569 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20714, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5570 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20715, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5571 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20716, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5572 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20717, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5573 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20718, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5574 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20719, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5575 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20720, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5576 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20721, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5577 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20722, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5578 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20723, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5579 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20724, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5580 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20725, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5581 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20726, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5582 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20727, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5583 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20728, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5584 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20729, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5585 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20730, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5586 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20731, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5587 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20732, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5588 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20733, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5589 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20734, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5590 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20735, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5591 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20736, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5592 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20737, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5593 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20738, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5594 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20739, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5595 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20740, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5596 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20741, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5597 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20742, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5598 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20743, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5599 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20744, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5600 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20745, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" - }, - "id": 5601 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20746, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" - }, - "id": 5602 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20747, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" - }, - "id": 5603 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20748, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" - }, - "id": 5604 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20749, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" - }, - "id": 5605 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20750, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" - }, - "id": 5606 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20751, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" - }, - "id": 5607 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20752, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" - }, - "id": 5608, - "default": true - } - ] - }, - "minecraft:emerald_block": { - "states": [ - { - "id": 5609, - "default": true - } - ] - }, - "minecraft:spruce_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 20753, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5610 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20754, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5611 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20755, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5612 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20756, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5613 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20757, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5614 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20758, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5615 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20759, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5616 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20760, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5617 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20761, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5618 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20762, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5619 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20763, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5620 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20764, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5621, - "default": true + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20765, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5622 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20766, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5623 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20767, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5624 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20768, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5625 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20769, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5626 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20770, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5627 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20771, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5628 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20772, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5629 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20773, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5630 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20774, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5631 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20775, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5632 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20776, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5633 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20777, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5634 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20778, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5635 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20779, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5636 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20780, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5637 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20781, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5638 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20782, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5639 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20783, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5640 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20784, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5641 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20785, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5642 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20786, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5643 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20787, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5644 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20788, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5645 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20789, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5646 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20790, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5647 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20791, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5648 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20792, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5649 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20793, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5650 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20794, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5651 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20795, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5652 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20796, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5653 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20797, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5654 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20798, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5655 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20799, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5656 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20800, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5657 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20801, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5658 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20802, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5659 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20803, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5660 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20804, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5661 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20805, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5662 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20806, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5663 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20807, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5664 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20808, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5665 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20809, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5666 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20810, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5667 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20811, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5668 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20812, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5669 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20813, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5670 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20814, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5671 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20815, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5672 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20816, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5673 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20817, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5674 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20818, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5675 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20819, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5676 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20820, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5677 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20821, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5678 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20822, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5679 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20823, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5680 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20824, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5681 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20825, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5682 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20826, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5683 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20827, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5684 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20828, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5685 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20829, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5686 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20830, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5687 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20831, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5688 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20832, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5689 - } - ] - }, - "minecraft:birch_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 20833, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5690 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20834, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5691 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20835, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5692 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20836, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5693 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20837, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5694 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20838, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5695 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20839, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5696 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20840, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5697 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20841, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5698 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20842, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5699 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20843, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5700 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20844, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5701, - "default": true + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20845, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5702 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20846, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5703 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20847, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5704 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20848, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5705 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20849, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5706 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20850, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5707 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20851, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5708 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20852, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5709 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20853, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5710 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20854, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5711 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20855, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5712 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20856, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5713 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20857, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5714 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20858, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5715 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20859, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5716 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20860, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5717 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20861, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5718 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20862, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5719 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20863, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5720 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20864, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5721 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20865, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5722 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20866, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5723 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20867, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5724 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20868, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5725 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20869, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5726 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20870, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5727 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20871, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5728 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20872, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5729 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20873, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5730 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20874, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5731 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20875, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5732 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20876, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5733 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20877, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5734 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20878, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5735 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20879, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5736 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20880, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5737 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20881, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5738 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20882, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5739 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20883, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5740 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20884, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5741 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20885, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5742 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20886, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5743 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20887, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5744 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20888, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5745 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20889, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5746 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20890, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5747 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20891, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5748 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20892, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5749 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20893, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5750 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20894, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5751 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20895, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5752 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20896, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5753 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20897, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5754 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20898, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5755 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20899, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5756 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20900, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5757 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20901, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5758 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20902, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5759 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20903, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5760 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20904, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5761 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20905, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5762 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20906, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5763 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20907, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5764 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20908, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5765 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20909, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5766 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20910, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5767 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20911, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5768 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20912, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5769 - } - ] - }, - "minecraft:jungle_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 20913, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5770 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20914, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5771 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20915, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5772 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20916, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5773 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20917, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5774 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20918, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5775 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20919, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5776 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20920, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5777 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20921, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5778 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20922, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5779 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20923, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5780 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20924, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5781, - "default": true + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20925, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5782 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20926, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5783 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20927, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5784 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20928, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5785 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20929, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5786 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20930, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5787 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20931, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5788 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20932, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5789 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20933, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5790 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20934, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5791 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20935, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5792 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 20936, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5793 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 20937, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5794 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 20938, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5795 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 20939, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5796 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 20940, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5797 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 20941, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5798 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5799 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5800 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5801 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5802 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5803 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5804 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5805 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5806 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5807 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5808 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5809 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5810 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5811 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5812 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5813 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5814 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5815 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5816 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5817 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5818 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5819 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5820 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5821 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5822 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5823 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5824 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5825 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5826 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5827 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5828 - }, - { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5829 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5830 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5831 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5832 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5833 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5834 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5835 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5836 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5837 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5838 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5839 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 5840 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 5841 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 5842 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 5843 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 5844 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 5845 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 5846 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 5847 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 5848 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 5849 - } - ] - }, - "minecraft:command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 5850 - }, - { - "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 5851 - }, - { - "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 5852 - }, - { - "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 5853 - }, - { - "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 5854 - }, - { - "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 5855 - }, - { - "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 5856, - "default": true - }, - { - "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 5857 - }, - { - "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 5858 - }, - { - "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 5859 - }, - { - "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 5860 - }, - { - "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 5861 - } - ] - }, - "minecraft:beacon": { - "states": [ - { - "id": 5862, - "default": true - } - ] - }, - "minecraft:cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5863 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5864 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5865 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5866, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5867 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5868 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5869 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5870 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5871 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5872 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5873 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5874 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5875 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5876 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5877 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5878 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5879 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5880 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5881 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5882 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5883 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5884 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5885 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 5886 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5887 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5888 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5889 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5890 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5891 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 5892 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 5893 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 5894 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 5895 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 5896 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 5897 - }, - { - "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5898 + } }, { + "id": 20942, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5899 + } }, { + "id": 20943, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5900 + } }, { + "id": 20944, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5901 + } }, { + "id": 20945, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5902 + } }, { + "id": 20946, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5903 + } }, { + "id": 20947, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5904 + } }, { + "id": 20948, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5905 + } }, { + "id": 20949, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5906 + } }, { + "id": 20950, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5907 + } }, { + "id": 20951, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5908 + } }, { + "id": 20952, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5909 + } }, { + "id": 20953, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5910 + } }, { + "id": 20954, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5911 + } }, { + "id": 20955, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5912 + } }, { + "id": 20956, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5913 + } }, { + "id": 20957, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5914 + } }, { + "id": 20958, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5915 + } }, { + "id": 20959, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5916 + } }, { + "id": 20960, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5917 + } }, { + "id": 20961, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5918 + } }, { + "id": 20962, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5919 + } }, { + "id": 20963, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5920 + } }, { + "id": 20964, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5921 + } }, { + "id": 20965, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5922 + } }, { + "id": 20966, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5923 + } }, { + "id": 20967, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5924 + } }, { + "id": 20968, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5925 + } }, { + "id": 20969, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5926 + } }, { + "id": 20970, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5927 + } }, { + "id": 20971, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5928 + } }, { + "id": 20972, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5929 + } }, { + "id": 20973, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5930 + } }, { + "id": 20974, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5931 + } }, { + "id": 20975, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5932 + } }, { + "id": 20976, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5933 + } }, { + "id": 20977, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5934 + } }, { + "id": 20978, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5935 + } }, { + "id": 20979, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5936 + } }, { + "id": 20980, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5937 + } }, { + "id": 20981, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5938 + } }, { + "id": 20982, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5939 + } }, { + "id": 20983, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5940 + } }, { + "id": 20984, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5941 + } }, { + "id": 20985, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5942 + } }, { + "id": 20986, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5943 + } }, { + "id": 20987, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5944 + } }, { + "id": 20988, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5945 + } }, { + "id": 20989, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5946 + } }, { + "id": 20990, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5947 + } }, { + "id": 20991, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5948 + } }, { + "id": 20992, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5949 + } }, { + "id": 20993, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5950 + } }, { + "id": 20994, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5951 + } }, { + "id": 20995, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5952 + } }, { + "id": 20996, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5953 + } }, { + "id": 20997, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5954 + } }, { + "id": 20998, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5955 + } }, { + "id": 20999, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5956 + } }, { + "id": 21000, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5957 + } }, { + "id": 21001, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5958 + } }, { + "id": 21002, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5959 + } }, { + "id": 21003, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5960 + } }, { + "id": 21004, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5961 + } }, { + "id": 21005, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5962 + } }, { + "id": 21006, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5963 + } }, { + "id": 21007, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5964 + } }, { + "id": 21008, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5965 + } }, { + "id": 21009, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5966 + } }, { + "id": 21010, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5967 + } }, { + "id": 21011, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5968 + } }, { + "id": 21012, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5969 + } }, { + "id": 21013, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5970 - }, + } + } + ] + }, + "minecraft:deepslate_tiles": { + "states": [ + { + "default": true, + "id": 20603 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 1559, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 5971 + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } }, { + "id": 1560, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 5972 + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } }, { + "id": 1561, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 5973 + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } }, { + "id": 1562, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 5974 + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } }, { + "id": 1563, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 5975 + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } }, { + "id": 1564, "properties": { - "east": "low", + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1565, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1566, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1567, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1568, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1569, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1570, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1571, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1572, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1573, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1574, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1575, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1576, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1577, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1578, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1579, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1580, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1581, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1582, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "states": [ + { + "default": true, + "id": 3610 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "default": true, + "id": 3608 + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11742, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11743, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11744, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11745, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11746, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11747, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11590, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11591, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11592, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11593, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11594, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11595, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11596, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11597, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11598, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11599, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11600, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11601, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11602, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11603, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11604, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11605, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11606, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11607, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11608, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11609, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11610, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11611, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11612, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11613, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11614, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11615, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11616, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11617, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11618, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11619, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11620, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11621, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11622, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11623, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11624, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11625, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11626, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11627, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11628, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11629, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11630, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11631, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11632, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11633, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11634, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11635, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11636, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11637, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11638, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11639, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11640, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11641, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11642, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11643, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11644, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11645, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11646, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11647, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11648, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11649, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11650, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11651, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11652, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11653, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11654, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11655, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11656, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11657, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11658, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11659, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11660, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11661, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11662, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11663, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11664, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11665, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11666, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11667, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11668, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11669, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15636, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15637, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15638, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15639, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15640, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15641, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5976 + } }, { + "id": 15642, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5977 + } }, { + "id": 15643, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5978 + } }, { + "id": 15644, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5979 + } }, { + "id": 15645, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5980 + } }, { + "id": 15646, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5981 + } }, { + "id": 15647, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5982 + } }, { + "id": 15648, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5983 + } }, { + "id": 15649, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5984 + } }, { + "id": 15650, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5985 + } }, { + "id": 15651, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5986 + } }, { + "id": 15652, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5987 + } }, { + "id": 15653, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 5988 + } }, { + "id": 15654, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 5989 + } }, { + "id": 15655, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 5990 + } }, { + "id": 15656, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 5991 + } }, { + "id": 15657, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 5992 + } }, { + "id": 15658, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 5993 + } }, { + "id": 15659, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 5994 + } }, { + "id": 15660, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 5995 + } }, { + "id": 15661, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 5996 + } }, { + "id": 15662, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 5997 + } }, { + "id": 15663, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 5998 + } }, { + "id": 15664, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 5999 + } }, { + "id": 15665, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6000 + } }, { + "id": 15666, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6001 + } }, { + "id": 15667, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6002 + } }, { + "id": 15668, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6003 + } }, { + "id": 15669, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6004 + } }, { + "id": 15670, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6005 + } }, { + "id": 15671, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6006 + } }, { + "id": 15672, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6007 + } }, { + "id": 15673, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6008 + } }, { + "id": 15674, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6009 + } }, { + "id": 15675, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6010 + } }, { + "id": 15676, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6011 + } }, { + "id": 15677, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6012 + } }, { + "id": 15678, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6013 + } }, { + "id": 15679, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6014 + } }, { + "id": 15680, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6015 + } }, { + "id": 15681, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6016 + } }, { + "id": 15682, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6017 + } }, { + "id": 15683, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6018 + } }, { + "id": 15684, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6019 + } }, { + "id": 15685, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6020 + } }, { + "id": 15686, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6021 + } }, { + "id": 15687, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6022 + } }, { + "id": 15688, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6023 + } }, { + "id": 15689, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6024 + } }, { + "id": 15690, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6025 + } }, { + "id": 15691, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6026 + } }, { + "id": 15692, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6027 + } }, { + "id": 15693, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6028 + } }, { + "id": 15694, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6029 + } }, { + "id": 15695, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6030 + } }, { + "id": 15696, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6031 + } }, { + "id": 15697, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6032 + } }, { + "id": 15698, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6033 + } }, { + "id": 15699, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6034 + } }, { + "id": 15700, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6035 + } }, { + "id": 15701, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6036 + } }, { + "id": 15702, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6037 + } }, { + "id": 15703, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6038 + } }, { + "id": 15704, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6039 + } }, { + "id": 15705, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6040 + } }, { + "id": 15706, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6041 + } }, { + "id": 15707, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6042 + } }, { + "id": 15708, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6043 + } }, { + "id": 15709, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6044 + } }, { + "id": 15710, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6045 + } }, { + "id": 15711, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6046 + } }, { + "id": 15712, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6047 + } }, { + "id": 15713, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6048 + } }, { + "id": 15714, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6049 + } }, { + "id": 15715, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6050 + } }, { + "id": 15716, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6051 + } }, { + "id": 15717, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6052 + } }, { + "id": 15718, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6053 + } }, { + "id": 15719, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6054 + } }, { + "id": 15720, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6055 + } }, { + "id": 15721, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6056 + } }, { + "id": 15722, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6057 + } }, { + "id": 15723, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6058 + } }, { + "id": 15724, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6059 + } }, { + "id": 15725, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6060 + } }, { + "id": 15726, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6061 + } }, { + "id": 15727, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6062 + } }, { + "id": 15728, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6063 + } }, { + "id": 15729, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6064 + } }, { + "id": 15730, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6065 + } }, { + "id": 15731, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6066 + } }, { + "id": 15732, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6067 + } }, { + "id": 15733, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6068 + } }, { + "id": 15734, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6069 + } }, { + "id": 15735, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6070 + } }, { + "id": 15736, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6071 + } }, { + "id": 15737, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6072 + } }, { + "id": 15738, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6073 + } }, { + "id": 15739, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6074 + } }, { + "id": 15740, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6075 + } }, { + "id": 15741, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6076 + } }, { + "id": 15742, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6077 + } }, { + "id": 15743, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6078 + } }, { + "id": 15744, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6079 + } }, { + "id": 15745, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6080 + } }, { + "id": 15746, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6081 + } }, { + "id": 15747, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6082 + } }, { + "id": 15748, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6083 + } }, { + "id": 15749, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6084 + } }, { + "id": 15750, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6085 + } }, { + "id": 15751, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6086 + } }, { + "id": 15752, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6087 + } }, { + "id": 15753, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6088 + } }, { + "id": 15754, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6089 + } }, { + "id": 15755, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6090 + } }, { + "id": 15756, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6091 + } }, { + "id": 15757, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6092 + } }, { + "id": 15758, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6093 + } }, { + "id": 15759, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6094 + } }, { + "id": 15760, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6095 + } }, { + "id": 15761, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6096 + } }, { + "id": 15762, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6097 + } }, { + "id": 15763, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6098 + } }, { + "id": 15764, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6099 + } }, { + "id": 15765, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6100 + } }, { + "id": 15766, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6101 + } }, { + "id": 15767, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6102 + } }, { + "id": 15768, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6103 + } }, { + "id": 15769, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6104 + } }, { + "id": 15770, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6105 + } }, { + "id": 15771, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6106 + } }, { + "id": 15772, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6107 + } }, { + "id": 15773, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6108 + } }, { + "id": 15774, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6109 + } }, { + "id": 15775, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6110 + } }, { + "id": 15776, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6111 + } }, { + "id": 15777, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6112 + } }, { + "id": 15778, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6113 + } }, { + "id": 15779, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6114 + } }, { + "id": 15780, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6115 + } }, { + "id": 15781, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6116 + } }, { + "id": 15782, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6117 + } }, { + "id": 15783, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6118 + } }, { + "id": 15784, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6119 + } }, { + "id": 15785, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6120 + } }, { + "id": 15786, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6121 + } }, { + "id": 15787, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6122 + } }, { + "id": 15788, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6123 + } }, { + "id": 15789, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6124 + } }, { + "id": 15790, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6125 + } }, { + "id": 15791, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6126 + } }, { + "id": 15792, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6127 + } }, { + "id": 15793, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6128 + } }, { + "id": 15794, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6129 + } }, { + "id": 15795, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6130 + } }, { + "id": 15796, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6131 + } }, { + "id": 15797, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6132 + } }, { + "id": 15798, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6133 + } }, { + "id": 15799, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6134 + } }, { + "id": 15800, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6135 + } }, { + "id": 15801, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6136 + } }, { + "id": 15802, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6137 + } }, { + "id": 15803, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6138 + } }, { + "id": 15804, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6139 + } }, { + "id": 15805, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6140 + } }, { + "id": 15806, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6141 + } }, { + "id": 15807, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6142 + } }, { + "id": 15808, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6143 + } }, { + "id": 15809, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6144 + } }, { + "id": 15810, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6145 + } }, { + "id": 15811, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6146 + } }, { + "id": 15812, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6147 + } }, { + "id": 15813, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6148 + } }, { + "id": 15814, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6149 + } }, { + "id": 15815, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6150 + } }, { + "id": 15816, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6151 + } }, { + "id": 15817, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6152 + } }, { + "id": 15818, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6153 + } }, { + "id": 15819, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6154 + } }, { + "id": 15820, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6155 + } }, { + "id": 15821, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6156 + } }, { + "id": 15822, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6157 + } }, { + "id": 15823, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6158 + } }, { + "id": 15824, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6159 + } }, { + "id": 15825, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6160 + } }, { + "id": 15826, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6161 + } }, { + "id": 15827, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6162 + } }, { + "id": 15828, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6163 + } }, { + "id": 15829, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6164 + } }, { + "id": 15830, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6165 + } }, { + "id": 15831, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6166 + } }, { + "id": 15832, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6167 + } }, { + "id": 15833, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6168 + } }, { + "id": 15834, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6169 + } }, { + "id": 15835, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6170 + } }, { + "id": 15836, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6171 + } }, { + "id": 15837, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6172 + } }, { + "id": 15838, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6173 + } }, { + "id": 15839, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6174 + } }, { + "id": 15840, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6175 + } }, { + "id": 15841, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6176 + } }, { + "id": 15842, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6177 + } }, { + "id": 15843, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6178 + } }, { + "id": 15844, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6179 + } }, { + "id": 15845, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6180 + } }, { + "id": 15846, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6181 + } }, { + "id": 15847, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6182 + } }, { + "id": 15848, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6183 + } }, { + "id": 15849, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6184 + } }, { + "id": 15850, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6185 + } }, { + "id": 15851, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6186 - } - ] - }, - "minecraft:mossy_cobblestone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + } + }, { + "id": 15852, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6187 + } }, { + "id": 15853, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6188 + } }, { + "id": 15854, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6189 + } }, { + "id": 15855, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6190, - "default": true + } }, { + "id": 15856, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6191 + } }, { + "id": 15857, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6192 + } }, { + "id": 15858, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6193 + } }, { + "id": 15859, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6194 + } }, { + "id": 15860, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6195 + } }, { + "id": 15861, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6196 + } }, { + "id": 15862, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6197 + } }, { + "id": 15863, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6198 + } }, { + "id": 15864, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6199 + } }, { + "id": 15865, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6200 + } }, { + "id": 15866, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6201 + } }, { + "id": 15867, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6202 + } }, { + "id": 15868, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6203 + } }, { + "id": 15869, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6204 + } }, { + "id": 15870, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6205 + } }, { + "id": 15871, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6206 + } }, { + "id": 15872, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6207 + } }, { + "id": 15873, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6208 + } }, { + "id": 15874, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6209 + } }, { + "id": 15875, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6210 + } }, { + "id": 15876, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6211 + } }, { + "id": 15877, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6212 + } }, { + "id": 15878, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6213 + } }, { + "id": 15879, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6214 + } }, { + "id": 15880, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6215 + } }, { + "id": 15881, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6216 + } }, { + "id": 15882, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6217 + } }, { + "id": 15883, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6218 + } }, { + "id": 15884, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6219 + } }, { + "id": 15885, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6220 + } }, { + "id": 15886, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6221 + } }, { + "id": 15887, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6222 + } }, { + "id": 15888, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6223 + } }, { + "id": 15889, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6224 + } }, { + "id": 15890, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6225 + } }, { + "id": 15891, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6226 + } }, { + "id": 15892, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6227 + } }, { + "id": 15893, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6228 + } }, { + "id": 15894, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6229 + } }, { + "id": 15895, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6230 + } }, { + "id": 15896, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6231 + } }, { + "id": 15897, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6232 + } }, { + "id": 15898, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6233 + } }, { + "id": 15899, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6234 + } }, { + "id": 15900, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6235 + } }, { + "id": 15901, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6236 + } }, { + "id": 15902, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6237 + } }, { + "id": 15903, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6238 + } }, { + "id": 15904, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6239 + } }, { + "id": 15905, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6240 + } }, { + "id": 15906, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6241 + } }, { + "id": 15907, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6242 + } }, { + "id": 15908, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6243 + } }, { + "id": 15909, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6244 + } }, { + "id": 15910, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6245 + } }, { + "id": 15911, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6246 + } }, { + "id": 15912, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6247 + } }, { + "id": 15913, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6248 + } }, { + "id": 15914, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6249 + } }, { + "id": 15915, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6250 + } }, { + "id": 15916, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6251 + } }, { + "id": 15917, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6252 + } }, { + "id": 15918, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6253 + } }, { + "id": 15919, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6254 + } }, { + "id": 15920, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6255 + } }, { + "id": 15921, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6256 + } }, { + "id": 15922, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6257 + } }, { + "id": 15923, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6258 + } }, { + "id": 15924, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6259 + } }, { + "id": 15925, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6260 + } }, { + "id": 15926, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6261 + } }, { + "id": 15927, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6262 + } }, { + "id": 15928, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6263 + } }, { + "id": 15929, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6264 + } }, { + "id": 15930, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6265 + } }, { + "id": 15931, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6266 + } }, { + "id": 15932, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6267 + } }, { + "id": 15933, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6268 + } }, { + "id": 15934, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6269 + } }, { + "id": 15935, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6270 + } }, { + "id": 15936, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6271 + } }, { + "id": 15937, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6272 + } }, { + "id": 15938, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6273 + } }, { + "id": 15939, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6274 + } }, { + "id": 15940, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6275 + } }, { + "id": 15941, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6276 + } }, { + "id": 15942, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6277 + } }, { + "id": 15943, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6278 + } }, { + "id": 15944, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6279 + } }, { + "id": 15945, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6280 + } }, { + "id": 15946, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6281 + } }, { + "id": 15947, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6282 + } }, { + "id": 15948, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6283 + } }, { + "id": 15949, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6284 + } }, { + "id": 15950, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6285 + } }, { + "id": 15951, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6286 + } }, { + "id": 15952, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6287 + } }, { + "id": 15953, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6288 + } }, { + "id": 15954, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6289 + } }, { + "id": 15955, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6290 + } }, { + "id": 15956, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6291 + } }, { + "id": 15957, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6292 + } }, { + "id": 15958, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6293 + } }, { + "id": 15959, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6294 - }, + } + } + ] + }, + "minecraft:dirt": { + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "states": [ + { + "default": true, + "id": 10104 + } + ] + }, + "minecraft:dispenser": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 464, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6295 + "facing": "north", + "triggered": "true" + } }, { + "default": true, + "id": 465, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6296 + "facing": "north", + "triggered": "false" + } }, { + "id": 466, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6297 + "facing": "east", + "triggered": "true" + } }, { + "id": 467, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6298 + "facing": "east", + "triggered": "false" + } }, { + "id": 468, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6299 + "facing": "south", + "triggered": "true" + } }, { + "id": 469, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6300 + "facing": "south", + "triggered": "false" + } }, { + "id": 470, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6301 + "facing": "west", + "triggered": "true" + } }, { + "id": 471, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6302 + "facing": "west", + "triggered": "false" + } }, { + "id": 472, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6303 + "facing": "up", + "triggered": "true" + } }, { + "id": 473, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6304 + "facing": "up", + "triggered": "false" + } }, { + "id": 474, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6305 + "facing": "down", + "triggered": "true" + } }, { + "id": 475, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6306 - }, + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "states": [ + { + "default": true, + "id": 5746 + } + ] + }, + "minecraft:dragon_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 7207, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6307 + "rotation": "0" + } }, { + "id": 7208, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6308 + "rotation": "1" + } }, { + "id": 7209, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6309 + "rotation": "2" + } }, { + "id": 7210, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6310 + "rotation": "3" + } }, { + "id": 7211, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6311 + "rotation": "4" + } }, { + "id": 7212, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6312 + "rotation": "5" + } }, { + "id": 7213, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6313 + "rotation": "6" + } }, { + "id": 7214, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6314 + "rotation": "7" + } }, { + "id": 7215, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6315 + "rotation": "8" + } }, { + "id": 7216, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6316 + "rotation": "9" + } }, { + "id": 7217, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6317 + "rotation": "10" + } }, { + "id": 7218, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6318 + "rotation": "11" + } }, { + "id": 7219, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6319 + "rotation": "12" + } }, { + "id": 7220, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6320 + "rotation": "13" + } }, { + "id": 7221, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6321 + "rotation": "14" + } }, { + "id": 7222, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6322 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 7223, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6323 + "facing": "north" + } }, { + "id": 7224, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6324 + "facing": "south" + } }, { + "id": 7225, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6325 + "facing": "west" + } }, { + "id": 7226, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6326 - }, + "facing": "east" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "states": [ + { + "default": true, + "id": 10378 + } + ] + }, + "minecraft:dripstone_block": { + "states": [ + { + "default": true, + "id": 19658 + } + ] + }, + "minecraft:dropper": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7464, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6327 + "facing": "north", + "triggered": "true" + } }, { + "default": true, + "id": 7465, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6328 + "facing": "north", + "triggered": "false" + } }, { + "id": 7466, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6329 + "facing": "east", + "triggered": "true" + } }, { + "id": 7467, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6330 + "facing": "east", + "triggered": "false" + } }, { + "id": 7468, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6331 + "facing": "south", + "triggered": "true" + } }, { + "id": 7469, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6332 + "facing": "south", + "triggered": "false" + } }, { + "id": 7470, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6333 + "facing": "west", + "triggered": "true" + } }, { + "id": 7471, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6334 + "facing": "west", + "triggered": "false" + } }, { + "id": 7472, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6335 + "facing": "up", + "triggered": "true" + } }, { + "id": 7473, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6336 + "facing": "up", + "triggered": "false" + } }, { + "id": 7474, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6337 + "facing": "down", + "triggered": "true" + } }, { + "id": 7475, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6338 + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "states": [ + { + "default": true, + "id": 5995 + } + ] + }, + "minecraft:emerald_ore": { + "states": [ + { + "default": true, + "id": 5841 + } + ] + }, + "minecraft:enchanting_table": { + "states": [ + { + "default": true, + "id": 5719 + } + ] + }, + "minecraft:end_gateway": { + "states": [ + { + "default": true, + "id": 10105 + } + ] + }, + "minecraft:end_portal": { + "states": [ + { + "default": true, + "id": 5736 + } + ] + }, + "minecraft:end_portal_frame": { + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 5737, + "properties": { + "eye": "true", + "facing": "north" + } }, { + "id": 5738, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6339 + "eye": "true", + "facing": "south" + } }, { + "id": 5739, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6340 + "eye": "true", + "facing": "west" + } }, { + "id": 5740, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6341 + "eye": "true", + "facing": "east" + } }, { + "default": true, + "id": 5741, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6342 + "eye": "false", + "facing": "north" + } }, { + "id": 5742, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6343 + "eye": "false", + "facing": "south" + } }, { + "id": 5743, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6344 + "eye": "false", + "facing": "west" + } }, { + "id": 5744, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6345 + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 9939, + "properties": { + "facing": "north" + } }, { + "id": 9940, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6346 + "facing": "east" + } }, { + "id": 9941, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6347 + "facing": "south" + } }, { + "id": 9942, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6348 + "facing": "west" + } }, { + "default": true, + "id": 9943, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6349 + "facing": "up" + } }, { + "id": 9944, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6350 + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "states": [ + { + "default": true, + "id": 5745 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11700, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 11701, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6351 + "type": "top", + "waterlogged": "false" + } }, { + "id": 11702, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6352 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 11703, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6353 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 11704, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6354 + "type": "double", + "waterlogged": "true" + } }, { + "id": 11705, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6355 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10950, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10951, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6356 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10952, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6357 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10953, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6358 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10954, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6359 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10955, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6360 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10956, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6361 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10957, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6362 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10958, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6363 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10959, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6364 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10960, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6365 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 10961, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6366 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10962, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6367 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10963, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6368 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10964, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6369 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10965, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6370 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10966, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6371 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10967, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6372 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10968, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6373 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10969, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6374 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10970, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6375 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10971, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6376 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10972, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6377 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10973, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6378 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10974, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6379 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10975, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6380 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10976, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6381 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10977, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6382 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10978, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6383 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10979, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6384 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10980, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6385 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10981, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6386 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10982, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6387 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10983, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6388 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10984, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6389 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10985, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6390 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10986, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 6391 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10987, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 6392 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10988, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 6393 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10989, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 6394 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10990, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 6395 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10991, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 6396 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10992, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 6397 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10993, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 6398 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10994, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 6399 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10995, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 6400 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10996, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 6401 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10997, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 6402 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10998, "properties": { - "east": "tall", + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10999, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11000, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11001, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11002, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11003, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11004, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11005, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11006, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11007, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11008, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11009, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11010, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11011, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11012, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11013, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11014, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11015, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11016, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11017, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11018, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11019, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11020, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11021, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11022, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11023, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11024, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11025, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11026, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11027, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11028, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11029, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15312, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6403 + } }, { + "id": 15313, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6404 + } }, { + "id": 15314, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6405 + } }, { + "default": true, + "id": 15315, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6406 + } }, { + "id": 15316, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6407 + } }, { + "id": 15317, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6408 + } }, { + "id": 15318, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6409 + } }, { + "id": 15319, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6410 + } }, { + "id": 15320, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6411 + } }, { + "id": 15321, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6412 + } }, { + "id": 15322, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6413 + } }, { + "id": 15323, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6414 + } }, { + "id": 15324, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6415 + } }, { + "id": 15325, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6416 + } }, { + "id": 15326, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6417 + } }, { + "id": 15327, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6418 + } }, { + "id": 15328, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6419 + } }, { + "id": 15329, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6420 + } }, { + "id": 15330, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6421 + } }, { + "id": 15331, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6422 + } }, { + "id": 15332, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6423 + } }, { + "id": 15333, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6424 + } }, { + "id": 15334, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6425 + } }, { + "id": 15335, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6426 + } }, { + "id": 15336, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6427 + } }, { + "id": 15337, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6428 + } }, { + "id": 15338, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6429 + } }, { + "id": 15339, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6430 + } }, { + "id": 15340, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6431 + } }, { + "id": 15341, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6432 + } }, { + "id": 15342, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6433 + } }, { + "id": 15343, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6434 + } }, { + "id": 15344, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6435 + } }, { + "id": 15345, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6436 + } }, { + "id": 15346, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6437 + } }, { + "id": 15347, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6438 + } }, { + "id": 15348, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6439 + } }, { + "id": 15349, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6440 + } }, { + "id": 15350, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6441 + } }, { + "id": 15351, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6442 + } }, { + "id": 15352, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6443 + } }, { + "id": 15353, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6444 + } }, { + "id": 15354, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6445 + } }, { + "id": 15355, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6446 + } }, { + "id": 15356, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6447 + } }, { + "id": 15357, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6448 + } }, { + "id": 15358, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6449 + } }, { + "id": 15359, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6450 + } }, { + "id": 15360, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6451 + } }, { + "id": 15361, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6452 + } }, { + "id": 15362, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6453 + } }, { + "id": 15363, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6454 + } }, { + "id": 15364, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6455 + } }, { + "id": 15365, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6456 + } }, { + "id": 15366, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6457 + } }, { + "id": 15367, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6458 + } }, { + "id": 15368, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6459 + } }, { + "id": 15369, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6460 + } }, { + "id": 15370, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6461 + } }, { + "id": 15371, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6462 + } }, { + "id": 15372, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6463 + } }, { + "id": 15373, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6464 + } }, { + "id": 15374, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6465 + } }, { + "id": 15375, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6466 + } }, { + "id": 15376, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6467 + } }, { + "id": 15377, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6468 + } }, { + "id": 15378, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6469 + } }, { + "id": 15379, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6470 + } }, { + "id": 15380, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6471 + } }, { + "id": 15381, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6472 + } }, { + "id": 15382, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6473 + } }, { + "id": 15383, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6474 + } }, { + "id": 15384, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6475 + } }, { + "id": 15385, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6476 + } }, { + "id": 15386, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6477 + } }, { + "id": 15387, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6478 + } }, { + "id": 15388, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6479 + } }, { + "id": 15389, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6480 + } }, { + "id": 15390, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6481 + } }, { + "id": 15391, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6482 + } }, { + "id": 15392, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6483 + } }, { + "id": 15393, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6484 + } }, { + "id": 15394, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6485 + } }, { + "id": 15395, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6486 + } }, { + "id": 15396, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6487 + } }, { + "id": 15397, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6488 + } }, { + "id": 15398, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6489 + } }, { + "id": 15399, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6490 + } }, { + "id": 15400, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6491 + } }, { + "id": 15401, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6492 + } }, { + "id": 15402, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6493 + } }, { + "id": 15403, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6494 + } }, { + "id": 15404, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6495 + } }, { + "id": 15405, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6496 + } }, { + "id": 15406, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6497 + } }, { + "id": 15407, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6498 + } }, { + "id": 15408, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 6499 + } }, { + "id": 15409, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 6500 + } }, { + "id": 15410, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 6501 + } }, { + "id": 15411, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 6502 + } }, { + "id": 15412, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 6503 + } }, { + "id": 15413, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 6504 + } }, { + "id": 15414, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 6505 + } }, { + "id": 15415, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 6506 + } }, { + "id": 15416, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 6507 + } }, { + "id": 15417, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 6508 + } }, { + "id": 15418, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 6509 + } }, { + "id": 15419, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 6510 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "id": 6511, - "default": true - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "id": 6512, - "default": true - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "id": 6513, - "default": true - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "id": 6514, - "default": true - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "id": 6515, - "default": true - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "id": 6516, - "default": true - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "id": 6517, - "default": true - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "id": 6518, - "default": true - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "id": 6519, - "default": true - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "id": 6520, - "default": true - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "id": 6521, - "default": true - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "id": 6522, - "default": true - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "id": 6523, - "default": true - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "id": 6524, - "default": true - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "id": 6525, - "default": true - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "id": 6526, - "default": true - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "id": 6527, - "default": true - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "id": 6528, - "default": true - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "id": 6529, - "default": true - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "id": 6530, - "default": true - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "id": 6531, - "default": true - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "id": 6532, - "default": true - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "id": 6533, - "default": true - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "id": 6534, - "default": true - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "id": 6535, - "default": true - } - ] - }, - "minecraft:carrots": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + } + }, { + "id": 15420, "properties": { - "age": "0" - }, - "id": 6536, - "default": true + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15421, "properties": { - "age": "1" - }, - "id": 6537 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15422, "properties": { - "age": "2" - }, - "id": 6538 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15423, "properties": { - "age": "3" - }, - "id": 6539 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15424, "properties": { - "age": "4" - }, - "id": 6540 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15425, "properties": { - "age": "5" - }, - "id": 6541 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15426, "properties": { - "age": "6" - }, - "id": 6542 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15427, "properties": { - "age": "7" - }, - "id": 6543 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 15428, "properties": { - "age": "0" - }, - "id": 6544, - "default": true + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15429, "properties": { - "age": "1" - }, - "id": 6545 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15430, "properties": { - "age": "2" - }, - "id": 6546 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15431, "properties": { - "age": "3" - }, - "id": 6547 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15432, "properties": { - "age": "4" - }, - "id": 6548 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15433, "properties": { - "age": "5" - }, - "id": 6549 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15434, "properties": { - "age": "6" - }, - "id": 6550 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15435, "properties": { - "age": "7" - }, - "id": 6551 - } - ] - }, - "minecraft:oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 15436, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6552 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15437, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6553 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15438, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6554 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15439, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6555 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15440, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6556 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15441, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6557 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15442, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6558 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15443, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6559 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15444, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6560 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15445, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6561, - "default": true + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15446, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6562 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15447, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6563 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15448, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6564 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15449, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6565 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15450, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6566 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15451, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6567 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15452, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6568 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15453, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6569 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15454, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6570 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15455, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6571 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15456, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6572 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15457, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6573 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15458, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6574 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15459, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6575 - } - ] - }, - "minecraft:spruce_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 15460, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6576 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15461, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6577 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15462, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6578 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15463, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6579 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15464, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6580 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15465, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6581 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15466, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6582 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15467, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6583 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15468, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6584 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15469, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6585, - "default": true + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15470, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6586 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15471, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6587 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15472, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6588 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15473, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6589 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15474, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6590 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15475, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6591 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15476, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6592 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15477, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6593 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15478, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6594 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15479, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6595 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15480, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6596 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15481, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6597 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15482, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6598 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15483, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6599 - } - ] - }, - "minecraft:birch_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 15484, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6600 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15485, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6601 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15486, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6602 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15487, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6603 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15488, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6604 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15489, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6605 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15490, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6606 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15491, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6607 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15492, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6608 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15493, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6609, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15494, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6610 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15495, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6611 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15496, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6612 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15497, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6613 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15498, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6614 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15499, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6615 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15500, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6616 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15501, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6617 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15502, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6618 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15503, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6619 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15504, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6620 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15505, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6621 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15506, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6622 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15507, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6623 - } - ] - }, - "minecraft:jungle_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6624 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15508, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6625 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15509, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6626 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15510, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6627 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15511, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6628 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15512, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6629 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15513, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6630 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15514, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6631 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15515, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6632 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15516, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6633, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15517, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6634 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15518, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6635 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15519, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6636 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15520, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6637 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15521, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6638 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15522, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6639 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15523, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6640 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15524, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6641 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15525, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6642 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15526, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6643 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15527, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6644 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15528, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6645 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15529, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6646 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15530, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6647 - } - ] - }, - "minecraft:acacia_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6648 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15531, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6649 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15532, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6650 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15533, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6651 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15534, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6652 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15535, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6653 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15536, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6654 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15537, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6655 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15538, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6656 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15539, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6657, - "default": true + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15540, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6658 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15541, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6659 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15542, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6660 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15543, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6661 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15544, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6662 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15545, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6663 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15546, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6664 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15547, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6665 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15548, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6666 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15549, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6667 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15550, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6668 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15551, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6669 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15552, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6670 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15553, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6671 - } - ] - }, - "minecraft:dark_oak_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 15554, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 6672 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15555, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 6673 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15556, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 6674 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15557, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 6675 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15558, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 6676 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15559, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 6677 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15560, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 6678 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15561, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 6679 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15562, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 6680 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15563, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 6681, - "default": true + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15564, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 6682 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15565, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 6683 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15566, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 6684 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15567, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 6685 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15568, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 6686 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15569, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 6687 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15570, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 6688 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15571, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 6689 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15572, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 6690 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15573, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 6691 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15574, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 6692 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15575, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 6693 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15576, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 6694 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15577, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 6695 - } - ] - }, - "minecraft:skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 15578, "properties": { - "rotation": "0" - }, - "id": 6696, - "default": true + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15579, "properties": { - "rotation": "1" - }, - "id": 6697 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15580, "properties": { - "rotation": "2" - }, - "id": 6698 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15581, "properties": { - "rotation": "3" - }, - "id": 6699 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15582, "properties": { - "rotation": "4" - }, - "id": 6700 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15583, "properties": { - "rotation": "5" - }, - "id": 6701 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15584, "properties": { - "rotation": "6" - }, - "id": 6702 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15585, "properties": { - "rotation": "7" - }, - "id": 6703 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15586, "properties": { - "rotation": "8" - }, - "id": 6704 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15587, "properties": { - "rotation": "9" - }, - "id": 6705 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15588, "properties": { - "rotation": "10" - }, - "id": 6706 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15589, "properties": { - "rotation": "11" - }, - "id": 6707 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15590, "properties": { - "rotation": "12" - }, - "id": 6708 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15591, "properties": { - "rotation": "13" - }, - "id": 6709 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15592, "properties": { - "rotation": "14" - }, - "id": 6710 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15593, "properties": { - "rotation": "15" - }, - "id": 6711 - } - ] - }, - "minecraft:skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 15594, "properties": { - "facing": "north" - }, - "id": 6712, - "default": true + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15595, "properties": { - "facing": "south" - }, - "id": 6713 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15596, "properties": { - "facing": "west" - }, - "id": 6714 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15597, "properties": { - "facing": "east" - }, - "id": 6715 - } - ] - }, - "minecraft:wither_skeleton_skull": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6716, - "default": true + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15598, "properties": { - "rotation": "1" - }, - "id": 6717 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15599, "properties": { - "rotation": "2" - }, - "id": 6718 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15600, "properties": { - "rotation": "3" - }, - "id": 6719 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15601, "properties": { - "rotation": "4" - }, - "id": 6720 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15602, "properties": { - "rotation": "5" - }, - "id": 6721 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15603, "properties": { - "rotation": "6" - }, - "id": 6722 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15604, "properties": { - "rotation": "7" - }, - "id": 6723 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15605, "properties": { - "rotation": "8" - }, - "id": 6724 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15606, "properties": { - "rotation": "9" - }, - "id": 6725 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15607, "properties": { - "rotation": "10" - }, - "id": 6726 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15608, "properties": { - "rotation": "11" - }, - "id": 6727 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15609, "properties": { - "rotation": "12" - }, - "id": 6728 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15610, "properties": { - "rotation": "13" - }, - "id": 6729 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15611, "properties": { - "rotation": "14" - }, - "id": 6730 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15612, "properties": { - "rotation": "15" - }, - "id": 6731 - } - ] - }, - "minecraft:wither_skeleton_wall_skull": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6732, - "default": true + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15613, "properties": { - "facing": "south" - }, - "id": 6733 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15614, "properties": { - "facing": "west" - }, - "id": 6734 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15615, "properties": { - "facing": "east" - }, - "id": 6735 - } - ] - }, - "minecraft:zombie_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 15616, "properties": { - "rotation": "0" - }, - "id": 6736, - "default": true + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15617, "properties": { - "rotation": "1" - }, - "id": 6737 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15618, "properties": { - "rotation": "2" - }, - "id": 6738 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15619, "properties": { - "rotation": "3" - }, - "id": 6739 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15620, "properties": { - "rotation": "4" - }, - "id": 6740 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15621, "properties": { - "rotation": "5" - }, - "id": 6741 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15622, "properties": { - "rotation": "6" - }, - "id": 6742 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15623, "properties": { - "rotation": "7" - }, - "id": 6743 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15624, "properties": { - "rotation": "8" - }, - "id": 6744 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15625, "properties": { - "rotation": "9" - }, - "id": 6745 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 15626, "properties": { - "rotation": "10" - }, - "id": 6746 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15627, "properties": { - "rotation": "11" - }, - "id": 6747 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15628, "properties": { - "rotation": "12" - }, - "id": 6748 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15629, "properties": { - "rotation": "13" - }, - "id": 6749 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 15630, "properties": { - "rotation": "14" - }, - "id": 6750 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 15631, "properties": { - "rotation": "15" - }, - "id": 6751 - } - ] - }, - "minecraft:zombie_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 15632, "properties": { - "facing": "north" - }, - "id": 6752, - "default": true + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 15633, "properties": { - "facing": "south" - }, - "id": 6753 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 15634, "properties": { - "facing": "west" - }, - "id": 6754 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 15635, "properties": { - "facing": "east" - }, - "id": 6755 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } } ] }, - "minecraft:player_head": { + "minecraft:end_stone_bricks": { + "states": [ + { + "default": true, + "id": 10099 + } + ] + }, + "minecraft:ender_chest": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 5843, "properties": { - "rotation": "0" - }, - "id": 6756, - "default": true + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 5844, "properties": { - "rotation": "1" - }, - "id": 6757 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 5845, "properties": { - "rotation": "2" - }, - "id": 6758 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 5846, "properties": { - "rotation": "3" - }, - "id": 6759 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 5847, "properties": { - "rotation": "4" - }, - "id": 6760 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 5848, "properties": { - "rotation": "5" - }, - "id": 6761 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 5849, "properties": { - "rotation": "6" - }, - "id": 6762 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 5850, "properties": { - "rotation": "7" - }, - "id": 6763 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper": { + "states": [ { - "properties": { - "rotation": "8" - }, - "id": 6764 - }, + "default": true, + "id": 18910 + } + ] + }, + "minecraft:exposed_cut_copper": { + "states": [ { - "properties": { - "rotation": "9" - }, - "id": 6765 - }, + "default": true, + "id": 18916 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19250, "properties": { - "rotation": "10" - }, - "id": 6766 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19251, "properties": { - "rotation": "11" - }, - "id": 6767 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19252, "properties": { - "rotation": "12" - }, - "id": 6768 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19253, "properties": { - "rotation": "13" - }, - "id": 6769 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19254, "properties": { - "rotation": "14" - }, - "id": 6770 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19255, "properties": { - "rotation": "15" - }, - "id": 6771 + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:player_wall_head": { + "minecraft:exposed_cut_copper_stairs": { "properties": { "facing": [ "north", "south", "west", "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 19078, "properties": { - "facing": "north" - }, - "id": 6772, - "default": true + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19079, "properties": { - "facing": "south" - }, - "id": 6773 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19080, "properties": { - "facing": "west" - }, - "id": 6774 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19081, "properties": { - "facing": "east" - }, - "id": 6775 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6776, - "default": true + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19082, "properties": { - "rotation": "1" - }, - "id": 6777 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19083, "properties": { - "rotation": "2" - }, - "id": 6778 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19084, "properties": { - "rotation": "3" - }, - "id": 6779 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19085, "properties": { - "rotation": "4" - }, - "id": 6780 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19086, "properties": { - "rotation": "5" - }, - "id": 6781 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19087, "properties": { - "rotation": "6" - }, - "id": 6782 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19088, "properties": { - "rotation": "7" - }, - "id": 6783 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19089, "properties": { - "rotation": "8" - }, - "id": 6784 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19090, "properties": { - "rotation": "9" - }, - "id": 6785 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19091, "properties": { - "rotation": "10" - }, - "id": 6786 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19092, "properties": { - "rotation": "11" - }, - "id": 6787 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19093, "properties": { - "rotation": "12" - }, - "id": 6788 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19094, "properties": { - "rotation": "13" - }, - "id": 6789 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19095, "properties": { - "rotation": "14" - }, - "id": 6790 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19096, "properties": { - "rotation": "15" - }, - "id": 6791 - } - ] - }, - "minecraft:creeper_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6792, - "default": true + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19097, "properties": { - "facing": "south" - }, - "id": 6793 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19098, "properties": { - "facing": "west" - }, - "id": 6794 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19099, "properties": { - "facing": "east" - }, - "id": 6795 - } - ] - }, - "minecraft:dragon_head": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 6796, - "default": true + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19100, "properties": { - "rotation": "1" - }, - "id": 6797 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19101, "properties": { - "rotation": "2" - }, - "id": 6798 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19102, "properties": { - "rotation": "3" - }, - "id": 6799 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19103, "properties": { - "rotation": "4" - }, - "id": 6800 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19104, "properties": { - "rotation": "5" - }, - "id": 6801 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19105, "properties": { - "rotation": "6" - }, - "id": 6802 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19106, "properties": { - "rotation": "7" - }, - "id": 6803 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19107, "properties": { - "rotation": "8" - }, - "id": 6804 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19108, "properties": { - "rotation": "9" - }, - "id": 6805 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19109, "properties": { - "rotation": "10" - }, - "id": 6806 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19110, "properties": { - "rotation": "11" - }, - "id": 6807 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19111, "properties": { - "rotation": "12" - }, - "id": 6808 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19112, "properties": { - "rotation": "13" - }, - "id": 6809 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19113, "properties": { - "rotation": "14" - }, - "id": 6810 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19114, "properties": { - "rotation": "15" - }, - "id": 6811 - } - ] - }, - "minecraft:dragon_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6812, - "default": true + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19115, "properties": { - "facing": "south" - }, - "id": 6813 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19116, "properties": { - "facing": "west" - }, - "id": 6814 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19117, "properties": { - "facing": "east" - }, - "id": 6815 - } - ] - }, - "minecraft:anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6816, - "default": true + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19118, "properties": { - "facing": "south" - }, - "id": 6817 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19119, "properties": { - "facing": "west" - }, - "id": 6818 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19120, "properties": { - "facing": "east" - }, - "id": 6819 - } - ] - }, - "minecraft:chipped_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 6820, - "default": true + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19121, "properties": { - "facing": "south" - }, - "id": 6821 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19122, "properties": { - "facing": "west" - }, - "id": 6822 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19123, "properties": { - "facing": "east" - }, - "id": 6823 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, { + "id": 19124, "properties": { - "facing": "north" - }, - "id": 6824, - "default": true + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19125, "properties": { - "facing": "south" - }, - "id": 6825 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19126, "properties": { - "facing": "west" - }, - "id": 6826 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19127, "properties": { - "facing": "east" - }, - "id": 6827 - } - ] - }, - "minecraft:trapped_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "type": [ - "single", - "left", - "right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, { + "id": 19128, "properties": { - "facing": "north", - "type": "single", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 6828 + } }, { + "id": 19129, "properties": { - "facing": "north", - "type": "single", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 6829, - "default": true + } }, { + "id": 19130, "properties": { - "facing": "north", - "type": "left", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 6830 + } }, { + "id": 19131, "properties": { - "facing": "north", - "type": "left", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 6831 + } }, { + "id": 19132, "properties": { - "facing": "north", - "type": "right", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 6832 + } }, { + "id": 19133, "properties": { - "facing": "north", - "type": "right", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 6833 + } }, { + "id": 19134, "properties": { - "facing": "south", - "type": "single", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 6834 + } }, { + "id": 19135, "properties": { - "facing": "south", - "type": "single", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 6835 + } }, { + "id": 19136, "properties": { - "facing": "south", - "type": "left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 6836 + } }, { + "id": 19137, "properties": { - "facing": "south", - "type": "left", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 6837 + } }, { + "id": 19138, "properties": { - "facing": "south", - "type": "right", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 6838 + } }, { + "id": 19139, "properties": { - "facing": "south", - "type": "right", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 6839 + } }, { + "id": 19140, "properties": { - "facing": "west", - "type": "single", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 6840 + } }, { + "id": 19141, "properties": { - "facing": "west", - "type": "single", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 6841 + } }, { + "id": 19142, "properties": { - "facing": "west", - "type": "left", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 6842 + } }, { + "id": 19143, "properties": { - "facing": "west", - "type": "left", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 6843 + } }, { + "id": 19144, "properties": { - "facing": "west", - "type": "right", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 6844 + } }, { + "id": 19145, "properties": { - "facing": "west", - "type": "right", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 6845 + } }, { + "id": 19146, "properties": { "facing": "east", - "type": "single", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 6846 + } }, { + "id": 19147, "properties": { "facing": "east", - "type": "single", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 6847 + } }, { + "id": 19148, "properties": { "facing": "east", - "type": "left", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 6848 + } }, { + "id": 19149, "properties": { "facing": "east", - "type": "left", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 6849 + } }, { + "id": 19150, "properties": { "facing": "east", - "type": "right", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 6850 + } }, { + "id": 19151, "properties": { "facing": "east", - "type": "right", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 6851 - } - ] - }, - "minecraft:light_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "power": "0" - }, - "id": 6852, - "default": true + } }, { + "id": 19152, "properties": { - "power": "1" - }, - "id": 6853 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19153, "properties": { - "power": "2" - }, - "id": 6854 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19154, "properties": { - "power": "3" - }, - "id": 6855 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19155, "properties": { - "power": "4" - }, - "id": 6856 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19156, "properties": { - "power": "5" - }, - "id": 6857 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19157, "properties": { - "power": "6" - }, - "id": 6858 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ { + "default": true, + "id": 3620, "properties": { - "power": "7" - }, - "id": 6859 + "moisture": "0" + } }, { + "id": 3621, "properties": { - "power": "8" - }, - "id": 6860 + "moisture": "1" + } }, { + "id": 3622, "properties": { - "power": "9" - }, - "id": 6861 + "moisture": "2" + } }, { + "id": 3623, "properties": { - "power": "10" - }, - "id": 6862 + "moisture": "3" + } }, { + "id": 3624, "properties": { - "power": "11" - }, - "id": 6863 + "moisture": "4" + } }, { + "id": 3625, "properties": { - "power": "12" - }, - "id": 6864 + "moisture": "5" + } }, { + "id": 3626, "properties": { - "power": "13" - }, - "id": 6865 + "moisture": "6" + } }, { + "id": 3627, "properties": { - "power": "14" - }, - "id": 6866 - }, + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "states": [ { - "properties": { - "power": "15" - }, - "id": 6867 + "default": true, + "id": 1597 } ] }, - "minecraft:heavy_weighted_pressure_plate": { + "minecraft:fire": { "properties": { - "power": [ + "age": [ "0", "1", "2", @@ -67040,5672 +69240,6198 @@ "13", "14", "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 1694, "properties": { - "power": "0" - }, - "id": 6868, - "default": true + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1695, "properties": { - "power": "1" - }, - "id": 6869 + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1696, "properties": { - "power": "2" - }, - "id": 6870 + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1697, "properties": { - "power": "3" - }, - "id": 6871 + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1698, "properties": { - "power": "4" - }, - "id": 6872 + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1699, "properties": { - "power": "5" - }, - "id": 6873 + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1700, "properties": { - "power": "6" - }, - "id": 6874 + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1701, "properties": { - "power": "7" - }, - "id": 6875 + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1702, "properties": { - "power": "8" - }, - "id": 6876 + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1703, "properties": { - "power": "9" - }, - "id": 6877 + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1704, "properties": { - "power": "10" - }, - "id": 6878 + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1705, "properties": { - "power": "11" - }, - "id": 6879 + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1706, "properties": { - "power": "12" - }, - "id": 6880 + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1707, "properties": { - "power": "13" - }, - "id": 6881 + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1708, "properties": { - "power": "14" - }, - "id": 6882 + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1709, "properties": { - "power": "15" - }, - "id": 6883 - } - ] - }, - "minecraft:comparator": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "mode": [ - "compare", - "subtract" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "mode": "compare", - "powered": "true" - }, - "id": 6884 + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1710, "properties": { - "facing": "north", - "mode": "compare", - "powered": "false" - }, - "id": 6885, - "default": true + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1711, "properties": { - "facing": "north", - "mode": "subtract", - "powered": "true" - }, - "id": 6886 + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1712, "properties": { - "facing": "north", - "mode": "subtract", - "powered": "false" - }, - "id": 6887 + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1713, "properties": { - "facing": "south", - "mode": "compare", - "powered": "true" - }, - "id": 6888 + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1714, "properties": { - "facing": "south", - "mode": "compare", - "powered": "false" - }, - "id": 6889 + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1715, "properties": { - "facing": "south", - "mode": "subtract", - "powered": "true" - }, - "id": 6890 + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1716, "properties": { - "facing": "south", - "mode": "subtract", - "powered": "false" - }, - "id": 6891 + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1717, "properties": { - "facing": "west", - "mode": "compare", - "powered": "true" - }, - "id": 6892 + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1718, "properties": { - "facing": "west", - "mode": "compare", - "powered": "false" - }, - "id": 6893 + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1719, "properties": { - "facing": "west", - "mode": "subtract", - "powered": "true" - }, - "id": 6894 + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1720, "properties": { - "facing": "west", - "mode": "subtract", - "powered": "false" - }, - "id": 6895 + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1721, "properties": { - "facing": "east", - "mode": "compare", - "powered": "true" - }, - "id": 6896 + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1722, "properties": { - "facing": "east", - "mode": "compare", - "powered": "false" - }, - "id": 6897 + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1723, "properties": { - "facing": "east", - "mode": "subtract", - "powered": "true" - }, - "id": 6898 + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1724, "properties": { - "facing": "east", - "mode": "subtract", - "powered": "false" - }, - "id": 6899 - } - ] - }, - "minecraft:daylight_detector": { - "properties": { - "inverted": [ - "true", - "false" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, { + "default": true, + "id": 1725, "properties": { - "inverted": "true", - "power": "0" - }, - "id": 6900 + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1726, "properties": { - "inverted": "true", - "power": "1" - }, - "id": 6901 + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1727, "properties": { - "inverted": "true", - "power": "2" - }, - "id": 6902 + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1728, "properties": { - "inverted": "true", - "power": "3" - }, - "id": 6903 + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1729, "properties": { - "inverted": "true", - "power": "4" - }, - "id": 6904 + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1730, "properties": { - "inverted": "true", - "power": "5" - }, - "id": 6905 + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1731, "properties": { - "inverted": "true", - "power": "6" - }, - "id": 6906 + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1732, "properties": { - "inverted": "true", - "power": "7" - }, - "id": 6907 + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1733, "properties": { - "inverted": "true", - "power": "8" - }, - "id": 6908 + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1734, "properties": { - "inverted": "true", - "power": "9" - }, - "id": 6909 + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1735, "properties": { - "inverted": "true", - "power": "10" - }, - "id": 6910 + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1736, "properties": { - "inverted": "true", - "power": "11" - }, - "id": 6911 + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1737, "properties": { - "inverted": "true", - "power": "12" - }, - "id": 6912 + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1738, "properties": { - "inverted": "true", - "power": "13" - }, - "id": 6913 + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1739, "properties": { - "inverted": "true", - "power": "14" - }, - "id": 6914 + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1740, "properties": { - "inverted": "true", - "power": "15" - }, - "id": 6915 + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1741, "properties": { - "inverted": "false", - "power": "0" - }, - "id": 6916, - "default": true + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1742, "properties": { - "inverted": "false", - "power": "1" - }, - "id": 6917 + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1743, "properties": { - "inverted": "false", - "power": "2" - }, - "id": 6918 + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1744, "properties": { - "inverted": "false", - "power": "3" - }, - "id": 6919 + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1745, "properties": { - "inverted": "false", - "power": "4" - }, - "id": 6920 + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1746, "properties": { - "inverted": "false", - "power": "5" - }, - "id": 6921 + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1747, "properties": { - "inverted": "false", - "power": "6" - }, - "id": 6922 + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1748, "properties": { - "inverted": "false", - "power": "7" - }, - "id": 6923 + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1749, "properties": { - "inverted": "false", - "power": "8" - }, - "id": 6924 + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1750, "properties": { - "inverted": "false", - "power": "9" - }, - "id": 6925 + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1751, "properties": { - "inverted": "false", - "power": "10" - }, - "id": 6926 + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1752, "properties": { - "inverted": "false", - "power": "11" - }, - "id": 6927 + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1753, "properties": { - "inverted": "false", - "power": "12" - }, - "id": 6928 + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1754, "properties": { - "inverted": "false", - "power": "13" - }, - "id": 6929 + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1755, "properties": { - "inverted": "false", - "power": "14" - }, - "id": 6930 + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1756, "properties": { - "inverted": "false", - "power": "15" - }, - "id": 6931 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "id": 6932, - "default": true - } - ] - }, - "minecraft:nether_quartz_ore": { - "states": [ - { - "id": 6933, - "default": true - } - ] - }, - "minecraft:hopper": { - "properties": { - "enabled": [ - "true", - "false" - ], - "facing": [ - "down", - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, { + "id": 1757, "properties": { - "enabled": "true", - "facing": "down" - }, - "id": 6934, - "default": true + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1758, "properties": { - "enabled": "true", - "facing": "north" - }, - "id": 6935 + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1759, "properties": { - "enabled": "true", - "facing": "south" - }, - "id": 6936 + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1760, "properties": { - "enabled": "true", - "facing": "west" - }, - "id": 6937 + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1761, "properties": { - "enabled": "true", - "facing": "east" - }, - "id": 6938 + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1762, "properties": { - "enabled": "false", - "facing": "down" - }, - "id": 6939 + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1763, "properties": { - "enabled": "false", - "facing": "north" - }, - "id": 6940 + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1764, "properties": { - "enabled": "false", - "facing": "south" - }, - "id": 6941 + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1765, "properties": { - "enabled": "false", - "facing": "west" - }, - "id": 6942 + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1766, "properties": { - "enabled": "false", - "facing": "east" - }, - "id": 6943 - } - ] - }, - "minecraft:quartz_block": { - "states": [ - { - "id": 6944, - "default": true - } - ] - }, - "minecraft:chiseled_quartz_block": { - "states": [ - { - "id": 6945, - "default": true - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, { + "id": 1767, "properties": { - "axis": "x" - }, - "id": 6946 + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1768, "properties": { - "axis": "y" - }, - "id": 6947, - "default": true + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1769, "properties": { - "axis": "z" - }, - "id": 6948 - } - ] - }, - "minecraft:quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, { + "id": 1770, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6949 + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1771, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6950 + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1772, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6951 + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1773, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6952 + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1774, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6953 + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1775, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6954 + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1776, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6955 + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1777, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6956 + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1778, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6957 + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1779, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6958 + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1780, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6959 + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1781, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6960, - "default": true + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1782, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6961 + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1783, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6962 + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1784, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6963 + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1785, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6964 + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1786, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6965 + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1787, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6966 + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1788, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6967 + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1789, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6968 + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1790, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6969 + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1791, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6970 + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1792, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6971 + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1793, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6972 + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1794, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6973 + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1795, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6974 + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1796, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6975 + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1797, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6976 + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1798, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6977 + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1799, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6978 + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1800, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6979 + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1801, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6980 + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1802, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6981 + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1803, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6982 + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1804, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6983 + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1805, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6984 + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1806, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6985 + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1807, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6986 + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1808, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6987 + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1809, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6988 + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1810, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6989 + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1811, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 6990 + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1812, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 6991 + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1813, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 6992 + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1814, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 6993 + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1815, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 6994 + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1816, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 6995 + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1817, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 6996 + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1818, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 6997 + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1819, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 6998 + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1820, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 6999 + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1821, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7000 + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1822, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7001 + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1823, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7002 + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1824, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7003 + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1825, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7004 + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1826, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7005 + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1827, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7006 + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1828, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7007 + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1829, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7008 + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1830, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7009 + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1831, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7010 + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1832, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7011 + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1833, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7012 + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1834, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7013 + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1835, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7014 + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1836, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7015 + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1837, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7016 + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1838, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7017 + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1839, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7018 + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1840, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7019 + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1841, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7020 + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1842, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7021 + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1843, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7022 + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1844, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7023 + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1845, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7024 + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1846, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7025 + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1847, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7026 + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1848, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7027 + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1849, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7028 - } - ] - }, - "minecraft:activator_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, { + "id": 1850, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 7029 + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1851, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 7030 + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1852, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 7031 + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1853, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 7032 + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1854, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 7033 + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1855, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 7034 + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1856, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 7035 + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1857, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 7036 + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1858, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 7037 + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1859, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 7038 + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1860, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 7039 + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1861, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 7040 + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1862, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - }, - "id": 7041 + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1863, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - }, - "id": 7042, - "default": true + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1864, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - }, - "id": 7043 + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1865, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - }, - "id": 7044 + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1866, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - }, - "id": 7045 + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1867, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - }, - "id": 7046 + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1868, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - }, - "id": 7047 + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1869, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - }, - "id": 7048 + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1870, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - }, - "id": 7049 + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1871, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - }, - "id": 7050 + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1872, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - }, - "id": 7051 + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1873, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - }, - "id": 7052 - } - ] - }, - "minecraft:dropper": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, { + "id": 1874, "properties": { - "facing": "north", - "triggered": "true" - }, - "id": 7053 + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1875, "properties": { - "facing": "north", - "triggered": "false" - }, - "id": 7054, - "default": true + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1876, "properties": { - "facing": "east", - "triggered": "true" - }, - "id": 7055 + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1877, "properties": { - "facing": "east", - "triggered": "false" - }, - "id": 7056 + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 1878, "properties": { - "facing": "south", - "triggered": "true" - }, - "id": 7057 + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 1879, "properties": { - "facing": "south", - "triggered": "false" - }, - "id": 7058 + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 1880, "properties": { - "facing": "west", - "triggered": "true" - }, - "id": 7059 + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 1881, "properties": { - "facing": "west", - "triggered": "false" - }, - "id": 7060 + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 1882, "properties": { - "facing": "up", - "triggered": "true" - }, - "id": 7061 + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 1883, "properties": { - "facing": "up", - "triggered": "false" - }, - "id": 7062 + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 1884, "properties": { - "facing": "down", - "triggered": "true" - }, - "id": 7063 + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 1885, "properties": { - "facing": "down", - "triggered": "false" - }, - "id": 7064 - } - ] - }, - "minecraft:white_terracotta": { - "states": [ - { - "id": 7065, - "default": true - } - ] - }, - "minecraft:orange_terracotta": { - "states": [ - { - "id": 7066, - "default": true - } - ] - }, - "minecraft:magenta_terracotta": { - "states": [ - { - "id": 7067, - "default": true - } - ] - }, - "minecraft:light_blue_terracotta": { - "states": [ - { - "id": 7068, - "default": true - } - ] - }, - "minecraft:yellow_terracotta": { - "states": [ - { - "id": 7069, - "default": true - } - ] - }, - "minecraft:lime_terracotta": { - "states": [ - { - "id": 7070, - "default": true - } - ] - }, - "minecraft:pink_terracotta": { - "states": [ - { - "id": 7071, - "default": true - } - ] - }, - "minecraft:gray_terracotta": { - "states": [ - { - "id": 7072, - "default": true - } - ] - }, - "minecraft:light_gray_terracotta": { - "states": [ - { - "id": 7073, - "default": true - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ - { - "id": 7074, - "default": true - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "id": 7075, - "default": true - } - ] - }, - "minecraft:blue_terracotta": { - "states": [ - { - "id": 7076, - "default": true - } - ] - }, - "minecraft:brown_terracotta": { - "states": [ - { - "id": 7077, - "default": true - } - ] - }, - "minecraft:green_terracotta": { - "states": [ - { - "id": 7078, - "default": true - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "id": 7079, - "default": true - } - ] - }, - "minecraft:black_terracotta": { - "states": [ - { - "id": 7080, - "default": true - } - ] - }, - "minecraft:white_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, { + "id": 1886, "properties": { + "age": "6", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7081 + } }, { + "id": 1887, "properties": { + "age": "6", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7082 + } }, { + "id": 1888, "properties": { + "age": "6", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7083 + } }, { + "id": 1889, "properties": { + "age": "6", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7084 + } }, { + "id": 1890, "properties": { + "age": "6", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7085 + } }, { + "id": 1891, "properties": { + "age": "6", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7086 + } }, { + "id": 1892, "properties": { + "age": "6", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7087 + } }, { + "id": 1893, "properties": { + "age": "6", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7088 + } }, { + "id": 1894, "properties": { + "age": "6", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7089 + } }, { + "id": 1895, "properties": { + "age": "6", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7090 + } }, { + "id": 1896, "properties": { + "age": "6", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7091 + } }, { + "id": 1897, "properties": { + "age": "6", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7092 + } }, { + "id": 1898, "properties": { + "age": "6", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7093 + } }, { + "id": 1899, "properties": { + "age": "6", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7094 + } }, { + "id": 1900, "properties": { + "age": "6", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7095 + } }, { + "id": 1901, "properties": { + "age": "6", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7096 + } }, { + "id": 1902, "properties": { + "age": "6", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7097 + } }, { + "id": 1903, "properties": { + "age": "6", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7098 + } }, { + "id": 1904, "properties": { + "age": "6", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7099 + } }, { + "id": 1905, "properties": { + "age": "6", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7100 + } }, { + "id": 1906, "properties": { + "age": "6", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7101 + } }, { + "id": 1907, "properties": { + "age": "6", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7102 + } }, { + "id": 1908, "properties": { + "age": "6", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7103 + } }, { + "id": 1909, "properties": { + "age": "6", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7104 + } }, { + "id": 1910, "properties": { + "age": "6", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7105 + } }, { + "id": 1911, "properties": { + "age": "6", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7106 + } }, { + "id": 1912, "properties": { + "age": "6", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7107 + } }, { + "id": 1913, "properties": { + "age": "6", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7108 + } }, { + "id": 1914, "properties": { + "age": "6", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7109 + } }, { + "id": 1915, "properties": { + "age": "6", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7110 + } }, { + "id": 1916, "properties": { + "age": "6", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7111 + } }, { + "id": 1917, "properties": { + "age": "6", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7112, - "default": true - } - ] - }, - "minecraft:orange_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 1918, "properties": { + "age": "7", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7113 + } }, { + "id": 1919, "properties": { + "age": "7", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7114 + } }, { + "id": 1920, "properties": { + "age": "7", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7115 + } }, { + "id": 1921, "properties": { + "age": "7", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7116 + } }, { + "id": 1922, "properties": { + "age": "7", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7117 + } }, { + "id": 1923, "properties": { + "age": "7", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7118 + } }, { + "id": 1924, "properties": { + "age": "7", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7119 + } }, { + "id": 1925, "properties": { + "age": "7", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7120 + } }, { + "id": 1926, "properties": { + "age": "7", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7121 + } }, { + "id": 1927, "properties": { + "age": "7", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7122 + } }, { + "id": 1928, "properties": { + "age": "7", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7123 + } }, { + "id": 1929, "properties": { + "age": "7", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7124 + } }, { + "id": 1930, "properties": { + "age": "7", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7125 + } }, { + "id": 1931, "properties": { + "age": "7", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7126 + } }, { + "id": 1932, "properties": { + "age": "7", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7127 + } }, { + "id": 1933, "properties": { + "age": "7", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7128 + } }, { + "id": 1934, "properties": { + "age": "7", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7129 + } }, { + "id": 1935, "properties": { + "age": "7", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7130 + } }, { + "id": 1936, "properties": { + "age": "7", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7131 + } }, { + "id": 1937, "properties": { + "age": "7", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7132 + } }, { + "id": 1938, "properties": { + "age": "7", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7133 + } }, { + "id": 1939, "properties": { + "age": "7", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7134 + } }, { + "id": 1940, "properties": { + "age": "7", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7135 + } }, { + "id": 1941, "properties": { + "age": "7", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7136 + } }, { + "id": 1942, "properties": { + "age": "7", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7137 + } }, { + "id": 1943, "properties": { + "age": "7", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7138 + } }, { + "id": 1944, "properties": { + "age": "7", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7139 + } }, { + "id": 1945, "properties": { + "age": "7", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7140 + } }, { + "id": 1946, "properties": { + "age": "7", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7141 + } }, { + "id": 1947, "properties": { + "age": "7", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7142 + } }, { + "id": 1948, "properties": { + "age": "7", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7143 + } }, { + "id": 1949, "properties": { + "age": "7", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7144, - "default": true - } - ] - }, - "minecraft:magenta_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 1950, "properties": { + "age": "8", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7145 + } }, { + "id": 1951, "properties": { + "age": "8", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7146 + } }, { + "id": 1952, "properties": { + "age": "8", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7147 + } }, { + "id": 1953, "properties": { + "age": "8", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7148 + } }, { + "id": 1954, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7149 + } }, { + "id": 1955, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7150 + } }, { + "id": 1956, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7151 + } }, { + "id": 1957, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7152 + } }, { + "id": 1958, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7153 + } }, { + "id": 1959, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7154 + } }, { + "id": 1960, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7155 + } }, { + "id": 1961, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7156 + } }, { + "id": 1962, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7157 + } }, { + "id": 1963, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7158 + } }, { + "id": 1964, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7159 + } }, { + "id": 1965, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7160 + } }, { + "id": 1966, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7161 + } }, { + "id": 1967, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7162 + } }, { + "id": 1968, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7163 + } }, { + "id": 1969, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7164 + } }, { + "id": 1970, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7165 + } }, { + "id": 1971, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7166 + } }, { + "id": 1972, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7167 + } }, { + "id": 1973, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7168 + } }, { + "id": 1974, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7169 + } }, { + "id": 1975, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7170 + } }, { + "id": 1976, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7171 + } }, { + "id": 1977, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7172 + } }, { + "id": 1978, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7173 + } }, { + "id": 1979, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7174 + } }, { + "id": 1980, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7175 + } }, { + "id": 1981, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7176, - "default": true - } - ] - }, - "minecraft:light_blue_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 1982, "properties": { + "age": "9", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7177 + } }, { + "id": 1983, "properties": { + "age": "9", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7178 + } }, { + "id": 1984, "properties": { + "age": "9", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7179 + } }, { + "id": 1985, "properties": { + "age": "9", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7180 + } }, { + "id": 1986, "properties": { + "age": "9", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7181 + } }, { + "id": 1987, "properties": { + "age": "9", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7182 + } }, { + "id": 1988, "properties": { + "age": "9", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7183 + } }, { + "id": 1989, "properties": { + "age": "9", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7184 + } }, { + "id": 1990, "properties": { + "age": "9", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7185 + } }, { + "id": 1991, "properties": { + "age": "9", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7186 + } }, { + "id": 1992, "properties": { + "age": "9", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7187 + } }, { + "id": 1993, "properties": { + "age": "9", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7188 + } }, { + "id": 1994, "properties": { + "age": "9", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7189 + } }, { + "id": 1995, "properties": { + "age": "9", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7190 + } }, { + "id": 1996, "properties": { + "age": "9", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7191 + } }, { + "id": 1997, "properties": { + "age": "9", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7192 + } }, { + "id": 1998, "properties": { + "age": "9", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7193 + } }, { + "id": 1999, "properties": { + "age": "9", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7194 + } }, { + "id": 2000, "properties": { + "age": "9", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7195 + } }, { + "id": 2001, "properties": { + "age": "9", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7196 + } }, { + "id": 2002, "properties": { + "age": "9", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7197 + } }, { + "id": 2003, "properties": { + "age": "9", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7198 + } }, { + "id": 2004, "properties": { + "age": "9", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7199 + } }, { + "id": 2005, "properties": { + "age": "9", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7200 + } }, { + "id": 2006, "properties": { + "age": "9", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7201 + } }, { + "id": 2007, "properties": { + "age": "9", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7202 + } }, { + "id": 2008, "properties": { + "age": "9", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7203 + } }, { + "id": 2009, "properties": { + "age": "9", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7204 + } }, { + "id": 2010, "properties": { + "age": "9", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7205 + } }, { + "id": 2011, "properties": { + "age": "9", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7206 + } }, { + "id": 2012, "properties": { + "age": "9", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7207 + } }, { + "id": 2013, "properties": { + "age": "9", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7208, - "default": true - } - ] - }, - "minecraft:yellow_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2014, "properties": { + "age": "10", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7209 + } }, { + "id": 2015, "properties": { + "age": "10", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7210 + } }, { + "id": 2016, "properties": { + "age": "10", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7211 + } }, { + "id": 2017, "properties": { + "age": "10", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7212 + } }, { + "id": 2018, "properties": { + "age": "10", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7213 + } }, { + "id": 2019, "properties": { + "age": "10", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7214 + } }, { + "id": 2020, "properties": { + "age": "10", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7215 + } }, { + "id": 2021, "properties": { + "age": "10", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7216 + } }, { + "id": 2022, "properties": { + "age": "10", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7217 + } }, { + "id": 2023, "properties": { + "age": "10", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7218 + } }, { + "id": 2024, "properties": { + "age": "10", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7219 + } }, { + "id": 2025, "properties": { + "age": "10", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7220 + } }, { + "id": 2026, "properties": { + "age": "10", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7221 + } }, { + "id": 2027, "properties": { + "age": "10", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7222 + } }, { + "id": 2028, "properties": { + "age": "10", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7223 + } }, { + "id": 2029, "properties": { + "age": "10", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7224 + } }, { + "id": 2030, "properties": { + "age": "10", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7225 + } }, { + "id": 2031, "properties": { + "age": "10", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7226 + } }, { + "id": 2032, "properties": { + "age": "10", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7227 + } }, { + "id": 2033, "properties": { + "age": "10", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7228 + } }, { + "id": 2034, "properties": { + "age": "10", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7229 + } }, { + "id": 2035, "properties": { + "age": "10", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7230 + } }, { + "id": 2036, "properties": { + "age": "10", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7231 + } }, { + "id": 2037, "properties": { + "age": "10", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7232 + } }, { + "id": 2038, "properties": { + "age": "10", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7233 + } }, { + "id": 2039, "properties": { + "age": "10", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7234 + } }, { + "id": 2040, "properties": { + "age": "10", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7235 + } }, { + "id": 2041, "properties": { + "age": "10", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7236 + } }, { + "id": 2042, "properties": { + "age": "10", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7237 + } }, { + "id": 2043, "properties": { + "age": "10", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7238 + } }, { + "id": 2044, "properties": { + "age": "10", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7239 + } }, { + "id": 2045, "properties": { + "age": "10", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7240, - "default": true - } - ] - }, - "minecraft:lime_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2046, "properties": { + "age": "11", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7241 + } }, { + "id": 2047, "properties": { + "age": "11", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7242 + } }, { + "id": 2048, "properties": { + "age": "11", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7243 + } }, { + "id": 2049, "properties": { + "age": "11", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7244 + } }, { + "id": 2050, "properties": { + "age": "11", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7245 + } }, { + "id": 2051, "properties": { + "age": "11", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7246 + } }, { + "id": 2052, "properties": { + "age": "11", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7247 + } }, { + "id": 2053, "properties": { + "age": "11", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7248 + } }, { + "id": 2054, "properties": { + "age": "11", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7249 + } }, { + "id": 2055, "properties": { + "age": "11", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7250 + } }, { + "id": 2056, "properties": { + "age": "11", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7251 + } }, { + "id": 2057, "properties": { + "age": "11", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7252 + } }, { + "id": 2058, "properties": { + "age": "11", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7253 + } }, { + "id": 2059, "properties": { + "age": "11", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7254 + } }, { + "id": 2060, "properties": { + "age": "11", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7255 + } }, { + "id": 2061, "properties": { + "age": "11", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7256 + } }, { + "id": 2062, "properties": { + "age": "11", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7257 + } }, { + "id": 2063, "properties": { + "age": "11", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7258 + } }, { + "id": 2064, "properties": { + "age": "11", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7259 + } }, { + "id": 2065, "properties": { + "age": "11", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7260 + } }, { + "id": 2066, "properties": { + "age": "11", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7261 + } }, { + "id": 2067, "properties": { + "age": "11", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7262 + } }, { + "id": 2068, "properties": { + "age": "11", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7263 + } }, { + "id": 2069, "properties": { + "age": "11", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7264 + } }, { + "id": 2070, "properties": { + "age": "11", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7265 + } }, { + "id": 2071, "properties": { + "age": "11", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7266 + } }, { + "id": 2072, "properties": { + "age": "11", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7267 + } }, { + "id": 2073, "properties": { + "age": "11", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7268 + } }, { + "id": 2074, "properties": { + "age": "11", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7269 + } }, { + "id": 2075, "properties": { + "age": "11", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7270 + } }, { + "id": 2076, "properties": { + "age": "11", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7271 + } }, { + "id": 2077, "properties": { + "age": "11", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7272, - "default": true - } - ] - }, - "minecraft:pink_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2078, "properties": { + "age": "12", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7273 + } }, { + "id": 2079, "properties": { + "age": "12", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7274 + } }, { + "id": 2080, "properties": { + "age": "12", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7275 + } }, { + "id": 2081, "properties": { + "age": "12", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7276 + } }, { + "id": 2082, "properties": { + "age": "12", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7277 + } }, { + "id": 2083, "properties": { + "age": "12", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7278 + } }, { + "id": 2084, "properties": { + "age": "12", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7279 + } }, { + "id": 2085, "properties": { + "age": "12", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7280 + } }, { + "id": 2086, "properties": { + "age": "12", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7281 + } }, { + "id": 2087, "properties": { + "age": "12", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7282 + } }, { + "id": 2088, "properties": { + "age": "12", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7283 + } }, { + "id": 2089, "properties": { + "age": "12", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7284 + } }, { + "id": 2090, "properties": { + "age": "12", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7285 + } }, { + "id": 2091, "properties": { + "age": "12", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7286 + } }, { + "id": 2092, "properties": { + "age": "12", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7287 + } }, { + "id": 2093, "properties": { + "age": "12", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7288 + } }, { + "id": 2094, "properties": { + "age": "12", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7289 + } }, { + "id": 2095, "properties": { + "age": "12", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7290 + } }, { + "id": 2096, "properties": { + "age": "12", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7291 + } }, { + "id": 2097, "properties": { + "age": "12", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7292 + } }, { + "id": 2098, "properties": { + "age": "12", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7293 + } }, { + "id": 2099, "properties": { + "age": "12", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7294 + } }, { + "id": 2100, "properties": { + "age": "12", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7295 + } }, { + "id": 2101, "properties": { + "age": "12", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7296 + } }, { + "id": 2102, "properties": { + "age": "12", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7297 + } }, { + "id": 2103, "properties": { + "age": "12", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7298 + } }, { + "id": 2104, "properties": { + "age": "12", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7299 + } }, { + "id": 2105, "properties": { + "age": "12", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7300 + } }, { + "id": 2106, "properties": { + "age": "12", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7301 + } }, { + "id": 2107, "properties": { + "age": "12", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7302 + } }, { + "id": 2108, "properties": { + "age": "12", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7303 + } }, { + "id": 2109, "properties": { + "age": "12", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7304, - "default": true - } - ] - }, - "minecraft:gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2110, "properties": { + "age": "13", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7305 + } }, { + "id": 2111, "properties": { + "age": "13", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7306 + } }, { + "id": 2112, "properties": { + "age": "13", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7307 + } }, { + "id": 2113, "properties": { + "age": "13", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7308 + } }, { + "id": 2114, "properties": { + "age": "13", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7309 + } }, { + "id": 2115, "properties": { + "age": "13", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7310 + } }, { + "id": 2116, "properties": { + "age": "13", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7311 + } }, { + "id": 2117, "properties": { + "age": "13", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7312 + } }, { + "id": 2118, "properties": { + "age": "13", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7313 + } }, { + "id": 2119, "properties": { + "age": "13", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7314 + } }, { + "id": 2120, "properties": { + "age": "13", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7315 + } }, { + "id": 2121, "properties": { + "age": "13", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7316 + } }, { + "id": 2122, "properties": { + "age": "13", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7317 + } }, { + "id": 2123, "properties": { + "age": "13", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7318 + } }, { + "id": 2124, "properties": { + "age": "13", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7319 + } }, { + "id": 2125, "properties": { + "age": "13", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7320 + } }, { + "id": 2126, "properties": { + "age": "13", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7321 + } }, { + "id": 2127, "properties": { + "age": "13", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7322 + } }, { + "id": 2128, "properties": { + "age": "13", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7323 + } }, { + "id": 2129, "properties": { + "age": "13", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7324 + } }, { + "id": 2130, "properties": { + "age": "13", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7325 + } }, { + "id": 2131, "properties": { + "age": "13", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7326 + } }, { + "id": 2132, "properties": { + "age": "13", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7327 + } }, { + "id": 2133, "properties": { + "age": "13", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7328 + } }, { + "id": 2134, "properties": { + "age": "13", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7329 + } }, { + "id": 2135, "properties": { + "age": "13", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7330 + } }, { + "id": 2136, "properties": { + "age": "13", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7331 + } }, { + "id": 2137, "properties": { + "age": "13", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7332 + } }, { + "id": 2138, "properties": { + "age": "13", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7333 + } }, { + "id": 2139, "properties": { + "age": "13", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7334 + } }, { + "id": 2140, "properties": { + "age": "13", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7335 + } }, { + "id": 2141, "properties": { + "age": "13", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7336, - "default": true - } - ] - }, - "minecraft:light_gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2142, "properties": { + "age": "14", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7337 + } }, { + "id": 2143, "properties": { + "age": "14", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7338 + } }, { + "id": 2144, "properties": { + "age": "14", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7339 + } }, { + "id": 2145, "properties": { + "age": "14", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7340 + } }, { + "id": 2146, "properties": { + "age": "14", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7341 + } }, { + "id": 2147, "properties": { + "age": "14", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7342 + } }, { + "id": 2148, "properties": { + "age": "14", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7343 + } }, { + "id": 2149, "properties": { + "age": "14", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7344 + } }, { + "id": 2150, "properties": { + "age": "14", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7345 + } }, { + "id": 2151, "properties": { + "age": "14", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7346 + } }, { + "id": 2152, "properties": { + "age": "14", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7347 + } }, { + "id": 2153, "properties": { + "age": "14", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7348 + } }, { + "id": 2154, "properties": { + "age": "14", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7349 + } }, { + "id": 2155, "properties": { + "age": "14", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7350 + } }, { + "id": 2156, "properties": { + "age": "14", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7351 + } }, { + "id": 2157, "properties": { + "age": "14", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7352 + } }, { + "id": 2158, "properties": { + "age": "14", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7353 + } }, { + "id": 2159, "properties": { + "age": "14", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7354 + } }, { + "id": 2160, "properties": { + "age": "14", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7355 + } }, { + "id": 2161, "properties": { + "age": "14", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7356 + } }, { + "id": 2162, "properties": { + "age": "14", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7357 + } }, { + "id": 2163, "properties": { + "age": "14", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7358 + } }, { + "id": 2164, "properties": { + "age": "14", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7359 + } }, { + "id": 2165, "properties": { + "age": "14", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7360 + } }, { + "id": 2166, "properties": { + "age": "14", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7361 + } }, { + "id": 2167, "properties": { + "age": "14", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7362 + } }, { + "id": 2168, "properties": { + "age": "14", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7363 + } }, { + "id": 2169, "properties": { + "age": "14", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7364 + } }, { + "id": 2170, "properties": { + "age": "14", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7365 + } }, { + "id": 2171, "properties": { + "age": "14", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7366 + } }, { + "id": 2172, "properties": { + "age": "14", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7367 + } }, { + "id": 2173, "properties": { + "age": "14", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7368, - "default": true - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 2174, "properties": { + "age": "15", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7369 + } }, { + "id": 2175, "properties": { + "age": "15", "east": "true", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7370 + } }, { + "id": 2176, "properties": { + "age": "15", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7371 + } }, { + "id": 2177, "properties": { + "age": "15", "east": "true", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7372 + } }, { + "id": 2178, "properties": { + "age": "15", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7373 + } }, { + "id": 2179, "properties": { + "age": "15", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7374 + } }, { + "id": 2180, "properties": { + "age": "15", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7375 + } }, { + "id": 2181, "properties": { + "age": "15", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7376 + } }, { + "id": 2182, "properties": { + "age": "15", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7377 + } }, { + "id": 2183, "properties": { + "age": "15", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7378 + } }, { + "id": 2184, "properties": { + "age": "15", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7379 + } }, { + "id": 2185, "properties": { + "age": "15", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7380 + } }, { + "id": 2186, "properties": { + "age": "15", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7381 + } }, { + "id": 2187, "properties": { + "age": "15", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7382 + } }, { + "id": 2188, "properties": { + "age": "15", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7383 + } }, { + "id": 2189, "properties": { + "age": "15", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7384 + } }, { + "id": 2190, "properties": { + "age": "15", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7385 + } }, { + "id": 2191, "properties": { + "age": "15", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7386 + } }, { + "id": 2192, "properties": { + "age": "15", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7387 + } }, { + "id": 2193, "properties": { + "age": "15", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7388 + } }, { + "id": 2194, "properties": { + "age": "15", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7389 + } }, { + "id": 2195, "properties": { + "age": "15", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7390 + } }, { + "id": 2196, "properties": { + "age": "15", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7391 + } }, { + "id": 2197, "properties": { + "age": "15", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7392 + } }, { + "id": 2198, "properties": { + "age": "15", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7393 + } }, { + "id": 2199, "properties": { + "age": "15", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7394 + } }, { + "id": 2200, "properties": { + "age": "15", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7395 + } }, { + "id": 2201, "properties": { + "age": "15", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7396 + } }, { + "id": 2202, "properties": { + "age": "15", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" - }, - "id": 7397 + } }, { + "id": 2203, "properties": { + "age": "15", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" - }, - "id": 7398 + } }, { + "id": 2204, "properties": { + "age": "15", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" - }, - "id": 7399 + } }, { + "id": 2205, "properties": { + "age": "15", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" - }, - "id": 7400, - "default": true + } } ] }, - "minecraft:purple_stained_glass_pane": { + "minecraft:fire_coral": { "properties": { - "east": [ + "waterlogged": [ "true", "false" - ], - "north": [ + ] + }, + "states": [ + { + "default": true, + "id": 10417, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10418, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ + { + "default": true, + "id": 10399 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ "true", "false" + ] + }, + "states": [ + { + "default": true, + "id": 10437, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 10438, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "south": [ + "waterlogged": [ "true", "false" + ] + }, + "states": [ + { + "default": true, + "id": 10505, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 10506, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 10507, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 10508, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 10509, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 10510, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 10511, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 10512, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "states": [ + { + "default": true, + "id": 16025 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "default": true, + "id": 6897 + } + ] + }, + "minecraft:flowering_azalea": { + "states": [ + { + "default": true, + "id": 19715 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" ], - "waterlogged": [ + "persistent": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 430, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7401 + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 431, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7402 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 432, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7403 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 433, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7404 + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 434, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7405 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 435, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7406 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 436, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7407 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 437, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7408 + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 438, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7409 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 439, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7410 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 440, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7411 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 441, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7412 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 442, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7413 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 443, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7414 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 444, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7415 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 445, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7416 + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 446, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7417 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 447, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7418 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 448, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7419 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 449, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7420 + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 450, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7421 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 451, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7422 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 452, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7423 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 453, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7424 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 454, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 7425 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 455, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 7426 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 456, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 7427 + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 457, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 7428 + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "states": [ + { + "default": true, + "id": 21446 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 10130, + "properties": { + "age": "0" + } }, { + "id": 10131, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 7429 + "age": "1" + } }, { + "id": 10132, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 7430 + "age": "2" + } }, { + "id": 10133, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 7431 + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3628, + "properties": { + "facing": "north", + "lit": "true" + } }, { + "default": true, + "id": 3629, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 7432, - "default": true + "facing": "north", + "lit": "false" + } + }, + { + "id": 3630, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 3631, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 3632, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 3633, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 3634, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 3635, + "properties": { + "facing": "east", + "lit": "false" + } } ] }, - "minecraft:blue_stained_glass_pane": { + "minecraft:gilded_blackstone": { + "states": [ + { + "default": true, + "id": 17873 + } + ] + }, + "minecraft:glass": { + "states": [ + { + "default": true, + "id": 460 + } + ] + }, + "minecraft:glass_pane": { "properties": { "east": [ "true", @@ -72730,330 +75456,334 @@ }, "states": [ { + "id": 5110, "properties": { "east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "true" - }, - "id": 7433 + } }, { + "id": 5111, "properties": { "east": "true", "north": "true", "south": "true", "waterlogged": "true", "west": "false" - }, - "id": 7434 + } }, { + "id": 5112, "properties": { "east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "true" - }, - "id": 7435 + } }, { + "id": 5113, "properties": { "east": "true", "north": "true", "south": "true", "waterlogged": "false", "west": "false" - }, - "id": 7436 + } }, { + "id": 5114, "properties": { "east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "true" - }, - "id": 7437 + } }, { + "id": 5115, "properties": { "east": "true", "north": "true", "south": "false", "waterlogged": "true", "west": "false" - }, - "id": 7438 + } }, { + "id": 5116, "properties": { "east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "true" - }, - "id": 7439 + } }, { + "id": 5117, "properties": { "east": "true", "north": "true", "south": "false", "waterlogged": "false", "west": "false" - }, - "id": 7440 + } }, { + "id": 5118, "properties": { "east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "true" - }, - "id": 7441 + } }, { + "id": 5119, "properties": { "east": "true", "north": "false", "south": "true", "waterlogged": "true", "west": "false" - }, - "id": 7442 + } }, { + "id": 5120, "properties": { "east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "true" - }, - "id": 7443 + } }, { + "id": 5121, "properties": { "east": "true", "north": "false", "south": "true", "waterlogged": "false", "west": "false" - }, - "id": 7444 + } }, { + "id": 5122, "properties": { "east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "true" - }, - "id": 7445 + } }, { + "id": 5123, "properties": { "east": "true", "north": "false", "south": "false", "waterlogged": "true", "west": "false" - }, - "id": 7446 + } }, { + "id": 5124, "properties": { "east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "true" - }, - "id": 7447 + } }, { + "id": 5125, "properties": { "east": "true", "north": "false", "south": "false", "waterlogged": "false", "west": "false" - }, - "id": 7448 + } }, { + "id": 5126, "properties": { "east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "true" - }, - "id": 7449 + } }, { + "id": 5127, "properties": { "east": "false", "north": "true", "south": "true", "waterlogged": "true", "west": "false" - }, - "id": 7450 + } }, { + "id": 5128, "properties": { "east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "true" - }, - "id": 7451 + } }, { + "id": 5129, "properties": { "east": "false", "north": "true", "south": "true", "waterlogged": "false", "west": "false" - }, - "id": 7452 + } }, { + "id": 5130, "properties": { "east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "true" - }, - "id": 7453 + } }, { + "id": 5131, "properties": { "east": "false", "north": "true", "south": "false", "waterlogged": "true", "west": "false" - }, - "id": 7454 + } }, { + "id": 5132, "properties": { "east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "true" - }, - "id": 7455 + } }, { + "id": 5133, "properties": { "east": "false", "north": "true", "south": "false", "waterlogged": "false", "west": "false" - }, - "id": 7456 + } }, { + "id": 5134, "properties": { "east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "true" - }, - "id": 7457 + } }, { + "id": 5135, "properties": { "east": "false", "north": "false", "south": "true", "waterlogged": "true", "west": "false" - }, - "id": 7458 + } }, { + "id": 5136, "properties": { "east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "true" - }, - "id": 7459 + } }, { + "id": 5137, "properties": { "east": "false", "north": "false", "south": "true", "waterlogged": "false", "west": "false" - }, - "id": 7460 + } }, { + "id": 5138, "properties": { "east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "true" - }, - "id": 7461 + } }, { + "id": 5139, "properties": { "east": "false", "north": "false", "south": "false", "waterlogged": "true", "west": "false" - }, - "id": 7462 + } }, { + "id": 5140, "properties": { "east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "true" - }, - "id": 7463 + } }, { + "default": true, + "id": 5141, "properties": { "east": "false", "north": "false", "south": "false", "waterlogged": "false", "west": "false" - }, - "id": 7464, - "default": true + } } ] }, - "minecraft:brown_stained_glass_pane": { + "minecraft:glow_lichen": { "properties": { + "down": [ + "true", + "false" + ], "east": [ "true", "false" @@ -73066,6 +75796,10 @@ "true", "false" ], + "up": [ + "true", + "false" + ], "waterlogged": [ "true", "false" @@ -73077,1370 +75811,1635 @@ }, "states": [ { + "id": 5199, "properties": { + "down": "true", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7465 + } }, { + "id": 5200, "properties": { + "down": "true", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7466 + } }, { + "id": 5201, "properties": { + "down": "true", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7467 + } }, { + "id": 5202, "properties": { + "down": "true", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7468 + } }, { + "id": 5203, "properties": { + "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7469 + } }, { + "id": 5204, "properties": { + "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7470 + } }, { + "id": 5205, "properties": { + "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7471 + } }, { + "id": 5206, "properties": { + "down": "true", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7472 + } }, { + "id": 5207, "properties": { + "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7473 + } }, { + "id": 5208, "properties": { + "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7474 + } }, { + "id": 5209, "properties": { + "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7475 + } }, { + "id": 5210, "properties": { + "down": "true", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7476 + } }, { + "id": 5211, "properties": { + "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7477 + } }, { + "id": 5212, "properties": { + "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7478 + } }, { + "id": 5213, "properties": { + "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7479 + } }, { + "id": 5214, "properties": { + "down": "true", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7480 + } }, { + "id": 5215, "properties": { - "east": "false", - "north": "true", + "down": "true", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7481 + } }, { + "id": 5216, "properties": { - "east": "false", - "north": "true", + "down": "true", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7482 + } }, { + "id": 5217, "properties": { - "east": "false", - "north": "true", + "down": "true", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7483 + } }, { + "id": 5218, "properties": { - "east": "false", - "north": "true", + "down": "true", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7484 + } }, { + "id": 5219, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7485 + } }, { + "id": 5220, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7486 + } }, { + "id": 5221, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7487 + } }, { + "id": 5222, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7488 + } }, { + "id": 5223, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7489 + } }, { + "id": 5224, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7490 + } }, { + "id": 5225, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7491 + } }, { + "id": 5226, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7492 + } }, { + "id": 5227, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7493 + } }, { + "id": 5228, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7494 + } }, { + "id": 5229, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7495 + } }, { + "id": 5230, "properties": { - "east": "false", + "down": "true", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7496, - "default": true - } - ] - }, - "minecraft:green_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 5231, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7497 + } }, { + "id": 5232, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7498 + } }, { + "id": 5233, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7499 + } }, { + "id": 5234, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7500 + } }, { + "id": 5235, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7501 + } }, { + "id": 5236, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7502 + } }, { + "id": 5237, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7503 + } }, { + "id": 5238, "properties": { - "east": "true", + "down": "true", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7504 + } }, { + "id": 5239, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7505 + } }, { + "id": 5240, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7506 + } }, { + "id": 5241, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7507 + } }, { + "id": 5242, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7508 + } }, { + "id": 5243, "properties": { - "east": "true", - "north": "false", + "down": "true", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7509 + } }, { + "id": 5244, "properties": { - "east": "true", - "north": "false", + "down": "true", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7510 + } }, { + "id": 5245, "properties": { - "east": "true", - "north": "false", + "down": "true", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7511 + } }, { + "id": 5246, "properties": { - "east": "true", - "north": "false", + "down": "true", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7512 + } }, { + "id": 5247, "properties": { + "down": "true", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7513 + } }, { + "id": 5248, "properties": { + "down": "true", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7514 + } }, { + "id": 5249, "properties": { + "down": "true", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7515 + } }, { + "id": 5250, "properties": { + "down": "true", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7516 + } }, { + "id": 5251, "properties": { + "down": "true", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7517 + } }, { + "id": 5252, "properties": { + "down": "true", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7518 + } }, { + "id": 5253, "properties": { + "down": "true", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7519 + } }, { + "id": 5254, "properties": { + "down": "true", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7520 + } }, { + "id": 5255, "properties": { + "down": "true", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7521 + } }, { + "id": 5256, "properties": { + "down": "true", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7522 + } }, { + "id": 5257, "properties": { + "down": "true", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7523 + } }, { + "id": 5258, "properties": { + "down": "true", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7524 + } }, { + "id": 5259, "properties": { + "down": "true", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7525 + } }, { + "id": 5260, "properties": { + "down": "true", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7526 + } }, { + "id": 5261, "properties": { + "down": "true", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7527 + } }, { + "id": 5262, "properties": { + "down": "true", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7528, - "default": true - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 5263, "properties": { + "down": "false", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7529 + } }, { + "id": 5264, "properties": { + "down": "false", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7530 + } }, { + "id": 5265, "properties": { + "down": "false", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7531 + } }, { + "id": 5266, "properties": { + "down": "false", "east": "true", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7532 + } }, { + "id": 5267, "properties": { + "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7533 + } }, { + "id": 5268, "properties": { + "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7534 + } }, { + "id": 5269, "properties": { + "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7535 + } }, { + "id": 5270, "properties": { + "down": "false", "east": "true", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7536 + } }, { + "id": 5271, "properties": { + "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7537 + } }, { + "id": 5272, "properties": { + "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7538 + } }, { + "id": 5273, "properties": { + "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7539 + } }, { + "id": 5274, "properties": { + "down": "false", "east": "true", - "north": "false", - "south": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7540 + } }, { + "id": 5275, "properties": { + "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7541 + } }, { + "id": 5276, "properties": { + "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7542 + } }, { + "id": 5277, "properties": { + "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7543 + } }, { + "id": 5278, "properties": { + "down": "false", "east": "true", - "north": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7544 + } }, { + "id": 5279, "properties": { - "east": "false", - "north": "true", + "down": "false", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7545 + } }, { + "id": 5280, "properties": { - "east": "false", - "north": "true", + "down": "false", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7546 + } }, { + "id": 5281, "properties": { - "east": "false", - "north": "true", + "down": "false", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7547 + } }, { + "id": 5282, "properties": { - "east": "false", - "north": "true", + "down": "false", + "east": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7548 + } }, { + "id": 5283, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7549 + } }, { + "id": 5284, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7550 + } }, { + "id": 5285, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7551 + } }, { + "id": 5286, "properties": { - "east": "false", - "north": "true", - "south": "false", + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7552 + } }, { + "id": 5287, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7553 + } }, { + "id": 5288, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7554 + } }, { + "id": 5289, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7555 + } }, { + "id": 5290, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7556 + } }, { + "id": 5291, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7557 + } }, { + "id": 5292, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7558 + } }, { + "id": 5293, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7559 + } }, { + "id": 5294, "properties": { - "east": "false", + "down": "false", + "east": "true", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7560, - "default": true - } - ] - }, - "minecraft:black_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 5295, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7561 + } }, { + "id": 5296, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7562 + } }, { + "id": 5297, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7563 + } }, { + "id": 5298, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7564 + } }, { + "id": 5299, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7565 + } }, { + "id": 5300, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7566 + } }, { + "id": 5301, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7567 + } }, { + "id": 5302, "properties": { - "east": "true", + "down": "false", + "east": "false", "north": "true", - "south": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7568 + } }, { + "id": 5303, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7569 + } }, { + "id": 5304, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7570 + } }, { + "id": 5305, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7571 + } }, { + "id": 5306, "properties": { - "east": "true", - "north": "false", - "south": "true", + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7572 + } }, { + "id": 5307, "properties": { - "east": "true", - "north": "false", + "down": "false", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7573 + } }, { + "id": 5308, "properties": { - "east": "true", - "north": "false", + "down": "false", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7574 + } }, { + "id": 5309, "properties": { - "east": "true", - "north": "false", + "down": "false", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7575 + } }, { + "id": 5310, "properties": { - "east": "true", - "north": "false", + "down": "false", + "east": "false", + "north": "true", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7576 + } }, { + "id": 5311, "properties": { + "down": "false", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7577 + } }, { + "id": 5312, "properties": { + "down": "false", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7578 + } }, { + "id": 5313, "properties": { + "down": "false", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7579 + } }, { + "id": 5314, "properties": { + "down": "false", "east": "false", - "north": "true", + "north": "false", "south": "true", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7580 + } }, { + "id": 5315, "properties": { + "down": "false", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7581 + } }, { + "id": 5316, "properties": { + "down": "false", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7582 + } }, { + "id": 5317, "properties": { + "down": "false", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7583 + } }, { + "id": 5318, "properties": { + "down": "false", "east": "false", - "north": "true", - "south": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7584 + } }, { + "id": 5319, "properties": { + "down": "false", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "true" - }, - "id": 7585 + } }, { + "id": 5320, "properties": { + "down": "false", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "true", "west": "false" - }, - "id": 7586 + } }, { + "id": 5321, "properties": { + "down": "false", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "true" - }, - "id": 7587 + } }, { + "id": 5322, "properties": { + "down": "false", "east": "false", "north": "false", - "south": "true", + "south": "false", + "up": "true", "waterlogged": "false", "west": "false" - }, - "id": 7588 + } }, { + "id": 5323, "properties": { + "down": "false", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "true" - }, - "id": 7589 + } }, { + "id": 5324, "properties": { + "down": "false", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "true", "west": "false" - }, - "id": 7590 + } }, { + "id": 5325, "properties": { + "down": "false", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "true" - }, - "id": 7591 + } }, { + "default": true, + "id": 5326, "properties": { + "down": "false", "east": "false", "north": "false", "south": "false", + "up": "false", "waterlogged": "false", "west": "false" - }, - "id": 7592, - "default": true + } } ] }, - "minecraft:acacia_stairs": { + "minecraft:glowstone": { + "states": [ + { + "default": true, + "id": 4322 + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "default": true, + "id": 1681 + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "default": true, + "id": 110 + } + ] + }, + "minecraft:granite": { + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11718, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11719, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11720, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11721, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11722, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11723, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { "properties": { "facing": [ "north", @@ -74466,5185 +77465,5329 @@ }, "states": [ { + "id": 11270, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 7593 + } }, { + "id": 11271, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 7594 + } }, { + "id": 11272, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7595 + } }, { + "id": 11273, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7596 + } }, { + "id": 11274, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7597 + } }, { + "id": 11275, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7598 + } }, { + "id": 11276, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7599 + } }, { + "id": 11277, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7600 + } }, { + "id": 11278, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7601 + } }, { + "id": 11279, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7602 + } }, { + "id": 11280, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 7603 + } }, { + "default": true, + "id": 11281, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 7604, - "default": true + } }, { + "id": 11282, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7605 + } }, { + "id": 11283, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7606 + } }, { + "id": 11284, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7607 + } }, { + "id": 11285, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7608 + } }, { + "id": 11286, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7609 + } }, { + "id": 11287, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7610 + } }, { + "id": 11288, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7611 + } }, { + "id": 11289, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7612 + } }, { + "id": 11290, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 7613 + } }, { + "id": 11291, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 7614 + } }, { + "id": 11292, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7615 + } }, { + "id": 11293, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7616 + } }, { + "id": 11294, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7617 + } }, { + "id": 11295, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7618 + } }, { + "id": 11296, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7619 + } }, { + "id": 11297, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7620 + } }, { + "id": 11298, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7621 + } }, { + "id": 11299, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7622 + } }, { + "id": 11300, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 7623 + } }, { + "id": 11301, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 7624 + } }, { + "id": 11302, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7625 + } }, { + "id": 11303, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7626 + } }, { + "id": 11304, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7627 + } }, { + "id": 11305, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7628 + } }, { + "id": 11306, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7629 + } }, { + "id": 11307, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7630 + } }, { + "id": 11308, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7631 + } }, { + "id": 11309, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7632 + } }, { + "id": 11310, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 7633 + } }, { + "id": 11311, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 7634 + } }, { + "id": 11312, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7635 + } }, { + "id": 11313, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7636 + } }, { + "id": 11314, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7637 + } }, { + "id": 11315, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7638 + } }, { + "id": 11316, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7639 + } }, { + "id": 11317, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7640 + } }, { + "id": 11318, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7641 + } }, { + "id": 11319, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7642 + } }, { + "id": 11320, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 7643 + } }, { + "id": 11321, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 7644 + } }, { + "id": 11322, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7645 + } }, { + "id": 11323, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7646 + } }, { + "id": 11324, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7647 + } }, { + "id": 11325, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7648 + } }, { + "id": 11326, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7649 + } }, { + "id": 11327, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7650 + } }, { + "id": 11328, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7651 + } }, { + "id": 11329, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7652 + } }, { + "id": 11330, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 7653 + } }, { + "id": 11331, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 7654 + } }, { + "id": 11332, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7655 + } }, { + "id": 11333, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7656 + } }, { + "id": 11334, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7657 + } }, { + "id": 11335, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7658 + } }, { + "id": 11336, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7659 + } }, { + "id": 11337, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7660 + } }, { + "id": 11338, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7661 + } }, { + "id": 11339, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7662 + } }, { + "id": 11340, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 7663 + } }, { + "id": 11341, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 7664 + } }, { + "id": 11342, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 7665 + } }, { + "id": 11343, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 7666 + } }, { + "id": 11344, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 7667 + } }, { + "id": 11345, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 7668 + } }, { + "id": 11346, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 7669 + } }, { + "id": 11347, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 7670 + } }, { + "id": 11348, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 7671 + } }, { + "id": 11349, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 7672 + } } ] }, - "minecraft:dark_oak_stairs": { + "minecraft:granite_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 13044, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7673 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13045, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7674 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13046, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7675 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 13047, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7676 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13048, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7677 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13049, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7678 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13050, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7679 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13051, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7680 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13052, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7681 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13053, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7682 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13054, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7683 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13055, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7684, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13056, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7685 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13057, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7686 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13058, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7687 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13059, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7688 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13060, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7689 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13061, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7690 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13062, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7691 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13063, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7692 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13064, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7693 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13065, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7694 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13066, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7695 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13067, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7696 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13068, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7697 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13069, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7698 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13070, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7699 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13071, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7700 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13072, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7701 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13073, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7702 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13074, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7703 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13075, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7704 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13076, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7705 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13077, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7706 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13078, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7707 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13079, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7708 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13080, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7709 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13081, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7710 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13082, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7711 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13083, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7712 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13084, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7713 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13085, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7714 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13086, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7715 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13087, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7716 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13088, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7717 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13089, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7718 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13090, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7719 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13091, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7720 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13092, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7721 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13093, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7722 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13094, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7723 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13095, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7724 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13096, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7725 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13097, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7726 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13098, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7727 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13099, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7728 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13100, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7729 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13101, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7730 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13102, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7731 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13103, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7732 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13104, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7733 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13105, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7734 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13106, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7735 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13107, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7736 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13108, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7737 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13109, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7738 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13110, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7739 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13111, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7740 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13112, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7741 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13113, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7742 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13114, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7743 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13115, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7744 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13116, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7745 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13117, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7746 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13118, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7747 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13119, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7748 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13120, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7749 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13121, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7750 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13122, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7751 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13123, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7752 - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "id": 7753, - "default": true - } - ] - }, - "minecraft:barrier": { - "states": [ - { - "id": 7754, - "default": true - } - ] - }, - "minecraft:light": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "level": "0", - "waterlogged": "true" - }, - "id": 7755 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13124, "properties": { - "level": "0", - "waterlogged": "false" - }, - "id": 7756 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13125, "properties": { - "level": "1", - "waterlogged": "true" - }, - "id": 7757 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13126, "properties": { - "level": "1", - "waterlogged": "false" - }, - "id": 7758 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13127, "properties": { - "level": "2", - "waterlogged": "true" - }, - "id": 7759 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13128, "properties": { - "level": "2", - "waterlogged": "false" - }, - "id": 7760 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13129, "properties": { - "level": "3", - "waterlogged": "true" - }, - "id": 7761 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13130, "properties": { - "level": "3", - "waterlogged": "false" - }, - "id": 7762 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13131, "properties": { - "level": "4", - "waterlogged": "true" - }, - "id": 7763 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13132, "properties": { - "level": "4", - "waterlogged": "false" - }, - "id": 7764 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13133, "properties": { - "level": "5", - "waterlogged": "true" - }, - "id": 7765 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13134, "properties": { - "level": "5", - "waterlogged": "false" - }, - "id": 7766 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13135, "properties": { - "level": "6", - "waterlogged": "true" - }, - "id": 7767 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13136, "properties": { - "level": "6", - "waterlogged": "false" - }, - "id": 7768 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13137, "properties": { - "level": "7", - "waterlogged": "true" - }, - "id": 7769 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13138, "properties": { - "level": "7", - "waterlogged": "false" - }, - "id": 7770 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13139, "properties": { - "level": "8", - "waterlogged": "true" - }, - "id": 7771 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13140, "properties": { - "level": "8", - "waterlogged": "false" - }, - "id": 7772 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13141, "properties": { - "level": "9", - "waterlogged": "true" - }, - "id": 7773 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13142, "properties": { - "level": "9", - "waterlogged": "false" - }, - "id": 7774 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13143, "properties": { - "level": "10", - "waterlogged": "true" - }, - "id": 7775 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13144, "properties": { - "level": "10", - "waterlogged": "false" - }, - "id": 7776 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13145, "properties": { - "level": "11", - "waterlogged": "true" - }, - "id": 7777 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13146, "properties": { - "level": "11", - "waterlogged": "false" - }, - "id": 7778 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13147, "properties": { - "level": "12", - "waterlogged": "true" - }, - "id": 7779 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13148, "properties": { - "level": "12", - "waterlogged": "false" - }, - "id": 7780 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13149, "properties": { - "level": "13", - "waterlogged": "true" - }, - "id": 7781 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13150, "properties": { - "level": "13", - "waterlogged": "false" - }, - "id": 7782 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13151, "properties": { - "level": "14", - "waterlogged": "true" - }, - "id": 7783 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13152, "properties": { - "level": "14", - "waterlogged": "false" - }, - "id": 7784 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13153, "properties": { - "level": "15", - "waterlogged": "true" - }, - "id": 7785 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13154, "properties": { - "level": "15", - "waterlogged": "false" - }, - "id": 7786, - "default": true - } - ] - }, - "minecraft:iron_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7787 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13155, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7788 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13156, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7789 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13157, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7790 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13158, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7791 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13159, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7792 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13160, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7793 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13161, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7794 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13162, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7795 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13163, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7796 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13164, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7797 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13165, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7798 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13166, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7799 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13167, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7800 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13168, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7801 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13169, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7802, - "default": true + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13170, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7803 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13171, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7804 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13172, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7805 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13173, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7806 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13174, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7807 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13175, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7808 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13176, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7809 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13177, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7810 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13178, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7811 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13179, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7812 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13180, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7813 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13181, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7814 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13182, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7815 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13183, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7816 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13184, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7817 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13185, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7818 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13186, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7819 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13187, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7820 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13188, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7821 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13189, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7822 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13190, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7823 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13191, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7824 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13192, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7825 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13193, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7826 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13194, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7827 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13195, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7828 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13196, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7829 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13197, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7830 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13198, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7831 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13199, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7832 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13200, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7833 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13201, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7834 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13202, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7835 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13203, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7836 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13204, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7837 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13205, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7838 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13206, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7839 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13207, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7840 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13208, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7841 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13209, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7842 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13210, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 7843 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13211, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 7844 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13212, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 7845 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13213, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 7846 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13214, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 7847 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13215, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 7848 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13216, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 7849 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13217, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 7850 - } - ] - }, - "minecraft:prismarine": { - "states": [ - { - "id": 7851, - "default": true - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "id": 7852, - "default": true - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ - { - "id": 7853, - "default": true - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 13218, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7854 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13219, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7855 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13220, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7856 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13221, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7857 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13222, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7858 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13223, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7859 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13224, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7860 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13225, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7861 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13226, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7862 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13227, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7863 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13228, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7864 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13229, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7865, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13230, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7866 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13231, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7867 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13232, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7868 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13233, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7869 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13234, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7870 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13235, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7871 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13236, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7872 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13237, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7873 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13238, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7874 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13239, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7875 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13240, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7876 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13241, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7877 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13242, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7878 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13243, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7879 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13244, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7880 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13245, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7881 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13246, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7882 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13247, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7883 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13248, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7884 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13249, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7885 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13250, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7886 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13251, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7887 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13252, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7888 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13253, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7889 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13254, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7890 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13255, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7891 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13256, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7892 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13257, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7893 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13258, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7894 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13259, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7895 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13260, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7896 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13261, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7897 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13262, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7898 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13263, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7899 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13264, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7900 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13265, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7901 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13266, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7902 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13267, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7903 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13268, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7904 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13269, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7905 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13270, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7906 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13271, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7907 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13272, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7908 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13273, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7909 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13274, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7910 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13275, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7911 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13276, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7912 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13277, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7913 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13278, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7914 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13279, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7915 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13280, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7916 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13281, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7917 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13282, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7918 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13283, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7919 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13284, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7920 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13285, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7921 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13286, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7922 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13287, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7923 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13288, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7924 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13289, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7925 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13290, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7926 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13291, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7927 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13292, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7928 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13293, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7929 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13294, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7930 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13295, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7931 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13296, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7932 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13297, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7933 - } - ] - }, - "minecraft:prismarine_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7934 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13298, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7935 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13299, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7936 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13300, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7937 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13301, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7938 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13302, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7939 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13303, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7940 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13304, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7941 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13305, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7942 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13306, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7943 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13307, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7944 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13308, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7945, - "default": true + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13309, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7946 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13310, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7947 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13311, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7948 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13312, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7949 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13313, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7950 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13314, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7951 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13315, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7952 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13316, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7953 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13317, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7954 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13318, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7955 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13319, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7956 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13320, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7957 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13321, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7958 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13322, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7959 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13323, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7960 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13324, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7961 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13325, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7962 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13326, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7963 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13327, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7964 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13328, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7965 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13329, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7966 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13330, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7967 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7968 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7969 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7970 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7971 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7972 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13331, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7973 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13332, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7974 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13333, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7975 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13334, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7976 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13335, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7977 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13336, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7978 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13337, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7979 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13338, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7980 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13339, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7981 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13340, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7982 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13341, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7983 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13342, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7984 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13343, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7985 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13344, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7986 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13345, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7987 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13346, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7988 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13347, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7989 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13348, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 7990 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13349, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 7991 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13350, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 7992 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13351, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 7993 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13352, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 7994 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13353, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 7995 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13354, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 7996 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13355, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 7997 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13356, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 7998 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13357, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 7999 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13358, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8000 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13359, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8001 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13360, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8002 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13361, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8003 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13362, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8004 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13363, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8005 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13364, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8006 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13365, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8007 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13366, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8008 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13367, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8009 - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass": { + "states": [ { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8010 - }, + "default": true, + "id": 1596 + } + ] + }, + "minecraft:grass_block": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8011 + "snowy": "true" + } }, { + "default": true, + "id": 9, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8012 - }, + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "states": [ { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8013 + "default": true, + "id": 109 } ] }, - "minecraft:dark_prismarine_stairs": { + "minecraft:gray_banner": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 8750, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8014 + "rotation": "0" + } }, { + "id": 8751, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8015 + "rotation": "1" + } }, { + "id": 8752, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8016 + "rotation": "2" + } }, { + "id": 8753, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8017 + "rotation": "3" + } }, { + "id": 8754, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8018 + "rotation": "4" + } }, { + "id": 8755, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8019 + "rotation": "5" + } }, { + "id": 8756, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8020 + "rotation": "6" + } }, { + "id": 8757, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8021 + "rotation": "7" + } }, { + "id": 8758, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8022 + "rotation": "8" + } }, { + "id": 8759, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8023 + "rotation": "9" + } }, { + "id": 8760, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8024 + "rotation": "10" + } }, { + "id": 8761, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8025, - "default": true + "rotation": "11" + } }, { + "id": 8762, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8026 + "rotation": "12" + } }, { + "id": 8763, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8027 + "rotation": "13" + } }, { + "id": 8764, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8028 + "rotation": "14" + } }, { + "id": 8765, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8029 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1391, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8030 + "occupied": "true", + "part": "head" + } }, { + "id": 1392, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8031 + "occupied": "true", + "part": "foot" + } }, { + "id": 1393, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8032 + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1394, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8033 + "occupied": "false", + "part": "foot" + } }, { + "id": 1395, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8034 + "occupied": "true", + "part": "head" + } }, { + "id": 1396, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8035 + "occupied": "true", + "part": "foot" + } }, { + "id": 1397, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8036 + "occupied": "false", + "part": "head" + } }, { + "id": 1398, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8037 + "occupied": "false", + "part": "foot" + } }, { + "id": 1399, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8038 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1400, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8039 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1401, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8040 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1402, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8041 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1403, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8042 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1404, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8043 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1405, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8044 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1406, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8045 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18441, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "candles": "1", + "lit": "true", "waterlogged": "true" - }, - "id": 8046 + } }, { + "id": 18442, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "candles": "1", + "lit": "true", "waterlogged": "false" - }, - "id": 8047 + } }, { + "id": 18443, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "candles": "1", + "lit": "false", "waterlogged": "true" - }, - "id": 8048 + } }, { + "default": true, + "id": 18444, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "candles": "1", + "lit": "false", "waterlogged": "false" - }, - "id": 8049 + } }, { + "id": 18445, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "candles": "2", + "lit": "true", "waterlogged": "true" - }, - "id": 8050 + } }, { + "id": 18446, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "candles": "2", + "lit": "true", "waterlogged": "false" - }, - "id": 8051 + } }, { + "id": 18447, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "candles": "2", + "lit": "false", "waterlogged": "true" - }, - "id": 8052 + } }, { + "id": 18448, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "candles": "2", + "lit": "false", "waterlogged": "false" - }, - "id": 8053 + } }, { + "id": 18449, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "candles": "3", + "lit": "true", "waterlogged": "true" - }, - "id": 8054 + } }, { + "id": 18450, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "candles": "3", + "lit": "true", "waterlogged": "false" - }, - "id": 8055 + } }, { + "id": 18451, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "candles": "3", + "lit": "false", "waterlogged": "true" - }, - "id": 8056 + } }, { + "id": 18452, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "candles": "3", + "lit": "false", "waterlogged": "false" - }, - "id": 8057 + } }, { + "id": 18453, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "candles": "4", + "lit": "true", "waterlogged": "true" - }, - "id": 8058 + } }, { + "id": 18454, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "candles": "4", + "lit": "true", "waterlogged": "false" - }, - "id": 8059 + } }, { + "id": 18455, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "candles": "4", + "lit": "false", "waterlogged": "true" - }, - "id": 8060 + } }, { + "id": 18456, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "candles": "4", + "lit": "false", "waterlogged": "false" - }, - "id": 8061 - }, + } + } + ] + }, + "minecraft:gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18601, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8062 + "lit": "true" + } }, { + "default": true, + "id": 18602, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8063 - }, + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "states": [ + { + "default": true, + "id": 8614 + } + ] + }, + "minecraft:gray_concrete": { + "states": [ + { + "default": true, + "id": 10326 + } + ] + }, + "minecraft:gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 10342 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10283, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8064 + "facing": "north" + } }, { + "id": 10284, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8065 + "facing": "south" + } }, { + "id": 10285, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8066 + "facing": "west" + } }, { + "id": 10286, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8067 - }, + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10201, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8068 + "facing": "north" + } }, { + "id": 10202, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8069 + "facing": "east" + } }, { + "id": 10203, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8070 + "facing": "south" + } }, { + "id": 10204, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8071 + "facing": "west" + } }, { + "default": true, + "id": 10205, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8072 + "facing": "up" + } }, { + "id": 10206, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8073 - }, + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "states": [ + { + "default": true, + "id": 4411 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7716, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8074 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7717, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8075 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7718, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8076 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7719, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8077 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7720, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8078 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7721, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8079 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7722, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8080 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8081 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8082 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8083 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8084 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8085 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 8086 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7723, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8087 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7724, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8088 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7725, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8089 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7726, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8090 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7727, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 8091 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7728, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 8092 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7729, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8093 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8094 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7730, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8095 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7731, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8096 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7732, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8097, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7733, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8098 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7734, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8099 - } - ] - }, - "minecraft:prismarine_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8100 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7735, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8101 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7736, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8102 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7737, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8103, - "default": true + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7738, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8104 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7739, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8105 - } - ] - }, - "minecraft:dark_prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8106 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7740, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8107 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7741, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8108 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7742, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8109, - "default": true + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7743, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8110 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7744, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8111 - } - ] - }, - "minecraft:sea_lantern": { - "states": [ - { - "id": 8112, - "default": true - } - ] - }, - "minecraft:hay_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "properties": { - "axis": "x" - }, - "id": 8113 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7745, "properties": { - "axis": "y" - }, - "id": 8114, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7746, "properties": { - "axis": "z" - }, - "id": 8115 - } - ] - }, - "minecraft:white_carpet": { - "states": [ - { - "id": 8116, - "default": true - } - ] - }, - "minecraft:orange_carpet": { - "states": [ - { - "id": 8117, - "default": true - } - ] - }, - "minecraft:magenta_carpet": { - "states": [ - { - "id": 8118, - "default": true - } - ] - }, - "minecraft:light_blue_carpet": { - "states": [ - { - "id": 8119, - "default": true - } - ] - }, - "minecraft:yellow_carpet": { - "states": [ - { - "id": 8120, - "default": true - } - ] - }, - "minecraft:lime_carpet": { - "states": [ - { - "id": 8121, - "default": true - } - ] - }, - "minecraft:pink_carpet": { - "states": [ - { - "id": 8122, - "default": true - } - ] - }, - "minecraft:gray_carpet": { - "states": [ - { - "id": 8123, - "default": true - } - ] - }, - "minecraft:light_gray_carpet": { - "states": [ - { - "id": 8124, - "default": true - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "id": 8125, - "default": true - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "id": 8126, - "default": true - } - ] - }, - "minecraft:blue_carpet": { - "states": [ - { - "id": 8127, - "default": true - } - ] - }, - "minecraft:brown_carpet": { - "states": [ - { - "id": 8128, - "default": true - } - ] - }, - "minecraft:green_carpet": { - "states": [ - { - "id": 8129, - "default": true - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "id": 8130, - "default": true - } - ] - }, - "minecraft:black_carpet": { - "states": [ - { - "id": 8131, - "default": true - } - ] - }, - "minecraft:terracotta": { - "states": [ - { - "id": 8132, - "default": true - } - ] - }, - "minecraft:coal_block": { - "states": [ - { - "id": 8133, - "default": true - } - ] - }, - "minecraft:packed_ice": { - "states": [ - { - "id": 8134, - "default": true - } - ] - }, - "minecraft:sunflower": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8135 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7747, "properties": { - "half": "lower" - }, - "id": 8136, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:lilac": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, + "minecraft:gray_terracotta": { "states": [ { - "properties": { - "half": "upper" - }, - "id": 8137 - }, - { - "properties": { - "half": "lower" - }, - "id": 8138, - "default": true + "default": true, + "id": 7483 } ] }, - "minecraft:rose_bush": { + "minecraft:gray_wall_banner": { "properties": { - "half": [ - "upper", - "lower" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 8922, "properties": { - "half": "upper" - }, - "id": 8139 + "facing": "north" + } }, { + "id": 8923, "properties": { - "half": "lower" - }, - "id": 8140, - "default": true - } - ] - }, - "minecraft:peony": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8141 + "facing": "south" + } }, { + "id": 8924, "properties": { - "half": "lower" - }, - "id": 8142, - "default": true - } - ] - }, - "minecraft:tall_grass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ - { - "properties": { - "half": "upper" - }, - "id": 8143 + "facing": "west" + } }, { + "id": 8925, "properties": { - "half": "lower" - }, - "id": 8144, - "default": true + "facing": "east" + } } ] }, - "minecraft:large_fern": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, + "minecraft:gray_wool": { "states": [ { - "properties": { - "half": "upper" - }, - "id": 8145 - }, - { - "properties": { - "half": "lower" - }, - "id": 8146, - "default": true + "default": true, + "id": 1645 } ] }, - "minecraft:white_banner": { + "minecraft:green_banner": { "properties": { "rotation": [ "0", @@ -79667,833 +82810,1103 @@ }, "states": [ { + "default": true, + "id": 8846, "properties": { "rotation": "0" - }, - "id": 8147, - "default": true + } }, { + "id": 8847, "properties": { "rotation": "1" - }, - "id": 8148 + } }, { + "id": 8848, "properties": { "rotation": "2" - }, - "id": 8149 + } }, { + "id": 8849, "properties": { "rotation": "3" - }, - "id": 8150 + } }, { + "id": 8850, "properties": { "rotation": "4" - }, - "id": 8151 + } }, { + "id": 8851, "properties": { "rotation": "5" - }, - "id": 8152 + } }, { + "id": 8852, "properties": { "rotation": "6" - }, - "id": 8153 + } }, { + "id": 8853, "properties": { "rotation": "7" - }, - "id": 8154 + } }, { + "id": 8854, "properties": { "rotation": "8" - }, - "id": 8155 + } }, { + "id": 8855, "properties": { "rotation": "9" - }, - "id": 8156 + } }, { + "id": 8856, "properties": { "rotation": "10" - }, - "id": 8157 + } }, { + "id": 8857, "properties": { "rotation": "11" - }, - "id": 8158 + } }, { + "id": 8858, "properties": { "rotation": "12" - }, - "id": 8159 + } }, { + "id": 8859, "properties": { "rotation": "13" - }, - "id": 8160 + } }, { + "id": 8860, "properties": { "rotation": "14" - }, - "id": 8161 + } }, { + "id": 8861, "properties": { "rotation": "15" - }, - "id": 8162 + } } ] }, - "minecraft:orange_banner": { + "minecraft:green_bed": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1487, "properties": { - "rotation": "0" - }, - "id": 8163, - "default": true + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1488, "properties": { - "rotation": "1" - }, - "id": 8164 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1489, "properties": { - "rotation": "2" - }, - "id": 8165 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1490, "properties": { - "rotation": "3" - }, - "id": 8166 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1491, "properties": { - "rotation": "4" - }, - "id": 8167 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1492, "properties": { - "rotation": "5" - }, - "id": 8168 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1493, "properties": { - "rotation": "6" - }, - "id": 8169 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1494, "properties": { - "rotation": "7" - }, - "id": 8170 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1495, "properties": { - "rotation": "8" - }, - "id": 8171 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1496, "properties": { - "rotation": "9" - }, - "id": 8172 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1497, "properties": { - "rotation": "10" - }, - "id": 8173 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1498, "properties": { - "rotation": "11" - }, - "id": 8174 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1499, "properties": { - "rotation": "12" - }, - "id": 8175 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1500, "properties": { - "rotation": "13" - }, - "id": 8176 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1501, "properties": { - "rotation": "14" - }, - "id": 8177 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1502, "properties": { - "rotation": "15" - }, - "id": 8178 + "facing": "east", + "occupied": "false", + "part": "foot" + } } ] }, - "minecraft:magenta_banner": { + "minecraft:green_candle": { "properties": { - "rotation": [ - "0", + "candles": [ "1", "2", "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 18537, "properties": { - "rotation": "0" - }, - "id": 8179, - "default": true + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18538, "properties": { - "rotation": "1" - }, - "id": 8180 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18539, "properties": { - "rotation": "2" - }, - "id": 8181 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18540, "properties": { - "rotation": "3" - }, - "id": 8182 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18541, "properties": { - "rotation": "4" - }, - "id": 8183 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18542, "properties": { - "rotation": "5" - }, - "id": 8184 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18543, "properties": { - "rotation": "6" - }, - "id": 8185 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18544, "properties": { - "rotation": "7" - }, - "id": 8186 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18545, "properties": { - "rotation": "8" - }, - "id": 8187 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18546, "properties": { - "rotation": "9" - }, - "id": 8188 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18547, "properties": { - "rotation": "10" - }, - "id": 8189 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18548, "properties": { - "rotation": "11" - }, - "id": 8190 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18549, "properties": { - "rotation": "12" - }, - "id": 8191 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18550, "properties": { - "rotation": "13" - }, - "id": 8192 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18551, "properties": { - "rotation": "14" - }, - "id": 8193 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18552, "properties": { - "rotation": "15" - }, - "id": 8194 + "candles": "4", + "lit": "false", + "waterlogged": "false" + } } ] }, - "minecraft:light_blue_banner": { + "minecraft:green_candle_cake": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "lit": [ + "true", + "false" ] }, "states": [ { + "id": 18613, "properties": { - "rotation": "0" - }, - "id": 8195, - "default": true + "lit": "true" + } }, { + "default": true, + "id": 18614, "properties": { - "rotation": "1" - }, - "id": 8196 - }, + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "states": [ { - "properties": { - "rotation": "2" - }, - "id": 8197 - }, + "default": true, + "id": 8620 + } + ] + }, + "minecraft:green_concrete": { + "states": [ { - "properties": { - "rotation": "3" - }, - "id": 8198 - }, + "default": true, + "id": 10332 + } + ] + }, + "minecraft:green_concrete_powder": { + "states": [ { - "properties": { - "rotation": "4" - }, - "id": 8199 - }, + "default": true, + "id": 10348 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10307, "properties": { - "rotation": "5" - }, - "id": 8200 + "facing": "north" + } }, { + "id": 10308, "properties": { - "rotation": "6" - }, - "id": 8201 + "facing": "south" + } }, { + "id": 10309, "properties": { - "rotation": "7" - }, - "id": 8202 + "facing": "west" + } }, { + "id": 10310, "properties": { - "rotation": "8" - }, - "id": 8203 - }, + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10237, "properties": { - "rotation": "9" - }, - "id": 8204 + "facing": "north" + } }, { + "id": 10238, "properties": { - "rotation": "10" - }, - "id": 8205 + "facing": "east" + } }, { + "id": 10239, "properties": { - "rotation": "11" - }, - "id": 8206 + "facing": "south" + } }, { + "id": 10240, "properties": { - "rotation": "12" - }, - "id": 8207 + "facing": "west" + } }, { + "default": true, + "id": 10241, "properties": { - "rotation": "13" - }, - "id": 8208 + "facing": "up" + } }, { + "id": 10242, "properties": { - "rotation": "14" - }, - "id": 8209 - }, + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "states": [ { - "properties": { - "rotation": "15" - }, - "id": 8210 + "default": true, + "id": 4417 } ] }, - "minecraft:yellow_banner": { + "minecraft:green_stained_glass_pane": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 7908, "properties": { - "rotation": "0" - }, - "id": 8211, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7909, "properties": { - "rotation": "1" - }, - "id": 8212 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7910, "properties": { - "rotation": "2" - }, - "id": 8213 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7911, "properties": { - "rotation": "3" - }, - "id": 8214 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7912, "properties": { - "rotation": "4" - }, - "id": 8215 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7913, "properties": { - "rotation": "5" - }, - "id": 8216 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7914, "properties": { - "rotation": "6" - }, - "id": 8217 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7915, "properties": { - "rotation": "7" - }, - "id": 8218 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7916, "properties": { - "rotation": "8" - }, - "id": 8219 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7917, "properties": { - "rotation": "9" - }, - "id": 8220 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7918, "properties": { - "rotation": "10" - }, - "id": 8221 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7919, "properties": { - "rotation": "11" - }, - "id": 8222 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7920, "properties": { - "rotation": "12" - }, - "id": 8223 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7921, "properties": { - "rotation": "13" - }, - "id": 8224 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7922, "properties": { - "rotation": "14" - }, - "id": 8225 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7923, "properties": { - "rotation": "15" - }, - "id": 8226 - } - ] - }, - "minecraft:lime_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 7924, "properties": { - "rotation": "0" - }, - "id": 8227, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7925, "properties": { - "rotation": "1" - }, - "id": 8228 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7926, "properties": { - "rotation": "2" - }, - "id": 8229 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7927, "properties": { - "rotation": "3" - }, - "id": 8230 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7928, "properties": { - "rotation": "4" - }, - "id": 8231 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7929, "properties": { - "rotation": "5" - }, - "id": 8232 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7930, "properties": { - "rotation": "6" - }, - "id": 8233 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7931, "properties": { - "rotation": "7" - }, - "id": 8234 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7932, "properties": { - "rotation": "8" - }, - "id": 8235 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7933, "properties": { - "rotation": "9" - }, - "id": 8236 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7934, "properties": { - "rotation": "10" - }, - "id": 8237 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7935, "properties": { - "rotation": "11" - }, - "id": 8238 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7936, "properties": { - "rotation": "12" - }, - "id": 8239 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7937, "properties": { - "rotation": "13" - }, - "id": 8240 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7938, "properties": { - "rotation": "14" - }, - "id": 8241 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7939, "properties": { - "rotation": "15" - }, - "id": 8242 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:pink_banner": { + "minecraft:green_terracotta": { + "states": [ + { + "default": true, + "id": 7489 + } + ] + }, + "minecraft:green_wall_banner": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 8946, "properties": { - "rotation": "0" - }, - "id": 8243, - "default": true + "facing": "north" + } }, { + "id": 8947, "properties": { - "rotation": "1" - }, - "id": 8244 + "facing": "south" + } }, { + "id": 8948, "properties": { - "rotation": "2" - }, - "id": 8245 + "facing": "west" + } }, { + "id": 8949, "properties": { - "rotation": "3" - }, - "id": 8246 + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "states": [ + { + "default": true, + "id": 1651 + } + ] + }, + "minecraft:grindstone": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 16026, + "properties": { + "face": "floor", + "facing": "north" + } }, { + "id": 16027, "properties": { - "rotation": "4" - }, - "id": 8247 + "face": "floor", + "facing": "south" + } }, { + "id": 16028, "properties": { - "rotation": "5" - }, - "id": 8248 + "face": "floor", + "facing": "west" + } }, { + "id": 16029, "properties": { - "rotation": "6" - }, - "id": 8249 + "face": "floor", + "facing": "east" + } }, { + "default": true, + "id": 16030, "properties": { - "rotation": "7" - }, - "id": 8250 + "face": "wall", + "facing": "north" + } }, { + "id": 16031, "properties": { - "rotation": "8" - }, - "id": 8251 + "face": "wall", + "facing": "south" + } }, { + "id": 16032, "properties": { - "rotation": "9" - }, - "id": 8252 + "face": "wall", + "facing": "west" + } }, { + "id": 16033, "properties": { - "rotation": "10" - }, - "id": 8253 + "face": "wall", + "facing": "east" + } }, { + "id": 16034, "properties": { - "rotation": "11" - }, - "id": 8254 + "face": "ceiling", + "facing": "north" + } }, { + "id": 16035, "properties": { - "rotation": "12" - }, - "id": 8255 + "face": "ceiling", + "facing": "south" + } }, { + "id": 16036, "properties": { - "rotation": "13" - }, - "id": 8256 + "face": "ceiling", + "facing": "west" + } }, { + "id": 16037, "properties": { - "rotation": "14" - }, - "id": 8257 + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19774, + "properties": { + "waterlogged": "true" + } }, { + "default": true, + "id": 19775, "properties": { - "rotation": "15" - }, - "id": 8258 + "waterlogged": "false" + } } ] }, - "minecraft:gray_banner": { + "minecraft:hay_block": { "properties": { - "rotation": [ + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 8604, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 8605, + "properties": { + "axis": "y" + } + }, + { + "id": 8606, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "properties": { + "power": [ "0", "1", "2", @@ -80514,1689 +83927,1454 @@ }, "states": [ { + "default": true, + "id": 7279, "properties": { - "rotation": "0" - }, - "id": 8259, - "default": true + "power": "0" + } }, { + "id": 7280, "properties": { - "rotation": "1" - }, - "id": 8260 + "power": "1" + } }, { + "id": 7281, "properties": { - "rotation": "2" - }, - "id": 8261 + "power": "2" + } }, { + "id": 7282, "properties": { - "rotation": "3" - }, - "id": 8262 + "power": "3" + } }, { + "id": 7283, "properties": { - "rotation": "4" - }, - "id": 8263 + "power": "4" + } }, { + "id": 7284, "properties": { - "rotation": "5" - }, - "id": 8264 + "power": "5" + } }, { + "id": 7285, "properties": { - "rotation": "6" - }, - "id": 8265 + "power": "6" + } }, { + "id": 7286, "properties": { - "rotation": "7" - }, - "id": 8266 + "power": "7" + } }, { + "id": 7287, "properties": { - "rotation": "8" - }, - "id": 8267 + "power": "8" + } }, { + "id": 7288, "properties": { - "rotation": "9" - }, - "id": 8268 + "power": "9" + } }, { + "id": 7289, "properties": { - "rotation": "10" - }, - "id": 8269 + "power": "10" + } }, { + "id": 7290, "properties": { - "rotation": "11" - }, - "id": 8270 + "power": "11" + } }, { + "id": 7291, "properties": { - "rotation": "12" - }, - "id": 8271 + "power": "12" + } }, { + "id": 7292, "properties": { - "rotation": "13" - }, - "id": 8272 + "power": "13" + } }, { + "id": 7293, "properties": { - "rotation": "14" - }, - "id": 8273 + "power": "14" + } }, { + "id": 7294, "properties": { - "rotation": "15" - }, - "id": 8274 + "power": "15" + } } ] }, - "minecraft:light_gray_banner": { + "minecraft:honey_block": { + "states": [ + { + "default": true, + "id": 17033 + } + ] + }, + "minecraft:honeycomb_block": { + "states": [ + { + "default": true, + "id": 17034 + } + ] + }, + "minecraft:hopper": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 7345, "properties": { - "rotation": "0" - }, - "id": 8275, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8276 + "enabled": "true", + "facing": "down" + } }, { + "id": 7346, "properties": { - "rotation": "2" - }, - "id": 8277 + "enabled": "true", + "facing": "north" + } }, { + "id": 7347, "properties": { - "rotation": "3" - }, - "id": 8278 + "enabled": "true", + "facing": "south" + } }, { + "id": 7348, "properties": { - "rotation": "4" - }, - "id": 8279 + "enabled": "true", + "facing": "west" + } }, { + "id": 7349, "properties": { - "rotation": "5" - }, - "id": 8280 + "enabled": "true", + "facing": "east" + } }, { + "id": 7350, "properties": { - "rotation": "6" - }, - "id": 8281 + "enabled": "false", + "facing": "down" + } }, { + "id": 7351, "properties": { - "rotation": "7" - }, - "id": 8282 + "enabled": "false", + "facing": "north" + } }, { + "id": 7352, "properties": { - "rotation": "8" - }, - "id": 8283 + "enabled": "false", + "facing": "south" + } }, { + "id": 7353, "properties": { - "rotation": "9" - }, - "id": 8284 + "enabled": "false", + "facing": "west" + } }, { + "id": 7354, "properties": { - "rotation": "10" - }, - "id": 8285 - }, + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10419, "properties": { - "rotation": "11" - }, - "id": 8286 + "waterlogged": "true" + } }, { + "id": 10420, "properties": { - "rotation": "12" - }, - "id": 8287 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "states": [ { - "properties": { - "rotation": "13" - }, - "id": 8288 - }, + "default": true, + "id": 10400 + } + ] + }, + "minecraft:horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10439, "properties": { - "rotation": "14" - }, - "id": 8289 + "waterlogged": "true" + } }, { + "id": 10440, "properties": { - "rotation": "15" - }, - "id": 8290 + "waterlogged": "false" + } } ] }, - "minecraft:cyan_banner": { + "minecraft:horn_coral_wall_fan": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "default": true, + "id": 10513, "properties": { - "rotation": "0" - }, - "id": 8291, - "default": true + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10514, "properties": { - "rotation": "1" - }, - "id": 8292 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10515, "properties": { - "rotation": "2" - }, - "id": 8293 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10516, "properties": { - "rotation": "3" - }, - "id": 8294 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10517, "properties": { - "rotation": "4" - }, - "id": 8295 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10518, "properties": { - "rotation": "5" - }, - "id": 8296 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10519, "properties": { - "rotation": "6" - }, - "id": 8297 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10520, "properties": { - "rotation": "7" - }, - "id": 8298 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "states": [ { - "properties": { - "rotation": "8" - }, - "id": 8299 - }, + "default": true, + "id": 4238 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "states": [ { - "properties": { - "rotation": "9" - }, - "id": 8300 - }, + "default": true, + "id": 4879 + } + ] + }, + "minecraft:infested_cobblestone": { + "states": [ { - "properties": { - "rotation": "10" - }, - "id": 8301 - }, + "default": true, + "id": 4875 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "states": [ { - "properties": { - "rotation": "11" - }, - "id": 8302 - }, + "default": true, + "id": 4878 + } + ] + }, + "minecraft:infested_deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 21428, "properties": { - "rotation": "12" - }, - "id": 8303 + "axis": "x" + } }, { + "default": true, + "id": 21429, "properties": { - "rotation": "13" - }, - "id": 8304 + "axis": "y" + } }, { + "id": 21430, "properties": { - "rotation": "14" - }, - "id": 8305 - }, + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "states": [ { - "properties": { - "rotation": "15" - }, - "id": 8306 + "default": true, + "id": 4877 } ] }, - "minecraft:purple_banner": { + "minecraft:infested_stone": { + "states": [ + { + "default": true, + "id": 4874 + } + ] + }, + "minecraft:infested_stone_bricks": { + "states": [ + { + "default": true, + "id": 4876 + } + ] + }, + "minecraft:iron_bars": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 5072, "properties": { - "rotation": "0" - }, - "id": 8307, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5073, "properties": { - "rotation": "1" - }, - "id": 8308 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5074, "properties": { - "rotation": "2" - }, - "id": 8309 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5075, "properties": { - "rotation": "3" - }, - "id": 8310 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5076, "properties": { - "rotation": "4" - }, - "id": 8311 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5077, "properties": { - "rotation": "5" - }, - "id": 8312 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5078, "properties": { - "rotation": "6" - }, - "id": 8313 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5079, "properties": { - "rotation": "7" - }, - "id": 8314 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5080, "properties": { - "rotation": "8" - }, - "id": 8315 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5081, "properties": { - "rotation": "9" - }, - "id": 8316 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5082, "properties": { - "rotation": "10" - }, - "id": 8317 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5083, "properties": { - "rotation": "11" - }, - "id": 8318 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5084, "properties": { - "rotation": "12" - }, - "id": 8319 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5085, "properties": { - "rotation": "13" - }, - "id": 8320 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5086, "properties": { - "rotation": "14" - }, - "id": 8321 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5087, "properties": { - "rotation": "15" - }, - "id": 8322 - } - ] - }, - "minecraft:blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 5088, "properties": { - "rotation": "0" - }, - "id": 8323, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5089, "properties": { - "rotation": "1" - }, - "id": 8324 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5090, "properties": { - "rotation": "2" - }, - "id": 8325 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5091, "properties": { - "rotation": "3" - }, - "id": 8326 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5092, "properties": { - "rotation": "4" - }, - "id": 8327 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5093, "properties": { - "rotation": "5" - }, - "id": 8328 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5094, "properties": { - "rotation": "6" - }, - "id": 8329 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5095, "properties": { - "rotation": "7" - }, - "id": 8330 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5096, "properties": { - "rotation": "8" - }, - "id": 8331 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5097, "properties": { - "rotation": "9" - }, - "id": 8332 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5098, "properties": { - "rotation": "10" - }, - "id": 8333 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5099, "properties": { - "rotation": "11" - }, - "id": 8334 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5100, "properties": { - "rotation": "12" - }, - "id": 8335 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5101, "properties": { - "rotation": "13" - }, - "id": 8336 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5102, "properties": { - "rotation": "14" - }, - "id": 8337 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 5103, "properties": { - "rotation": "15" - }, - "id": 8338 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:brown_banner": { + "minecraft:iron_block": { + "states": [ + { + "default": true, + "id": 1682 + } + ] + }, + "minecraft:iron_door": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 4114, "properties": { - "rotation": "0" - }, - "id": 8339, - "default": true + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4115, "properties": { - "rotation": "1" - }, - "id": 8340 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4116, "properties": { - "rotation": "2" - }, - "id": 8341 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4117, "properties": { - "rotation": "3" - }, - "id": 8342 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4118, "properties": { - "rotation": "4" - }, - "id": 8343 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4119, "properties": { - "rotation": "5" - }, - "id": 8344 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4120, "properties": { - "rotation": "6" - }, - "id": 8345 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4121, "properties": { - "rotation": "7" - }, - "id": 8346 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4122, "properties": { - "rotation": "8" - }, - "id": 8347 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4123, "properties": { - "rotation": "9" - }, - "id": 8348 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4124, "properties": { - "rotation": "10" - }, - "id": 8349 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 4125, "properties": { - "rotation": "11" - }, - "id": 8350 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4126, "properties": { - "rotation": "12" - }, - "id": 8351 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4127, "properties": { - "rotation": "13" - }, - "id": 8352 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4128, "properties": { - "rotation": "14" - }, - "id": 8353 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4129, "properties": { - "rotation": "15" - }, - "id": 8354 - } - ] - }, - "minecraft:green_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 4130, "properties": { - "rotation": "0" - }, - "id": 8355, - "default": true + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4131, "properties": { - "rotation": "1" - }, - "id": 8356 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4132, "properties": { - "rotation": "2" - }, - "id": 8357 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4133, "properties": { - "rotation": "3" - }, - "id": 8358 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4134, "properties": { - "rotation": "4" - }, - "id": 8359 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4135, "properties": { - "rotation": "5" - }, - "id": 8360 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4136, "properties": { - "rotation": "6" - }, - "id": 8361 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4137, "properties": { - "rotation": "7" - }, - "id": 8362 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4138, "properties": { - "rotation": "8" - }, - "id": 8363 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4139, "properties": { - "rotation": "9" - }, - "id": 8364 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4140, "properties": { - "rotation": "10" - }, - "id": 8365 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4141, "properties": { - "rotation": "11" - }, - "id": 8366 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8367 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8368 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8369 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8370 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8371, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8372 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8373 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8374 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8375 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8376 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8377 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8378 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8379 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8380 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8381 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8382 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8383 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8384 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8385 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8386 - } - ] - }, - "minecraft:black_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "properties": { - "rotation": "0" - }, - "id": 8387, - "default": true - }, - { - "properties": { - "rotation": "1" - }, - "id": 8388 - }, - { - "properties": { - "rotation": "2" - }, - "id": 8389 - }, - { - "properties": { - "rotation": "3" - }, - "id": 8390 - }, - { - "properties": { - "rotation": "4" - }, - "id": 8391 - }, - { - "properties": { - "rotation": "5" - }, - "id": 8392 - }, - { - "properties": { - "rotation": "6" - }, - "id": 8393 - }, - { - "properties": { - "rotation": "7" - }, - "id": 8394 - }, - { - "properties": { - "rotation": "8" - }, - "id": 8395 - }, - { - "properties": { - "rotation": "9" - }, - "id": 8396 - }, - { - "properties": { - "rotation": "10" - }, - "id": 8397 - }, - { - "properties": { - "rotation": "11" - }, - "id": 8398 - }, - { - "properties": { - "rotation": "12" - }, - "id": 8399 - }, - { - "properties": { - "rotation": "13" - }, - "id": 8400 - }, - { - "properties": { - "rotation": "14" - }, - "id": 8401 - }, - { - "properties": { - "rotation": "15" - }, - "id": 8402 - } - ] - }, - "minecraft:white_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8403, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8404 - }, - { - "properties": { - "facing": "west" - }, - "id": 8405 - }, - { - "properties": { - "facing": "east" - }, - "id": 8406 - } - ] - }, - "minecraft:orange_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8407, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8408 - }, - { - "properties": { - "facing": "west" - }, - "id": 8409 - }, - { - "properties": { - "facing": "east" - }, - "id": 8410 - } - ] - }, - "minecraft:magenta_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8411, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8412 - }, - { - "properties": { - "facing": "west" - }, - "id": 8413 - }, - { - "properties": { - "facing": "east" - }, - "id": 8414 - } - ] - }, - "minecraft:light_blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8415, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 8416 - }, - { - "properties": { - "facing": "west" - }, - "id": 8417 - }, - { - "properties": { - "facing": "east" - }, - "id": 8418 - } - ] - }, - "minecraft:yellow_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8419, - "default": true + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4142, "properties": { - "facing": "south" - }, - "id": 8420 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4143, "properties": { - "facing": "west" - }, - "id": 8421 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4144, "properties": { - "facing": "east" - }, - "id": 8422 - } - ] - }, - "minecraft:lime_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8423, - "default": true + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4145, "properties": { - "facing": "south" - }, - "id": 8424 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4146, "properties": { - "facing": "west" - }, - "id": 8425 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4147, "properties": { - "facing": "east" - }, - "id": 8426 - } - ] - }, - "minecraft:pink_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8427, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4148, "properties": { - "facing": "south" - }, - "id": 8428 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4149, "properties": { - "facing": "west" - }, - "id": 8429 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4150, "properties": { - "facing": "east" - }, - "id": 8430 - } - ] - }, - "minecraft:gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8431, - "default": true + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4151, "properties": { - "facing": "south" - }, - "id": 8432 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4152, "properties": { - "facing": "west" - }, - "id": 8433 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4153, "properties": { - "facing": "east" - }, - "id": 8434 - } - ] - }, - "minecraft:light_gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8435, - "default": true + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4154, "properties": { - "facing": "south" - }, - "id": 8436 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4155, "properties": { - "facing": "west" - }, - "id": 8437 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4156, "properties": { - "facing": "east" - }, - "id": 8438 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8439, - "default": true + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4157, "properties": { - "facing": "south" - }, - "id": 8440 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4158, "properties": { - "facing": "west" - }, - "id": 8441 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4159, "properties": { - "facing": "east" - }, - "id": 8442 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8443, - "default": true + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4160, "properties": { - "facing": "south" - }, - "id": 8444 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4161, "properties": { - "facing": "west" - }, - "id": 8445 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4162, "properties": { - "facing": "east" - }, - "id": 8446 - } - ] - }, - "minecraft:blue_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8447, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4163, "properties": { - "facing": "south" - }, - "id": 8448 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4164, "properties": { - "facing": "west" - }, - "id": 8449 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4165, "properties": { - "facing": "east" - }, - "id": 8450 - } - ] - }, - "minecraft:brown_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8451, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4166, "properties": { - "facing": "south" - }, - "id": 8452 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4167, "properties": { - "facing": "west" - }, - "id": 8453 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4168, "properties": { - "facing": "east" - }, - "id": 8454 - } - ] - }, - "minecraft:green_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8455, - "default": true + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4169, "properties": { - "facing": "south" - }, - "id": 8456 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 4170, "properties": { - "facing": "west" - }, - "id": 8457 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 4171, "properties": { - "facing": "east" - }, - "id": 8458 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8459, - "default": true + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 4172, "properties": { - "facing": "south" - }, - "id": 8460 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 4173, "properties": { - "facing": "west" - }, - "id": 8461 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 4174, "properties": { - "facing": "east" - }, - "id": 8462 - } - ] - }, - "minecraft:black_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 8463, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 4175, "properties": { - "facing": "south" - }, - "id": 8464 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 4176, "properties": { - "facing": "west" - }, - "id": 8465 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 4177, "properties": { - "facing": "east" - }, - "id": 8466 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "id": 8467, - "default": true - } - ] - }, - "minecraft:chiseled_red_sandstone": { - "states": [ - { - "id": 8468, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:cut_red_sandstone": { + "minecraft:iron_ore": { "states": [ { - "id": 8469, - "default": true + "default": true, + "id": 112 } ] }, - "minecraft:red_sandstone_stairs": { + "minecraft:iron_trapdoor": { "properties": { "facing": [ "north", @@ -82208,12 +85386,13 @@ "top", "bottom" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -82222,2176 +85401,2032 @@ }, "states": [ { + "id": 8278, "properties": { "facing": "north", "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8470 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 8471 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8472 + } }, { + "id": 8279, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8473 + } }, { + "id": 8280, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8474 + } }, { + "id": 8281, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8475 + } }, { + "id": 8282, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8476 + } }, { + "id": 8283, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8477 + } }, { + "id": 8284, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8478 + } }, { + "id": 8285, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8479 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8480 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8481, - "default": true + } }, { + "id": 8286, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8482 + } }, { + "id": 8287, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8483 + } }, { + "id": 8288, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8484 + } }, { + "id": 8289, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8485 + } }, { + "id": 8290, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8486 + } }, { + "id": 8291, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8487 + } }, { + "id": 8292, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8488 + } }, { + "default": true, + "id": 8293, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8489 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8490 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8491 + } }, { + "id": 8294, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8492 + } }, { + "id": 8295, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8493 + } }, { + "id": 8296, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8494 + } }, { + "id": 8297, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8495 + } }, { + "id": 8298, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8496 + } }, { + "id": 8299, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8497 + } }, { + "id": 8300, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8498 + } }, { + "id": 8301, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8499 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8500 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8501 + } }, { + "id": 8302, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8502 + } }, { + "id": 8303, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8503 + } }, { + "id": 8304, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8504 + } }, { + "id": 8305, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8505 + } }, { + "id": 8306, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8506 + } }, { + "id": 8307, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8507 + } }, { + "id": 8308, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8508 + } }, { + "id": 8309, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8509 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8510 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8511 + } }, { + "id": 8310, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8512 + } }, { + "id": 8311, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8513 + } }, { + "id": 8312, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8514 + } }, { + "id": 8313, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8515 + } }, { + "id": 8314, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8516 + } }, { + "id": 8315, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8517 + } }, { + "id": 8316, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8518 + } }, { + "id": 8317, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8519 + } }, { + "id": 8318, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8520 + } }, { + "id": 8319, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8521 + } }, { + "id": 8320, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8522 + } }, { + "id": 8321, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8523 + } }, { + "id": 8322, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8524 + } }, { + "id": 8323, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8525 + } }, { + "id": 8324, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8526 + } }, { + "id": 8325, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8527 + } }, { + "id": 8326, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8528 + } }, { + "id": 8327, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8529 + } }, { + "id": 8328, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8530 + } }, { + "id": 8329, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8531 + } }, { + "id": 8330, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8532 + } }, { + "id": 8331, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 8533 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 8534 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 8535 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 8536 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8537 + } }, { + "id": 8332, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8538 + } }, { + "id": 8333, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 8539 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 8540 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8541 + } }, { + "id": 8334, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 8542 + } }, { + "id": 8335, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 8543 + } }, { + "id": 8336, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 8544 + } }, { + "id": 8337, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 8545 + } }, { + "id": 8338, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 8546 + } }, { + "id": 8339, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 8547 + } }, { + "id": 8340, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 8548 + } }, { + "id": 8341, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 8549 + } } ] }, - "minecraft:oak_slab": { + "minecraft:jack_o_lantern": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 4329, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8550 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8551 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8552 + "facing": "north" + } }, { + "id": 4330, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8553, - "default": true + "facing": "south" + } }, { + "id": 4331, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8554 + "facing": "west" + } }, { + "id": 4332, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8555 + "facing": "east" + } } ] }, - "minecraft:spruce_slab": { + "minecraft:jigsaw": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" ] }, "states": [ { + "id": 16948, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8556 + "orientation": "down_east" + } }, { + "id": 16949, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8557 + "orientation": "down_north" + } }, { + "id": 16950, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8558 + "orientation": "down_south" + } }, { + "id": 16951, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8559, - "default": true + "orientation": "down_west" + } }, { + "id": 16952, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8560 + "orientation": "up_east" + } }, { + "id": 16953, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8561 - } - ] - }, - "minecraft:birch_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "orientation": "up_north" + } + }, { + "id": 16954, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8562 + "orientation": "up_south" + } }, { + "id": 16955, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8563 + "orientation": "up_west" + } }, { + "id": 16956, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8564 + "orientation": "west_up" + } }, { + "id": 16957, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8565, - "default": true + "orientation": "east_up" + } }, { + "default": true, + "id": 16958, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8566 + "orientation": "north_up" + } }, { + "id": 16959, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8567 + "orientation": "south_up" + } } ] }, - "minecraft:jungle_slab": { + "minecraft:jukebox": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ + "has_record": [ "true", "false" ] }, "states": [ { + "id": 4273, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8568 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8569 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8570 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8571, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8572 + "has_record": "true" + } }, { + "default": true, + "id": 4274, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8573 + "has_record": "false" + } } ] }, - "minecraft:acacia_slab": { + "minecraft:jungle_button": { "properties": { - "type": [ - "top", - "bottom", - "double" + "face": [ + "floor", + "wall", + "ceiling" ], - "waterlogged": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 7011, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8574 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 7012, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8575 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 7013, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8576 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 7014, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8577, - "default": true + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 7015, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8578 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 7016, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8579 - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "face": "floor", + "facing": "west", + "powered": "false" + } + }, { + "id": 7017, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8580 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 7018, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8581 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 7019, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8582 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 7020, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8583, - "default": true + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 7021, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8584 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 7022, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8585 - } - ] - }, - "minecraft:stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "face": "wall", + "facing": "south", + "powered": "false" + } + }, { + "id": 7023, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8586 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 7024, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8587 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 7025, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8588 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 7026, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8589, - "default": true + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 7027, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8590 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 7028, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8591 - } - ] - }, - "minecraft:smooth_stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, { + "id": 7029, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8592 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 7030, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8593 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 7031, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8594 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 7032, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8595, - "default": true + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 7033, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8596 + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 7034, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8597 + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:sandstone_slab": { + "minecraft:jungle_door": { "properties": { - "type": [ - "top", - "bottom", - "double" + "facing": [ + "north", + "south", + "west", + "east" ], - "waterlogged": [ + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 9683, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8598 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9684, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8599 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9685, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8600 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9686, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8601, - "default": true + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9687, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8602 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9688, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8603 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, { + "id": 9689, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8604 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9690, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8605 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9691, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8606 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9692, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8607, - "default": true + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9693, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8608 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9694, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8609 - } - ] - }, - "minecraft:petrified_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { + "id": 9695, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8610 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9696, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8611 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9697, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8612 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9698, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8613, - "default": true + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9699, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8614 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9700, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8615 - } - ] - }, - "minecraft:cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9701, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8616 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9702, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8617 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9703, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8618 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9704, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8619, - "default": true + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9705, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8620 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9706, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8621 - } - ] - }, - "minecraft:brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9707, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8622 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9708, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8623 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9709, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8624 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9710, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8625, - "default": true + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9711, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8626 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9712, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8627 - } - ] - }, - "minecraft:stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, { + "id": 9713, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8628 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9714, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8629 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9715, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8630 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9716, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8631, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9717, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8632 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9718, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8633 - } - ] - }, - "minecraft:nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { + "id": 9719, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8634 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9720, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8635 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9721, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8636 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9722, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8637, - "default": true + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9723, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8638 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9724, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8639 - } - ] - }, - "minecraft:quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9725, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8640 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9726, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8641 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9727, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8642 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9728, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8643, - "default": true + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9729, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8644 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9730, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8645 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9731, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8646 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9732, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8647 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9733, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8648 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9734, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8649, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9735, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8650 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9736, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8651 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8652 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9737, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8653 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9738, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8654 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9739, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8655, - "default": true + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9740, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8656 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9741, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8657 - } - ] - }, - "minecraft:purpur_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 8658 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9742, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 8659 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9743, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 8660 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9744, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 8661, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9745, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 8662 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9746, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 8663 - } - ] - }, - "minecraft:smooth_stone": { - "states": [ - { - "id": 8664, - "default": true - } - ] - }, - "minecraft:smooth_sandstone": { - "states": [ - { - "id": 8665, - "default": true - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "id": 8666, - "default": true - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ - { - "id": 8667, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:spruce_fence_gate": { + "minecraft:jungle_fence": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "true", + "false" ], - "in_wall": [ + "north": [ "true", "false" ], - "open": [ + "south": [ "true", "false" ], - "powered": [ + "waterlogged": [ + "true", + "false" + ], + "west": [ "true", "false" ] }, "states": [ { + "id": 9427, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8668 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9428, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8669 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9429, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8670 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9430, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8671 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9431, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8672 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9432, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8673 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9433, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8674 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9434, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8675, - "default": true + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9435, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8676 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9436, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8677 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9437, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8678 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9438, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8679 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9439, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8680 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9440, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8681 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9441, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8682 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9442, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8683 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9443, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8684 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9444, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8685 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9445, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8686 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9446, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8687 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9447, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8688 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9448, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8689 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9449, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8690 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9450, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8691 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9451, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8692 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9452, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8693 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9453, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8694 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9454, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8695 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9455, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8696 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9456, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8697 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9457, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8698 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 9458, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8699 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:birch_fence_gate": { + "minecraft:jungle_fence_gate": { "properties": { "facing": [ "north", @@ -84414,923 +87449,940 @@ }, "states": [ { + "id": 9235, "properties": { "facing": "north", "in_wall": "true", "open": "true", "powered": "true" - }, - "id": 8700 + } }, { + "id": 9236, "properties": { "facing": "north", "in_wall": "true", "open": "true", "powered": "false" - }, - "id": 8701 + } }, { + "id": 9237, "properties": { "facing": "north", "in_wall": "true", "open": "false", "powered": "true" - }, - "id": 8702 + } }, { + "id": 9238, "properties": { "facing": "north", "in_wall": "true", "open": "false", "powered": "false" - }, - "id": 8703 + } }, { + "id": 9239, "properties": { "facing": "north", "in_wall": "false", "open": "true", "powered": "true" - }, - "id": 8704 + } }, { + "id": 9240, "properties": { "facing": "north", "in_wall": "false", "open": "true", "powered": "false" - }, - "id": 8705 + } }, { + "id": 9241, "properties": { "facing": "north", "in_wall": "false", "open": "false", "powered": "true" - }, - "id": 8706 + } }, { + "default": true, + "id": 9242, "properties": { "facing": "north", "in_wall": "false", "open": "false", "powered": "false" - }, - "id": 8707, - "default": true + } }, { + "id": 9243, "properties": { "facing": "south", "in_wall": "true", "open": "true", "powered": "true" - }, - "id": 8708 + } }, { + "id": 9244, "properties": { "facing": "south", "in_wall": "true", "open": "true", "powered": "false" - }, - "id": 8709 + } }, { + "id": 9245, "properties": { "facing": "south", "in_wall": "true", "open": "false", "powered": "true" - }, - "id": 8710 + } }, { + "id": 9246, "properties": { "facing": "south", "in_wall": "true", "open": "false", "powered": "false" - }, - "id": 8711 + } }, { + "id": 9247, "properties": { "facing": "south", "in_wall": "false", "open": "true", "powered": "true" - }, - "id": 8712 + } }, { + "id": 9248, "properties": { "facing": "south", "in_wall": "false", "open": "true", "powered": "false" - }, - "id": 8713 + } }, { + "id": 9249, "properties": { "facing": "south", "in_wall": "false", "open": "false", "powered": "true" - }, - "id": 8714 + } }, { + "id": 9250, "properties": { "facing": "south", "in_wall": "false", "open": "false", "powered": "false" - }, - "id": 8715 + } }, { + "id": 9251, "properties": { "facing": "west", "in_wall": "true", "open": "true", "powered": "true" - }, - "id": 8716 + } }, { + "id": 9252, "properties": { "facing": "west", "in_wall": "true", "open": "true", "powered": "false" - }, - "id": 8717 + } }, { + "id": 9253, "properties": { "facing": "west", "in_wall": "true", "open": "false", "powered": "true" - }, - "id": 8718 + } }, { + "id": 9254, "properties": { "facing": "west", "in_wall": "true", "open": "false", "powered": "false" - }, - "id": 8719 + } }, { + "id": 9255, "properties": { "facing": "west", "in_wall": "false", "open": "true", "powered": "true" - }, - "id": 8720 + } }, { + "id": 9256, "properties": { "facing": "west", "in_wall": "false", "open": "true", "powered": "false" - }, - "id": 8721 + } }, { + "id": 9257, "properties": { "facing": "west", "in_wall": "false", "open": "false", "powered": "true" - }, - "id": 8722 + } }, { + "id": 9258, "properties": { "facing": "west", "in_wall": "false", "open": "false", "powered": "false" - }, - "id": 8723 + } }, { + "id": 9259, "properties": { "facing": "east", "in_wall": "true", "open": "true", "powered": "true" - }, - "id": 8724 + } }, { + "id": 9260, "properties": { "facing": "east", "in_wall": "true", "open": "true", "powered": "false" - }, - "id": 8725 + } }, { + "id": 9261, "properties": { "facing": "east", "in_wall": "true", "open": "false", "powered": "true" - }, - "id": 8726 + } }, { + "id": 9262, "properties": { "facing": "east", "in_wall": "true", "open": "false", "powered": "false" - }, - "id": 8727 + } }, { + "id": 9263, "properties": { "facing": "east", "in_wall": "false", "open": "true", "powered": "true" - }, - "id": 8728 + } }, { + "id": 9264, "properties": { "facing": "east", "in_wall": "false", "open": "true", "powered": "false" - }, - "id": 8729 + } }, { + "id": 9265, "properties": { "facing": "east", "in_wall": "false", "open": "false", "powered": "true" - }, - "id": 8730 + } }, { + "id": 9266, "properties": { "facing": "east", "in_wall": "false", "open": "false", "powered": "false" - }, - "id": 8731 + } } ] }, - "minecraft:jungle_fence_gate": { + "minecraft:jungle_leaves": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" ], - "open": [ + "persistent": [ "true", "false" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 290, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8732 + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 291, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8733 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 292, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8734 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 293, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8735 + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 294, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8736 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 295, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8737 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 296, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8738 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 297, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8739, - "default": true + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 298, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8740 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 299, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8741 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 300, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8742 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 301, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8743 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 302, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8744 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 303, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8745 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 304, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8746 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 305, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8747 + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 306, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8748 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 307, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8749 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 308, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8750 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 309, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8751 + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 310, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8752 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 311, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8753 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 312, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8754 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 313, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8755 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 314, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8756 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 315, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8757 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 316, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8758 + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 317, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8759 - }, + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 126, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8760 + "axis": "x" + } }, { + "default": true, + "id": 127, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8761 + "axis": "y" + } }, { + "id": 128, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4184, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", "powered": "true" - }, - "id": 8762 + } }, { + "default": true, + "id": 4185, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", "powered": "false" - }, - "id": 8763 + } } ] }, - "minecraft:acacia_fence_gate": { + "minecraft:jungle_sapling": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 28, + "properties": { + "stage": "0" + } + }, + { + "id": 29, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 3764, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8764 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3765, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8765 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3766, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8766 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3767, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8767 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3768, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8768 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3769, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8769 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3770, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8770 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3771, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8771, - "default": true + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3772, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8772 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3773, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8773 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3774, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8774 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3775, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8775 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3776, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8776 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3777, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8777 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3778, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8778 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3779, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8779 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 3780, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8780 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3781, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8781 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3782, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8782 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3783, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8783 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3784, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8784 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3785, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8785 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3786, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8786 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3787, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8787 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3788, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8788 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3789, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8789 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3790, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8790 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3791, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8791 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3792, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8792 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3793, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8793 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3794, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8794 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3795, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8795 + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:dark_oak_fence_gate": { + "minecraft:jungle_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9059, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9060, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9061, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9062, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9063, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9064, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { "properties": { "facing": [ "north", @@ -85338,2047 +88390,2105 @@ "west", "east" ], - "in_wall": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "open": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 6156, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8796 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6157, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8797 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6158, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8798 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6159, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8799 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6160, "properties": { "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8800 + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6161, "properties": { "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8801 + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6162, "properties": { "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8802 + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6163, "properties": { "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8803, - "default": true + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6164, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6165, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 6166, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6167, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 6168, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 6169, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 6170, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 6171, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6172, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6173, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6174, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6175, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6176, "properties": { "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8804 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6177, "properties": { "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8805 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6178, "properties": { "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8806 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6179, "properties": { "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8807 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6180, "properties": { "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8808 + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6181, "properties": { "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8809 + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6182, "properties": { "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8810 + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6183, "properties": { "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8811 + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6184, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8812 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6185, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8813 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6186, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8814 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6187, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8815 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6188, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8816 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6189, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8817 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6190, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8818 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6191, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8819 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6192, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 8820 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6193, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 8821 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6194, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 8822 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6195, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 8823 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6196, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 8824 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6197, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 8825 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6198, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 8826 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6199, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 8827 - } - ] - }, - "minecraft:spruce_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, { + "id": 6200, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8828 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6201, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8829 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6202, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8830 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6203, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8831 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6204, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8832 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6205, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8833 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6206, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8834 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6207, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8835 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6208, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8836 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6209, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8837 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6210, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8838 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6211, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8839 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6212, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8840 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6213, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8841 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6214, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8842 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6215, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8843 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6216, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8844 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6217, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8845 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6218, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8846 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6219, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8847 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6220, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8848 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6221, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8849 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 6222, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8850 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 6223, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8851 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 6224, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8852 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 6225, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8853 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 6226, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8854 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 6227, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8855 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 6228, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8856 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 6229, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8857 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 6230, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8858 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 6231, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8859, - "default": true + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 6232, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 6233, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 6234, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 6235, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:birch_fence": { + "minecraft:jungle_trapdoor": { "properties": { - "east": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ + "open": [ "true", "false" ], - "waterlogged": [ + "powered": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { + "id": 4612, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8860 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4613, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8861 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4614, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8862 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4615, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8863 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4616, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8864 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4617, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8865 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4618, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8866 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4619, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8867 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4620, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8868 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4621, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8869 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4622, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8870 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4623, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8871 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4624, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8872 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4625, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8873 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4626, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8874 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 4627, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8875 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4628, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8876 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4629, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8877 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4630, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8878 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4631, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8879 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4632, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8880 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4633, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8881 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4634, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8882 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4635, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8883 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4636, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8884 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4637, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8885 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4638, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8886 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4639, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8887 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4640, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8888 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4641, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8889 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4642, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8890 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4643, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8891, - "default": true - } - ] - }, - "minecraft:jungle_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, { + "id": 4644, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8892 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4645, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8893 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4646, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8894 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4647, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8895 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4648, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8896 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4649, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8897 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4650, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8898 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4651, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8899 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4652, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8900 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4653, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8901 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4654, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8902 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4655, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8903 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4656, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8904 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4657, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8905 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4658, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8906 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4659, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8907 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4660, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8908 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4661, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8909 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4662, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8910 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4663, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8911 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4664, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8912 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4665, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8913 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4666, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8914 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4667, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8915 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4668, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8916 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4669, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8917 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4670, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8918 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4671, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8919 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4672, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8920 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4673, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8921 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4674, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8922 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4675, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8923, - "default": true + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, - "minecraft:acacia_fence": { + "minecraft:jungle_wall_sign": { "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], "waterlogged": [ "true", "false" - ], - "west": [ - "true", - "false" ] }, "states": [ { + "id": 4064, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8924 + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 4065, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8925 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 4066, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8926 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 4067, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8927 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 4068, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8928 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 4069, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8929 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 4070, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8930 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 4071, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8931 + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 173, + "properties": { + "axis": "x" + } }, { + "default": true, + "id": 174, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8932 + "axis": "y" + } }, { + "id": 175, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8933 + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 10351, + "properties": { + "age": "0" + } }, { + "id": 10352, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8934 + "age": "1" + } }, { + "id": 10353, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8935 + "age": "2" + } }, { + "id": 10354, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8936 + "age": "3" + } }, { + "id": 10355, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8937 + "age": "4" + } }, { + "id": 10356, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8938 + "age": "5" + } }, { + "id": 10357, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8939 + "age": "6" + } }, { + "id": 10358, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8940 + "age": "7" + } }, { + "id": 10359, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8941 + "age": "8" + } }, { + "id": 10360, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8942 + "age": "9" + } }, { + "id": 10361, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8943 + "age": "10" + } }, { + "id": 10362, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8944 + "age": "11" + } }, { + "id": 10363, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8945 + "age": "12" + } }, { + "id": 10364, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8946 + "age": "13" + } }, { + "id": 10365, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8947 + "age": "14" + } }, { + "id": 10366, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8948 + "age": "15" + } }, { + "id": 10367, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8949 + "age": "16" + } }, { + "id": 10368, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8950 + "age": "17" + } }, { + "id": 10369, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8951 + "age": "18" + } }, { + "id": 10370, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8952 + "age": "19" + } }, { + "id": 10371, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8953 + "age": "20" + } }, { + "id": 10372, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8954 + "age": "21" + } }, { + "id": 10373, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8955, - "default": true + "age": "22" + } + }, + { + "id": 10374, + "properties": { + "age": "23" + } + }, + { + "id": 10375, + "properties": { + "age": "24" + } + }, + { + "id": 10376, + "properties": { + "age": "25" + } } ] }, - "minecraft:dark_oak_fence": { + "minecraft:kelp_plant": { + "states": [ + { + "default": true, + "id": 10377 + } + ] + }, + "minecraft:ladder": { "properties": { - "east": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ + "waterlogged": [ "true", "false" - ], - "south": [ + ] + }, + "states": [ + { + "id": 3924, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3925, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3926, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3927, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3928, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 3929, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 3930, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 3931, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "properties": { + "hanging": [ "true", "false" ], "waterlogged": [ "true", "false" - ], - "west": [ - "true", - "false" ] }, "states": [ { + "id": 16091, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8956 + "hanging": "true", + "waterlogged": "true" + } }, { + "id": 16092, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8957 + "hanging": "true", + "waterlogged": "false" + } }, { + "id": 16093, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8958 + "hanging": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 16094, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8959 - }, + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "states": [ { + "default": true, + "id": 463 + } + ] + }, + "minecraft:lapis_ore": { + "states": [ + { + "default": true, + "id": 461 + } + ] + }, + "minecraft:large_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18633, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8960 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 18634, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8961 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 18635, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8962 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 18636, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8963 + "facing": "east", + "waterlogged": "false" + } }, { + "id": 18637, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8964 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 18638, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8965 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 18639, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8966 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 18640, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8967 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 18641, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8968 + "facing": "up", + "waterlogged": "true" + } }, { + "default": true, + "id": 18642, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8969 + "facing": "up", + "waterlogged": "false" + } }, { + "id": 18643, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8970 + "facing": "down", + "waterlogged": "true" + } }, { + "id": 18644, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8971 + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8636, + "properties": { + "half": "upper" + } }, { + "default": true, + "id": 8637, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lava": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 91, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8972 + "level": "0" + } }, { + "id": 92, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8973 + "level": "1" + } }, { + "id": 93, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8974 + "level": "2" + } }, { + "id": 94, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8975 + "level": "3" + } }, { + "id": 95, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8976 + "level": "4" + } }, { + "id": 96, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8977 + "level": "5" + } }, { + "id": 97, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8978 + "level": "6" + } }, { + "id": 98, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8979 + "level": "7" + } }, { + "id": 99, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 8980 + "level": "8" + } }, { + "id": 100, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 8981 + "level": "9" + } }, { + "id": 101, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 8982 + "level": "10" + } }, { + "id": 102, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 8983 + "level": "11" + } }, { + "id": 103, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 8984 + "level": "12" + } }, { + "id": 104, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 8985 + "level": "13" + } }, { + "id": 105, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 8986 + "level": "14" + } }, { + "id": 106, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 8987, - "default": true + "level": "15" + } } ] }, - "minecraft:spruce_door": { + "minecraft:lava_cauldron": { + "states": [ + { + "default": true, + "id": 5732 + } + ] + }, + "minecraft:lectern": { "properties": { "facing": [ "north", @@ -87386,15 +90496,7 @@ "west", "east" ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ + "has_book": [ "true", "false" ], @@ -87405,1987 +90507,1687 @@ }, "states": [ { + "id": 16038, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", + "has_book": "true", "powered": "true" - }, - "id": 8988 + } }, { + "id": 16039, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", + "has_book": "true", "powered": "false" - }, - "id": 8989 + } }, { + "id": 16040, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", + "has_book": "false", "powered": "true" - }, - "id": 8990 + } }, { + "default": true, + "id": 16041, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", + "has_book": "false", "powered": "false" - }, - "id": 8991 + } }, { + "id": 16042, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "south", + "has_book": "true", "powered": "true" - }, - "id": 8992 + } }, { + "id": 16043, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", + "facing": "south", + "has_book": "true", "powered": "false" - }, - "id": 8993 + } }, { + "id": 16044, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", + "facing": "south", + "has_book": "false", "powered": "true" - }, - "id": 8994 + } }, { + "id": 16045, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", + "facing": "south", + "has_book": "false", "powered": "false" - }, - "id": 8995 + } }, { + "id": 16046, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", + "facing": "west", + "has_book": "true", "powered": "true" - }, - "id": 8996 + } }, { + "id": 16047, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", + "facing": "west", + "has_book": "true", "powered": "false" - }, - "id": 8997 + } }, { + "id": 16048, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", + "facing": "west", + "has_book": "false", "powered": "true" - }, - "id": 8998 + } }, { + "id": 16049, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", + "facing": "west", + "has_book": "false", "powered": "false" - }, - "id": 8999, - "default": true + } }, { + "id": 16050, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", + "facing": "east", + "has_book": "true", "powered": "true" - }, - "id": 9000 + } }, { + "id": 16051, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", + "facing": "east", + "has_book": "true", "powered": "false" - }, - "id": 9001 + } }, { + "id": 16052, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", + "facing": "east", + "has_book": "false", "powered": "true" - }, - "id": 9002 + } }, { + "id": 16053, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", + "facing": "east", + "has_book": "false", "powered": "false" - }, - "id": 9003 - }, + } + } + ] + }, + "minecraft:lever": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4088, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", + "face": "floor", + "facing": "north", "powered": "true" - }, - "id": 9004 + } }, { + "id": 4089, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", + "face": "floor", + "facing": "north", "powered": "false" - }, - "id": 9005 + } }, { + "id": 4090, "properties": { + "face": "floor", "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", "powered": "true" - }, - "id": 9006 + } }, { + "id": 4091, "properties": { + "face": "floor", "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", "powered": "false" - }, - "id": 9007 + } }, { + "id": 4092, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "face": "floor", + "facing": "west", "powered": "true" - }, - "id": 9008 + } }, { + "id": 4093, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", + "face": "floor", + "facing": "west", "powered": "false" - }, - "id": 9009 + } }, { + "id": 4094, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", + "face": "floor", + "facing": "east", "powered": "true" - }, - "id": 9010 + } }, { + "id": 4095, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", + "face": "floor", + "facing": "east", "powered": "false" - }, - "id": 9011 + } }, { + "id": 4096, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", + "face": "wall", + "facing": "north", "powered": "true" - }, - "id": 9012 + } }, { + "default": true, + "id": 4097, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", + "face": "wall", + "facing": "north", "powered": "false" - }, - "id": 9013 + } }, { + "id": 4098, "properties": { + "face": "wall", "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", "powered": "true" - }, - "id": 9014 + } }, { + "id": 4099, "properties": { + "face": "wall", "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", "powered": "false" - }, - "id": 9015 + } }, { + "id": 4100, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "face": "wall", + "facing": "west", "powered": "true" - }, - "id": 9016 + } }, { + "id": 4101, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", + "face": "wall", + "facing": "west", "powered": "false" - }, - "id": 9017 + } }, { + "id": 4102, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", + "face": "wall", + "facing": "east", "powered": "true" - }, - "id": 9018 + } }, { + "id": 4103, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", + "face": "wall", + "facing": "east", "powered": "false" - }, - "id": 9019 + } }, { + "id": 4104, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", + "face": "ceiling", + "facing": "north", "powered": "true" - }, - "id": 9020 + } }, { + "id": 4105, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", + "face": "ceiling", + "facing": "north", "powered": "false" - }, - "id": 9021 + } }, { + "id": 4106, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", + "face": "ceiling", + "facing": "south", "powered": "true" - }, - "id": 9022 + } }, { + "id": 4107, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", + "face": "ceiling", + "facing": "south", "powered": "false" - }, - "id": 9023 + } }, { + "id": 4108, "properties": { + "face": "ceiling", "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", "powered": "true" - }, - "id": 9024 + } }, { + "id": 4109, "properties": { + "face": "ceiling", "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", "powered": "false" - }, - "id": 9025 + } }, { + "id": 4110, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", + "face": "ceiling", + "facing": "east", "powered": "true" - }, - "id": 9026 + } }, { + "id": 4111, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", + "face": "ceiling", + "facing": "east", "powered": "false" - }, - "id": 9027 - }, + } + } + ] + }, + "minecraft:light": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8246, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9028 + "level": "0", + "waterlogged": "true" + } }, { + "id": 8247, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9029 + "level": "0", + "waterlogged": "false" + } }, { + "id": 8248, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9030 + "level": "1", + "waterlogged": "true" + } }, { + "id": 8249, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9031 + "level": "1", + "waterlogged": "false" + } }, { + "id": 8250, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9032 + "level": "2", + "waterlogged": "true" + } }, { + "id": 8251, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9033 + "level": "2", + "waterlogged": "false" + } }, { + "id": 8252, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9034 + "level": "3", + "waterlogged": "true" + } }, { + "id": 8253, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9035 + "level": "3", + "waterlogged": "false" + } }, { + "id": 8254, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9036 + "level": "4", + "waterlogged": "true" + } }, { + "id": 8255, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9037 + "level": "4", + "waterlogged": "false" + } }, { + "id": 8256, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9038 + "level": "5", + "waterlogged": "true" + } }, { + "id": 8257, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9039 + "level": "5", + "waterlogged": "false" + } }, { + "id": 8258, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9040 + "level": "6", + "waterlogged": "true" + } }, { + "id": 8259, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9041 + "level": "6", + "waterlogged": "false" + } }, { + "id": 8260, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9042 + "level": "7", + "waterlogged": "true" + } }, { + "id": 8261, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9043 + "level": "7", + "waterlogged": "false" + } }, { + "id": 8262, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9044 + "level": "8", + "waterlogged": "true" + } }, { + "id": 8263, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9045 + "level": "8", + "waterlogged": "false" + } }, { + "id": 8264, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9046 + "level": "9", + "waterlogged": "true" + } }, { + "id": 8265, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9047 + "level": "9", + "waterlogged": "false" + } }, { + "id": 8266, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9048 + "level": "10", + "waterlogged": "true" + } }, { + "id": 8267, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9049 + "level": "10", + "waterlogged": "false" + } }, { + "id": 8268, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9050 + "level": "11", + "waterlogged": "true" + } }, { + "id": 8269, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9051 - } - ] - }, - "minecraft:birch_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "level": "11", + "waterlogged": "false" + } + }, { + "id": 8270, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9052 + "level": "12", + "waterlogged": "true" + } }, { + "id": 8271, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9053 + "level": "12", + "waterlogged": "false" + } }, { + "id": 8272, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9054 + "level": "13", + "waterlogged": "true" + } }, { + "id": 8273, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9055 + "level": "13", + "waterlogged": "false" + } }, { + "id": 8274, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9056 + "level": "14", + "waterlogged": "true" + } }, { + "id": 8275, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9057 + "level": "14", + "waterlogged": "false" + } }, { + "id": 8276, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9058 + "level": "15", + "waterlogged": "true" + } }, { + "default": true, + "id": 8277, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9059 - }, + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8686, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9060 + "rotation": "0" + } }, { + "id": 8687, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9061 + "rotation": "1" + } }, { + "id": 8688, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9062 + "rotation": "2" + } }, { + "id": 8689, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9063, - "default": true + "rotation": "3" + } }, { + "id": 8690, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9064 + "rotation": "4" + } }, { + "id": 8691, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9065 + "rotation": "5" + } }, { + "id": 8692, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9066 + "rotation": "6" + } }, { + "id": 8693, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9067 + "rotation": "7" + } }, { + "id": 8694, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9068 + "rotation": "8" + } }, { + "id": 8695, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9069 + "rotation": "9" + } }, { + "id": 8696, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9070 + "rotation": "10" + } }, { + "id": 8697, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9071 + "rotation": "11" + } }, { + "id": 8698, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9072 + "rotation": "12" + } }, { + "id": 8699, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9073 + "rotation": "13" + } }, { + "id": 8700, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9074 + "rotation": "14" + } }, { + "id": 8701, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9075 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1327, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9076 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1328, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9077 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1329, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9078 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1330, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9079 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1331, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9080 + "occupied": "true", + "part": "head" + } }, { + "id": 1332, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9081 + "occupied": "true", + "part": "foot" + } }, { + "id": 1333, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9082 + "occupied": "false", + "part": "head" + } }, { + "id": 1334, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9083 + "occupied": "false", + "part": "foot" + } }, { + "id": 1335, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9084 + "occupied": "true", + "part": "head" + } }, { + "id": 1336, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9085 + "occupied": "true", + "part": "foot" + } }, { + "id": 1337, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9086 + "occupied": "false", + "part": "head" + } }, { + "id": 1338, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9087 + "occupied": "false", + "part": "foot" + } }, { + "id": 1339, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9088 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1340, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9089 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1341, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9090 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1342, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9091 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18377, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9092 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18378, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9093 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18379, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9094 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18380, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9095 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18381, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9096 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18382, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9097 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18383, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9098 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18384, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9099 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18385, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9100 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18386, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9101 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18387, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9102 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18388, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9103 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18389, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9104 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18390, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9105 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18391, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9106 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18392, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9107 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18593, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9108 + "lit": "true" + } }, { + "default": true, + "id": 18594, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9109 - }, + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "states": [ { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9110 - }, + "default": true, + "id": 8610 + } + ] + }, + "minecraft:light_blue_concrete": { + "states": [ { - "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9111 - }, + "default": true, + "id": 10322 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "states": [ + { + "default": true, + "id": 10338 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10267, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9112 + "facing": "north" + } }, { + "id": 10268, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9113 + "facing": "south" + } }, { + "id": 10269, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9114 + "facing": "west" + } }, { + "id": 10270, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9115 + "facing": "east" + } } ] }, - "minecraft:jungle_door": { + "minecraft:light_blue_shulker_box": { "properties": { "facing": [ "north", + "east", "south", "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" + "up", + "down" ] }, "states": [ { + "id": 10177, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9116 + "facing": "north" + } }, { + "id": 10178, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9117 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9118 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9119 - }, - { - "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9120 + "facing": "east" + } }, { + "id": 10179, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9121 + "facing": "south" + } }, { + "id": 10180, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9122 + "facing": "west" + } }, { + "default": true, + "id": 10181, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9123 + "facing": "up" + } }, { + "id": 10182, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9124 - }, + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "states": [ { - "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9125 - }, + "default": true, + "id": 4407 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7588, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9126 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7589, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9127, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7590, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9128 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7591, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9129 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7592, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9130 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7593, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9131 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7594, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9132 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7595, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9133 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7596, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9134 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7597, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9135 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7598, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9136 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7599, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9137 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7600, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9138 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7601, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9139 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7602, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9140 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7603, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9141 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7604, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9142 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7605, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9143 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7606, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9144 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7607, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9145 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7608, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9146 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7609, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9147 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7610, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9148 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7611, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9149 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7612, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9150 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7613, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9151 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7614, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9152 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7615, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9153 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7616, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9154 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7617, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9155 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7618, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9156 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7619, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9157 - }, + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "states": [ { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9158 - }, + "default": true, + "id": 7479 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8906, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9159 + "facing": "north" + } }, { + "id": 8907, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9160 + "facing": "south" + } }, { + "id": 8908, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9161 + "facing": "west" + } }, { + "id": 8909, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9162 - }, + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "states": [ { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9163 - }, + "default": true, + "id": 1641 + } + ] + }, + "minecraft:light_gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8766, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9164 + "rotation": "0" + } }, { + "id": 8767, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9165 + "rotation": "1" + } }, { + "id": 8768, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9166 + "rotation": "2" + } }, { + "id": 8769, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9167 + "rotation": "3" + } }, { + "id": 8770, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9168 + "rotation": "4" + } }, { + "id": 8771, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9169 + "rotation": "5" + } }, { + "id": 8772, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9170 + "rotation": "6" + } }, { + "id": 8773, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9171 + "rotation": "7" + } }, { + "id": 8774, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9172 + "rotation": "8" + } }, { + "id": 8775, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9173 + "rotation": "9" + } }, { + "id": 8776, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9174 + "rotation": "10" + } }, { + "id": 8777, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9175 + "rotation": "11" + } }, { + "id": 8778, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9176 + "rotation": "12" + } }, { + "id": 8779, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9177 + "rotation": "13" + } }, { + "id": 8780, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9178 + "rotation": "14" + } }, { + "id": 8781, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9179 + "rotation": "15" + } } ] }, - "minecraft:acacia_door": { + "minecraft:light_gray_bed": { "properties": { "facing": [ "north", @@ -89393,3334 +92195,3203 @@ "west", "east" ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ + "occupied": [ "true", "false" ], - "powered": [ - "true", - "false" + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1407, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9180 + "occupied": "true", + "part": "head" + } }, { + "id": 1408, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9181 + "occupied": "true", + "part": "foot" + } }, { + "id": 1409, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9182 + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1410, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9183 + "occupied": "false", + "part": "foot" + } }, { + "id": 1411, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9184 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1412, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9185 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1413, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9186 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1414, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9187 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1415, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9188 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1416, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9189 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1417, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9190 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1418, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9191, - "default": true + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1419, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9192 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1420, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9193 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1421, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9194 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1422, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9195 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18457, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9196 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18458, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9197 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18459, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9198 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18460, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9199 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18461, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9200 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18462, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9201 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18463, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9202 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18464, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9203 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18465, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9204 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18466, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9205 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18467, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9206 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18468, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9207 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18469, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9208 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18470, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9209 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18471, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9210 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18472, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9211 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18603, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9212 + "lit": "true" + } }, { + "default": true, + "id": 18604, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9213 - }, + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "default": true, + "id": 8615 + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "default": true, + "id": 10327 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 10343 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10287, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9214 + "facing": "north" + } }, { + "id": 10288, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9215 + "facing": "south" + } }, { + "id": 10289, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9216 + "facing": "west" + } }, { + "id": 10290, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9217 + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10207, + "properties": { + "facing": "north" + } }, { + "id": 10208, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9218 + "facing": "east" + } }, { + "id": 10209, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9219 + "facing": "south" + } }, { + "id": 10210, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9220 + "facing": "west" + } }, { + "default": true, + "id": 10211, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9221 + "facing": "up" + } }, { + "id": 10212, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9222 + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "default": true, + "id": 4412 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7748, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7749, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9223 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7750, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9224 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7751, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9225 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7752, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9226 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7753, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9227 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7754, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9228 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7755, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9229 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7756, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9230 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7757, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9231 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7758, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9232 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7759, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9233 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7760, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9234 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7761, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9235 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7762, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9236 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7763, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9237 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7764, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9238 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7765, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9239 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7766, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9240 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7767, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9241 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7768, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9242 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7769, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9243 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7770, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7771, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7772, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7773, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7774, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7775, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7776, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7777, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7778, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7779, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:dark_oak_door": { + "minecraft:light_gray_terracotta": { + "states": [ + { + "default": true, + "id": 7484 + } + ] + }, + "minecraft:light_gray_wall_banner": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 8926, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9244 + "facing": "north" + } }, { + "id": 8927, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9245 + "facing": "south" + } }, { + "id": 8928, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9246 + "facing": "west" + } }, { + "id": 8929, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9247 - }, + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "default": true, + "id": 1646 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 7263, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9248 + "power": "0" + } }, { + "id": 7264, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9249 + "power": "1" + } }, { + "id": 7265, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9250 + "power": "2" + } }, { + "id": 7266, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9251 + "power": "3" + } }, { + "id": 7267, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9252 + "power": "4" + } }, { + "id": 7268, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9253 + "power": "5" + } }, { + "id": 7269, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9254 + "power": "6" + } }, { + "id": 7270, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9255, - "default": true + "power": "7" + } }, { + "id": 7271, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9256 + "power": "8" + } }, { + "id": 7272, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9257 + "power": "9" + } }, { + "id": 7273, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9258 + "power": "10" + } }, { + "id": 7274, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9259 + "power": "11" + } }, { + "id": 7275, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9260 + "power": "12" + } }, { + "id": 7276, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9261 + "power": "13" + } }, { + "id": 7277, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9262 + "power": "14" + } }, { + "id": 7278, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9263 - }, + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19614, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9264 + "facing": "north", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19615, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9265 + "facing": "north", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19616, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9266 + "facing": "north", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 19617, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9267 + "facing": "north", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 19618, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9268 + "facing": "east", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19619, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9269 + "facing": "east", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19620, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9270 + "facing": "east", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 19621, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9271 + "facing": "east", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 19622, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9272 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19623, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9273 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19624, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9274 + "powered": "false", + "waterlogged": "true" + } }, { + "id": 19625, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9275 + "powered": "false", + "waterlogged": "false" + } }, { + "id": 19626, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9276 + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19627, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9277 + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19628, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9278 + "powered": "false", + "waterlogged": "true" + } }, { + "id": 19629, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9279 + "powered": "false", + "waterlogged": "false" + } }, { + "id": 19630, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9280 + "facing": "up", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19631, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9281 + "facing": "up", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19632, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9282 + "facing": "up", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 19633, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9283 + "facing": "up", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 19634, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9284 + "facing": "down", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 19635, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9285 + "facing": "down", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 19636, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9286 + "facing": "down", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 19637, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9287 - }, + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { + "id": 8628, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9288 + "half": "upper" + } }, { + "default": true, + "id": 8629, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9289 - }, + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "states": [ { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9290 - }, + "default": true, + "id": 1678 + } + ] + }, + "minecraft:lily_pad": { + "states": [ { - "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9291 - }, + "default": true, + "id": 5601 + } + ] + }, + "minecraft:lime_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8718, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9292 + "rotation": "0" + } }, { + "id": 8719, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9293 + "rotation": "1" + } }, { + "id": 8720, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9294 + "rotation": "2" + } }, { + "id": 8721, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9295 + "rotation": "3" + } }, { + "id": 8722, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9296 + "rotation": "4" + } }, { + "id": 8723, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9297 + "rotation": "5" + } }, { + "id": 8724, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9298 + "rotation": "6" + } }, { + "id": 8725, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9299 + "rotation": "7" + } }, { + "id": 8726, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 9300 + "rotation": "8" + } }, { + "id": 8727, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 9301 + "rotation": "9" + } }, { + "id": 8728, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 9302 + "rotation": "10" + } }, { + "id": 8729, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 9303 + "rotation": "11" + } }, { + "id": 8730, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 9304 + "rotation": "12" + } }, { + "id": 8731, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 9305 + "rotation": "13" + } }, { + "id": 8732, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 9306 + "rotation": "14" + } }, { + "id": 8733, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 9307 + "rotation": "15" + } } ] }, - "minecraft:end_rod": { + "minecraft:lime_bed": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" ] }, "states": [ { + "id": 1359, "properties": { - "facing": "north" - }, - "id": 9308 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1360, "properties": { - "facing": "east" - }, - "id": 9309 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1361, "properties": { - "facing": "south" - }, - "id": 9310 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1362, "properties": { - "facing": "west" - }, - "id": 9311 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1363, "properties": { - "facing": "up" - }, - "id": 9312, - "default": true + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1364, "properties": { - "facing": "down" - }, - "id": 9313 - } - ] - }, - "minecraft:chorus_plant": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, { + "id": 1365, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9314 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1366, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9315 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1367, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9316 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1368, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9317 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1369, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9318 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1370, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9319 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1371, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9320 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1372, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9321 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1373, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9322 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1374, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9323 + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18409, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18410, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9324 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18411, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9325 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18412, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9326 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18413, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9327 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18414, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9328 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18415, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9329 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18416, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9330 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18417, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9331 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18418, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9332 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18419, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9333 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18420, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9334 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18421, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9335 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18422, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9336 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18423, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9337 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18424, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" - }, - "id": 9338 + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18597, + "properties": { + "lit": "true" + } }, { + "default": true, + "id": 18598, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" - }, - "id": 9339 + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "states": [ + { + "default": true, + "id": 8612 + } + ] + }, + "minecraft:lime_concrete": { + "states": [ + { + "default": true, + "id": 10324 + } + ] + }, + "minecraft:lime_concrete_powder": { + "states": [ + { + "default": true, + "id": 10340 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10275, + "properties": { + "facing": "north" + } }, { + "id": 10276, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" - }, - "id": 9340 + "facing": "south" + } }, { + "id": 10277, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" - }, - "id": 9341 + "facing": "west" + } }, { + "id": 10278, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - }, - "id": 9342 + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10189, + "properties": { + "facing": "north" + } }, { + "id": 10190, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" - }, - "id": 9343 + "facing": "east" + } }, { + "id": 10191, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" - }, - "id": 9344 + "facing": "south" + } }, { + "id": 10192, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" - }, - "id": 9345 + "facing": "west" + } }, { + "default": true, + "id": 10193, + "properties": { + "facing": "up" + } + }, + { + "id": 10194, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "states": [ + { + "default": true, + "id": 4409 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7652, "properties": { - "down": "false", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9346 + } }, { + "id": 7653, "properties": { - "down": "false", "east": "true", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9347 + } }, { + "id": 7654, "properties": { - "down": "false", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9348 + } }, { + "id": 7655, "properties": { - "down": "false", "east": "true", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9349 + } }, { + "id": 7656, "properties": { - "down": "false", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9350 + } }, { + "id": 7657, "properties": { - "down": "false", "east": "true", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9351 + } }, { + "id": 7658, "properties": { - "down": "false", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9352 + } }, { + "id": 7659, "properties": { - "down": "false", "east": "true", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9353 + } }, { + "id": 7660, "properties": { - "down": "false", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9354 + } }, { + "id": 7661, "properties": { - "down": "false", "east": "true", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9355 + } }, { + "id": 7662, "properties": { - "down": "false", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9356 + } }, { + "id": 7663, "properties": { - "down": "false", "east": "true", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9357 + } }, { + "id": 7664, "properties": { - "down": "false", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9358 + } }, { + "id": 7665, "properties": { - "down": "false", "east": "true", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9359 + } }, { + "id": 7666, "properties": { - "down": "false", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9360 + } }, { + "id": 7667, "properties": { - "down": "false", "east": "true", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9361 + } }, { + "id": 7668, "properties": { - "down": "false", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9362 + } }, { + "id": 7669, "properties": { - "down": "false", "east": "false", "north": "true", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9363 + } }, { + "id": 7670, "properties": { - "down": "false", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9364 + } }, { + "id": 7671, "properties": { - "down": "false", "east": "false", "north": "true", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9365 + } }, { + "id": 7672, "properties": { - "down": "false", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9366 + } }, { + "id": 7673, "properties": { - "down": "false", "east": "false", "north": "true", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9367 + } }, { + "id": 7674, "properties": { - "down": "false", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9368 + } }, { + "id": 7675, "properties": { - "down": "false", "east": "false", "north": "true", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9369 + } }, { + "id": 7676, "properties": { - "down": "false", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9370 + } }, { + "id": 7677, "properties": { - "down": "false", "east": "false", "north": "false", "south": "true", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9371 + } }, { + "id": 7678, "properties": { - "down": "false", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9372 + } }, { + "id": 7679, "properties": { - "down": "false", "east": "false", "north": "false", "south": "true", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9373 + } }, { + "id": 7680, "properties": { - "down": "false", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "true" - }, - "id": 9374 + } }, { + "id": 7681, "properties": { - "down": "false", "east": "false", "north": "false", "south": "false", - "up": "true", + "waterlogged": "true", "west": "false" - }, - "id": 9375 + } }, { + "id": 7682, "properties": { - "down": "false", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "true" - }, - "id": 9376 + } }, { + "default": true, + "id": 7683, "properties": { - "down": "false", "east": "false", "north": "false", "south": "false", - "up": "false", + "waterlogged": "false", "west": "false" - }, - "id": 9377, - "default": true + } } ] }, - "minecraft:chorus_flower": { + "minecraft:lime_terracotta": { + "states": [ + { + "default": true, + "id": 7481 + } + ] + }, + "minecraft:lime_wall_banner": { "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 8914, "properties": { - "age": "0" - }, - "id": 9378, - "default": true - }, - { - "properties": { - "age": "1" - }, - "id": 9379 - }, - { - "properties": { - "age": "2" - }, - "id": 9380 + "facing": "north" + } }, { + "id": 8915, "properties": { - "age": "3" - }, - "id": 9381 + "facing": "south" + } }, { + "id": 8916, "properties": { - "age": "4" - }, - "id": 9382 + "facing": "west" + } }, { + "id": 8917, "properties": { - "age": "5" - }, - "id": 9383 + "facing": "east" + } } ] }, - "minecraft:purpur_block": { + "minecraft:lime_wool": { "states": [ { - "id": 9384, - "default": true + "default": true, + "id": 1643 } ] }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, + "minecraft:lodestone": { "states": [ { - "properties": { - "axis": "x" - }, - "id": 9385 - }, - { - "properties": { - "axis": "y" - }, - "id": 9386, - "default": true - }, - { - "properties": { - "axis": "z" - }, - "id": 9387 + "default": true, + "id": 17047 } ] }, - "minecraft:purpur_stairs": { + "minecraft:loom": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" ] }, "states": [ { + "default": true, + "id": 15992, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9388 + "facing": "north" + } }, { + "id": 15993, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9389 + "facing": "south" + } }, { + "id": 15994, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9390 + "facing": "west" + } }, { + "id": 15995, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9391 - }, + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8670, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9392 + "rotation": "0" + } }, { + "id": 8671, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9393 + "rotation": "1" + } }, { + "id": 8672, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9394 + "rotation": "2" + } }, { + "id": 8673, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9395 + "rotation": "3" + } }, { + "id": 8674, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9396 + "rotation": "4" + } }, { + "id": 8675, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9397 + "rotation": "5" + } }, { + "id": 8676, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9398 + "rotation": "6" + } }, { + "id": 8677, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9399, - "default": true + "rotation": "7" + } }, { + "id": 8678, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9400 + "rotation": "8" + } }, { + "id": 8679, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9401 + "rotation": "9" + } }, { + "id": 8680, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9402 + "rotation": "10" + } }, { + "id": 8681, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9403 + "rotation": "11" + } }, { + "id": 8682, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9404 + "rotation": "12" + } }, { + "id": 8683, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9405 + "rotation": "13" + } }, { + "id": 8684, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9406 + "rotation": "14" + } }, { + "id": 8685, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9407 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1311, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9408 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1312, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9409 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1313, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9410 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1314, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9411 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1315, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9412 + "occupied": "true", + "part": "head" + } }, { + "id": 1316, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9413 + "occupied": "true", + "part": "foot" + } }, { + "id": 1317, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9414 + "occupied": "false", + "part": "head" + } }, { + "id": 1318, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9415 + "occupied": "false", + "part": "foot" + } }, { + "id": 1319, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9416 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1320, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9417 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1321, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9418 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1322, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9419 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1323, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9420 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1324, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9421 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1325, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9422 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1326, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9423 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18361, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "candles": "1", + "lit": "true", "waterlogged": "true" - }, - "id": 9424 + } }, { + "id": 18362, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "candles": "1", + "lit": "true", "waterlogged": "false" - }, - "id": 9425 + } }, { + "id": 18363, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "candles": "1", + "lit": "false", "waterlogged": "true" - }, - "id": 9426 + } }, { + "default": true, + "id": 18364, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "candles": "1", + "lit": "false", "waterlogged": "false" - }, - "id": 9427 + } }, { + "id": 18365, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "candles": "2", + "lit": "true", "waterlogged": "true" - }, - "id": 9428 + } }, { + "id": 18366, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "candles": "2", + "lit": "true", "waterlogged": "false" - }, - "id": 9429 + } }, { + "id": 18367, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "candles": "2", + "lit": "false", "waterlogged": "true" - }, - "id": 9430 + } }, { + "id": 18368, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "candles": "2", + "lit": "false", "waterlogged": "false" - }, - "id": 9431 + } }, { + "id": 18369, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "candles": "3", + "lit": "true", "waterlogged": "true" - }, - "id": 9432 + } }, { + "id": 18370, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "candles": "3", + "lit": "true", "waterlogged": "false" - }, - "id": 9433 + } }, { + "id": 18371, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "candles": "3", + "lit": "false", "waterlogged": "true" - }, - "id": 9434 + } }, { + "id": 18372, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "candles": "3", + "lit": "false", "waterlogged": "false" - }, - "id": 9435 + } }, { + "id": 18373, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "candles": "4", + "lit": "true", "waterlogged": "true" - }, - "id": 9436 + } }, { + "id": 18374, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "candles": "4", + "lit": "true", "waterlogged": "false" - }, - "id": 9437 + } }, { + "id": 18375, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "candles": "4", + "lit": "false", "waterlogged": "true" - }, - "id": 9438 + } }, { + "id": 18376, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "candles": "4", + "lit": "false", "waterlogged": "false" - }, - "id": 9439 - }, + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18591, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9440 + "lit": "true" + } }, { + "default": true, + "id": 18592, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9441 - }, + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "states": [ { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9442 - }, + "default": true, + "id": 8609 + } + ] + }, + "minecraft:magenta_concrete": { + "states": [ { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9443 - }, + "default": true, + "id": 10321 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "states": [ { - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9444 - }, + "default": true, + "id": 10337 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10263, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9445 + "facing": "north" + } }, { + "id": 10264, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9446 + "facing": "south" + } }, { + "id": 10265, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9447 + "facing": "west" + } }, { + "id": 10266, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9448 - }, + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10171, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9449 + "facing": "north" + } }, { + "id": 10172, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9450 + "facing": "east" + } }, { + "id": 10173, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9451 + "facing": "south" + } }, { + "id": 10174, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9452 + "facing": "west" + } }, { + "default": true, + "id": 10175, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9453 + "facing": "up" + } }, { + "id": 10176, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9454 - }, + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "states": [ { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9455 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9456 - }, - { - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9457 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9458 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9459 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 9460 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 9461 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 9462 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 9463 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 9464 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 9465 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 9466 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9467 - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "id": 9468, - "default": true + "default": true, + "id": 4406 } ] }, - "minecraft:beetroots": { + "minecraft:magenta_stained_glass_pane": { "properties": { - "age": [ - "0", - "1", - "2", - "3" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 7556, "properties": { - "age": "0" - }, - "id": 9469, - "default": true + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7557, "properties": { - "age": "1" - }, - "id": 9470 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7558, "properties": { - "age": "2" - }, - "id": 9471 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7559, "properties": { - "age": "3" - }, - "id": 9472 - } - ] - }, - "minecraft:dirt_path": { - "states": [ - { - "id": 9473, - "default": true - } - ] - }, - "minecraft:end_gateway": { - "states": [ - { - "id": 9474, - "default": true - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 7560, "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 9475 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7561, "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 9476 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7562, "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 9477 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7563, "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 9478 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7564, "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 9479 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7565, "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 9480 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7566, "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 9481, - "default": true + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7567, "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 9482 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7568, "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 9483 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7569, "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 9484 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7570, "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 9485 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7571, "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 9486 - } - ] - }, - "minecraft:chain_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 7572, "properties": { - "conditional": "true", - "facing": "north" - }, - "id": 9487 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7573, "properties": { - "conditional": "true", - "facing": "east" - }, - "id": 9488 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7574, "properties": { - "conditional": "true", - "facing": "south" - }, - "id": 9489 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7575, "properties": { - "conditional": "true", - "facing": "west" - }, - "id": 9490 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7576, "properties": { - "conditional": "true", - "facing": "up" - }, - "id": 9491 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7577, "properties": { - "conditional": "true", - "facing": "down" - }, - "id": 9492 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7578, "properties": { - "conditional": "false", - "facing": "north" - }, - "id": 9493, - "default": true + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7579, "properties": { - "conditional": "false", - "facing": "east" - }, - "id": 9494 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7580, "properties": { - "conditional": "false", - "facing": "south" - }, - "id": 9495 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7581, "properties": { - "conditional": "false", - "facing": "west" - }, - "id": 9496 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7582, "properties": { - "conditional": "false", - "facing": "up" - }, - "id": 9497 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7583, "properties": { - "conditional": "false", - "facing": "down" - }, - "id": 9498 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 7584, "properties": { - "age": "0" - }, - "id": 9499, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7585, "properties": { - "age": "1" - }, - "id": 9500 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7586, "properties": { - "age": "2" - }, - "id": 9501 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7587, "properties": { - "age": "3" - }, - "id": 9502 - } - ] - }, - "minecraft:magma_block": { - "states": [ - { - "id": 9503, - "default": true - } - ] - }, - "minecraft:nether_wart_block": { - "states": [ - { - "id": 9504, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:red_nether_bricks": { + "minecraft:magenta_terracotta": { "states": [ { - "id": 9505, - "default": true + "default": true, + "id": 7478 } ] }, - "minecraft:bone_block": { + "minecraft:magenta_wall_banner": { "properties": { - "axis": [ - "x", - "y", - "z" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 8902, "properties": { - "axis": "x" - }, - "id": 9506 + "facing": "north" + } }, { + "id": 8903, "properties": { - "axis": "y" - }, - "id": 9507, - "default": true + "facing": "south" + } }, { + "id": 8904, "properties": { - "axis": "z" - }, - "id": 9508 + "facing": "west" + } + }, + { + "id": 8905, + "properties": { + "facing": "east" + } } ] }, - "minecraft:structure_void": { + "minecraft:magenta_wool": { "states": [ { - "id": 9509, - "default": true + "default": true, + "id": 1640 } ] }, - "minecraft:observer": { + "minecraft:magma_block": { + "states": [ + { + "default": true, + "id": 10134 + } + ] + }, + "minecraft:mangrove_button": { "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], "powered": [ "true", @@ -92729,2197 +95400,2225 @@ }, "states": [ { + "id": 7083, "properties": { + "face": "floor", "facing": "north", "powered": "true" - }, - "id": 9510 + } }, { + "id": 7084, "properties": { + "face": "floor", "facing": "north", "powered": "false" - }, - "id": 9511 + } }, { + "id": 7085, "properties": { - "facing": "east", + "face": "floor", + "facing": "south", "powered": "true" - }, - "id": 9512 + } }, { + "id": 7086, "properties": { - "facing": "east", + "face": "floor", + "facing": "south", "powered": "false" - }, - "id": 9513 + } }, { + "id": 7087, "properties": { - "facing": "south", + "face": "floor", + "facing": "west", "powered": "true" - }, - "id": 9514 + } }, { + "id": 7088, "properties": { - "facing": "south", + "face": "floor", + "facing": "west", "powered": "false" - }, - "id": 9515, - "default": true + } }, { + "id": 7089, "properties": { - "facing": "west", + "face": "floor", + "facing": "east", "powered": "true" - }, - "id": 9516 + } }, { + "id": 7090, "properties": { - "facing": "west", + "face": "floor", + "facing": "east", "powered": "false" - }, - "id": 9517 + } }, { + "id": 7091, "properties": { - "facing": "up", + "face": "wall", + "facing": "north", "powered": "true" - }, - "id": 9518 + } }, { + "default": true, + "id": 7092, "properties": { - "facing": "up", + "face": "wall", + "facing": "north", "powered": "false" - }, - "id": 9519 + } }, { + "id": 7093, "properties": { - "facing": "down", + "face": "wall", + "facing": "south", "powered": "true" - }, - "id": 9520 + } }, { + "id": 7094, "properties": { - "facing": "down", + "face": "wall", + "facing": "south", "powered": "false" - }, - "id": 9521 - } - ] - }, - "minecraft:shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + } + }, { + "id": 7095, "properties": { - "facing": "north" - }, - "id": 9522 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 7096, "properties": { - "facing": "east" - }, - "id": 9523 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 7097, "properties": { - "facing": "south" - }, - "id": 9524 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 7098, "properties": { - "facing": "west" - }, - "id": 9525 + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 7099, "properties": { - "facing": "up" - }, - "id": 9526, - "default": true + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 7100, "properties": { - "facing": "down" - }, - "id": 9527 - } - ] - }, - "minecraft:white_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, { + "id": 7101, "properties": { - "facing": "north" - }, - "id": 9528 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 7102, "properties": { - "facing": "east" - }, - "id": 9529 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 7103, "properties": { - "facing": "south" - }, - "id": 9530 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 7104, "properties": { - "facing": "west" - }, - "id": 9531 + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 7105, "properties": { - "facing": "up" - }, - "id": 9532, - "default": true + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 7106, "properties": { - "facing": "down" - }, - "id": 9533 + "face": "ceiling", + "facing": "east", + "powered": "false" + } } ] }, - "minecraft:orange_shulker_box": { + "minecraft:mangrove_door": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9875, "properties": { - "facing": "north" - }, - "id": 9534 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9876, "properties": { - "facing": "east" - }, - "id": 9535 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9877, "properties": { - "facing": "south" - }, - "id": 9536 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9878, "properties": { - "facing": "west" - }, - "id": 9537 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9879, "properties": { - "facing": "up" - }, - "id": 9538, - "default": true + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9880, "properties": { - "facing": "down" - }, - "id": 9539 - } - ] - }, - "minecraft:magenta_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, { + "id": 9881, "properties": { - "facing": "north" - }, - "id": 9540 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9882, "properties": { - "facing": "east" - }, - "id": 9541 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9883, "properties": { - "facing": "south" - }, - "id": 9542 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9884, "properties": { - "facing": "west" - }, - "id": 9543 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9885, "properties": { - "facing": "up" - }, - "id": 9544, - "default": true + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9886, "properties": { - "facing": "down" - }, - "id": 9545 - } - ] - }, - "minecraft:light_blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { + "id": 9887, "properties": { - "facing": "north" - }, - "id": 9546 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9888, "properties": { - "facing": "east" - }, - "id": 9547 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9889, "properties": { - "facing": "south" - }, - "id": 9548 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9890, "properties": { - "facing": "west" - }, - "id": 9549 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9891, "properties": { - "facing": "up" - }, - "id": 9550, - "default": true + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9892, "properties": { - "facing": "down" - }, - "id": 9551 - } - ] - }, - "minecraft:yellow_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9893, "properties": { - "facing": "north" - }, - "id": 9552 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9894, "properties": { - "facing": "east" - }, - "id": 9553 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9895, "properties": { - "facing": "south" - }, - "id": 9554 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9896, "properties": { - "facing": "west" - }, - "id": 9555 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9897, "properties": { - "facing": "up" - }, - "id": 9556, - "default": true + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9898, "properties": { - "facing": "down" - }, - "id": 9557 - } - ] - }, - "minecraft:lime_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, { + "id": 9899, "properties": { - "facing": "north" - }, - "id": 9558 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9900, "properties": { - "facing": "east" - }, - "id": 9559 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9901, "properties": { - "facing": "south" - }, - "id": 9560 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9902, "properties": { - "facing": "west" - }, - "id": 9561 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9903, "properties": { - "facing": "up" - }, - "id": 9562, - "default": true + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9904, "properties": { - "facing": "down" - }, - "id": 9563 - } - ] - }, - "minecraft:pink_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, { + "id": 9905, "properties": { - "facing": "north" - }, - "id": 9564 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9906, "properties": { - "facing": "east" - }, - "id": 9565 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9907, "properties": { - "facing": "south" - }, - "id": 9566 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9908, "properties": { - "facing": "west" - }, - "id": 9567 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9909, "properties": { - "facing": "up" - }, - "id": 9568, - "default": true + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9910, "properties": { - "facing": "down" - }, - "id": 9569 - } - ] - }, - "minecraft:gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { + "id": 9911, "properties": { - "facing": "north" - }, - "id": 9570 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9912, "properties": { - "facing": "east" - }, - "id": 9571 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9913, "properties": { - "facing": "south" - }, - "id": 9572 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9914, "properties": { - "facing": "west" - }, - "id": 9573 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9915, "properties": { - "facing": "up" - }, - "id": 9574, - "default": true + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9916, "properties": { - "facing": "down" - }, - "id": 9575 - } - ] - }, - "minecraft:light_gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9917, "properties": { - "facing": "north" - }, - "id": 9576 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9918, "properties": { - "facing": "east" - }, - "id": 9577 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9919, "properties": { - "facing": "south" - }, - "id": 9578 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9920, "properties": { - "facing": "west" - }, - "id": 9579 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9921, "properties": { - "facing": "up" - }, - "id": 9580, - "default": true + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9922, "properties": { - "facing": "down" - }, - "id": 9581 - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9582 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9923, "properties": { - "facing": "east" - }, - "id": 9583 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9924, "properties": { - "facing": "south" - }, - "id": 9584 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9925, "properties": { - "facing": "west" - }, - "id": 9585 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9926, "properties": { - "facing": "up" - }, - "id": 9586, - "default": true + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9927, "properties": { - "facing": "down" - }, - "id": 9587 - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 9588 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9928, "properties": { - "facing": "east" - }, - "id": 9589 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9929, "properties": { - "facing": "south" - }, - "id": 9590 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9930, "properties": { - "facing": "west" - }, - "id": 9591 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9931, "properties": { - "facing": "up" - }, - "id": 9592, - "default": true + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9932, "properties": { - "facing": "down" - }, - "id": 9593 - } - ] - }, - "minecraft:blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { + "id": 9933, "properties": { - "facing": "north" - }, - "id": 9594 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9934, "properties": { - "facing": "east" - }, - "id": 9595 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9935, "properties": { - "facing": "south" - }, - "id": 9596 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9936, "properties": { - "facing": "west" - }, - "id": 9597 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9937, "properties": { - "facing": "up" - }, - "id": 9598, - "default": true + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9938, "properties": { - "facing": "down" - }, - "id": 9599 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:brown_shulker_box": { + "minecraft:mangrove_fence": { "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { + "id": 9523, "properties": { - "facing": "north" - }, - "id": 9600 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9524, "properties": { - "facing": "east" - }, - "id": 9601 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9525, "properties": { - "facing": "south" - }, - "id": 9602 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9526, "properties": { - "facing": "west" - }, - "id": 9603 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9527, "properties": { - "facing": "up" - }, - "id": 9604, - "default": true + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9528, "properties": { - "facing": "down" - }, - "id": 9605 - } - ] - }, - "minecraft:green_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 9529, "properties": { - "facing": "north" - }, - "id": 9606 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9530, "properties": { - "facing": "east" - }, - "id": 9607 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9531, "properties": { - "facing": "south" - }, - "id": 9608 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9532, "properties": { - "facing": "west" - }, - "id": 9609 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9533, "properties": { - "facing": "up" - }, - "id": 9610, - "default": true + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9534, "properties": { - "facing": "down" - }, - "id": 9611 - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 9535, "properties": { - "facing": "north" - }, - "id": 9612 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9536, "properties": { - "facing": "east" - }, - "id": 9613 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9537, "properties": { - "facing": "south" - }, - "id": 9614 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9538, "properties": { - "facing": "west" - }, - "id": 9615 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9539, "properties": { - "facing": "up" - }, - "id": 9616, - "default": true + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9540, "properties": { - "facing": "down" - }, - "id": 9617 - } - ] - }, - "minecraft:black_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 9541, "properties": { - "facing": "north" - }, - "id": 9618 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9542, "properties": { - "facing": "east" - }, - "id": 9619 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9543, "properties": { - "facing": "south" - }, - "id": 9620 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9544, "properties": { - "facing": "west" - }, - "id": 9621 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9545, "properties": { - "facing": "up" - }, - "id": 9622, - "default": true + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9546, "properties": { - "facing": "down" - }, - "id": 9623 - } - ] - }, - "minecraft:white_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 9547, "properties": { - "facing": "north" - }, - "id": 9624, - "default": true + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9548, "properties": { - "facing": "south" - }, - "id": 9625 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9549, "properties": { - "facing": "west" - }, - "id": 9626 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9550, "properties": { - "facing": "east" - }, - "id": 9627 - } - ] - }, - "minecraft:orange_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 9551, "properties": { - "facing": "north" - }, - "id": 9628, - "default": true + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9552, "properties": { - "facing": "south" - }, - "id": 9629 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9553, "properties": { - "facing": "west" - }, - "id": 9630 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 9554, "properties": { - "facing": "east" - }, - "id": 9631 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:magenta_glazed_terracotta": { + "minecraft:mangrove_fence_gate": { "properties": { "facing": [ "north", "south", "west", "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ] }, "states": [ { + "id": 9331, "properties": { - "facing": "north" - }, - "id": 9632, - "default": true + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9332, "properties": { - "facing": "south" - }, - "id": 9633 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9333, "properties": { - "facing": "west" - }, - "id": 9634 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9334, "properties": { - "facing": "east" - }, - "id": 9635 - } - ] - }, - "minecraft:light_blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, { + "id": 9335, "properties": { - "facing": "north" - }, - "id": 9636, - "default": true + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9336, "properties": { - "facing": "south" - }, - "id": 9637 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9337, "properties": { - "facing": "west" - }, - "id": 9638 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9338, "properties": { - "facing": "east" - }, - "id": 9639 - } - ] - }, - "minecraft:yellow_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, { + "id": 9339, "properties": { - "facing": "north" - }, - "id": 9640, - "default": true + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9340, "properties": { - "facing": "south" - }, - "id": 9641 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9341, "properties": { - "facing": "west" - }, - "id": 9642 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9342, "properties": { - "facing": "east" - }, - "id": 9643 - } - ] - }, - "minecraft:lime_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, { + "id": 9343, "properties": { - "facing": "north" - }, - "id": 9644, - "default": true + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9344, "properties": { - "facing": "south" - }, - "id": 9645 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9345, "properties": { - "facing": "west" - }, - "id": 9646 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9346, "properties": { - "facing": "east" - }, - "id": 9647 - } - ] - }, - "minecraft:pink_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, { + "id": 9347, "properties": { - "facing": "north" - }, - "id": 9648, - "default": true + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9348, "properties": { - "facing": "south" - }, - "id": 9649 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9349, "properties": { - "facing": "west" - }, - "id": 9650 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9350, "properties": { - "facing": "east" - }, - "id": 9651 - } - ] - }, - "minecraft:gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, { + "id": 9351, "properties": { - "facing": "north" - }, - "id": 9652, - "default": true + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9352, "properties": { - "facing": "south" - }, - "id": 9653 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9353, "properties": { - "facing": "west" - }, - "id": 9654 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9354, "properties": { - "facing": "east" - }, - "id": 9655 - } - ] - }, - "minecraft:light_gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, { + "id": 9355, "properties": { - "facing": "north" - }, - "id": 9656, - "default": true + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9356, "properties": { - "facing": "south" - }, - "id": 9657 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9357, "properties": { - "facing": "west" - }, - "id": 9658 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9358, "properties": { - "facing": "east" - }, - "id": 9659 - } - ] - }, - "minecraft:cyan_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, { + "id": 9359, "properties": { - "facing": "north" - }, - "id": 9660, - "default": true + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9360, "properties": { - "facing": "south" - }, - "id": 9661 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9361, "properties": { - "facing": "west" - }, - "id": 9662 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9362, "properties": { - "facing": "east" - }, - "id": 9663 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } } ] }, - "minecraft:purple_glazed_terracotta": { + "minecraft:mangrove_leaves": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { + "id": 374, "properties": { - "facing": "north" - }, - "id": 9664, - "default": true + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 375, "properties": { - "facing": "south" - }, - "id": 9665 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 376, "properties": { - "facing": "west" - }, - "id": 9666 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 377, "properties": { - "facing": "east" - }, - "id": 9667 - } - ] - }, - "minecraft:blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 378, "properties": { - "facing": "north" - }, - "id": 9668, - "default": true + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 379, "properties": { - "facing": "south" - }, - "id": 9669 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 380, "properties": { - "facing": "west" - }, - "id": 9670 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 381, "properties": { - "facing": "east" - }, - "id": 9671 - } - ] - }, - "minecraft:brown_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 382, "properties": { - "facing": "north" - }, - "id": 9672, - "default": true + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 383, "properties": { - "facing": "south" - }, - "id": 9673 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 384, "properties": { - "facing": "west" - }, - "id": 9674 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 385, "properties": { - "facing": "east" - }, - "id": 9675 - } - ] - }, - "minecraft:green_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 386, "properties": { - "facing": "north" - }, - "id": 9676, - "default": true + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 387, "properties": { - "facing": "south" - }, - "id": 9677 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 388, "properties": { - "facing": "west" - }, - "id": 9678 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 389, "properties": { - "facing": "east" - }, - "id": 9679 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 390, "properties": { - "facing": "north" - }, - "id": 9680, - "default": true + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 391, "properties": { - "facing": "south" - }, - "id": 9681 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 392, "properties": { - "facing": "west" - }, - "id": 9682 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 393, "properties": { - "facing": "east" - }, - "id": 9683 - } - ] - }, - "minecraft:black_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, { + "id": 394, "properties": { - "facing": "north" - }, - "id": 9684, - "default": true + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 395, "properties": { - "facing": "south" - }, - "id": 9685 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 396, "properties": { - "facing": "west" - }, - "id": 9686 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 397, "properties": { - "facing": "east" - }, - "id": 9687 - } - ] - }, - "minecraft:white_concrete": { - "states": [ + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, { - "id": 9688, - "default": true - } - ] - }, - "minecraft:orange_concrete": { - "states": [ + "id": 398, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, { - "id": 9689, - "default": true - } - ] - }, - "minecraft:magenta_concrete": { - "states": [ + "id": 399, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, { - "id": 9690, - "default": true - } - ] - }, - "minecraft:light_blue_concrete": { - "states": [ + "id": 400, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, { - "id": 9691, - "default": true + "default": true, + "id": 401, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } } ] }, - "minecraft:yellow_concrete": { + "minecraft:mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "id": 9692, - "default": true - } - ] - }, - "minecraft:lime_concrete": { - "states": [ + "id": 135, + "properties": { + "axis": "x" + } + }, { - "id": 9693, - "default": true - } - ] - }, - "minecraft:pink_concrete": { - "states": [ + "default": true, + "id": 136, + "properties": { + "axis": "y" + } + }, { - "id": 9694, - "default": true + "id": 137, + "properties": { + "axis": "z" + } } ] }, - "minecraft:gray_concrete": { + "minecraft:mangrove_planks": { "states": [ { - "id": 9695, - "default": true + "default": true, + "id": 21 } ] }, - "minecraft:light_gray_concrete": { + "minecraft:mangrove_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, "states": [ { - "id": 9696, - "default": true - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ + "id": 4190, + "properties": { + "powered": "true" + } + }, { - "id": 9697, - "default": true + "default": true, + "id": 4191, + "properties": { + "powered": "false" + } } ] }, - "minecraft:purple_concrete": { - "states": [ - { - "id": 9698, - "default": true - } - ] - }, - "minecraft:blue_concrete": { - "states": [ - { - "id": 9699, - "default": true - } - ] - }, - "minecraft:brown_concrete": { - "states": [ - { - "id": 9700, - "default": true - } - ] - }, - "minecraft:green_concrete": { - "states": [ - { - "id": 9701, - "default": true - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "id": 9702, - "default": true - } - ] - }, - "minecraft:black_concrete": { - "states": [ - { - "id": 9703, - "default": true - } - ] - }, - "minecraft:white_concrete_powder": { - "states": [ - { - "id": 9704, - "default": true - } - ] - }, - "minecraft:orange_concrete_powder": { - "states": [ - { - "id": 9705, - "default": true - } - ] - }, - "minecraft:magenta_concrete_powder": { - "states": [ - { - "id": 9706, - "default": true - } - ] - }, - "minecraft:light_blue_concrete_powder": { - "states": [ - { - "id": 9707, - "default": true - } - ] - }, - "minecraft:yellow_concrete_powder": { - "states": [ - { - "id": 9708, - "default": true - } - ] - }, - "minecraft:lime_concrete_powder": { - "states": [ - { - "id": 9709, - "default": true - } - ] - }, - "minecraft:pink_concrete_powder": { - "states": [ - { - "id": 9710, - "default": true - } - ] - }, - "minecraft:gray_concrete_powder": { - "states": [ - { - "id": 9711, - "default": true - } - ] - }, - "minecraft:light_gray_concrete_powder": { - "states": [ - { - "id": 9712, - "default": true - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ - { - "id": 9713, - "default": true - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "id": 9714, - "default": true - } - ] - }, - "minecraft:blue_concrete_powder": { - "states": [ - { - "id": 9715, - "default": true - } - ] - }, - "minecraft:brown_concrete_powder": { - "states": [ - { - "id": 9716, - "default": true - } - ] - }, - "minecraft:green_concrete_powder": { - "states": [ - { - "id": 9717, - "default": true - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ - { - "id": 9718, - "default": true - } - ] - }, - "minecraft:black_concrete_powder": { - "states": [ - { - "id": 9719, - "default": true - } - ] - }, - "minecraft:kelp": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, + "minecraft:mangrove_propagule": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, "states": [ { + "id": 34, "properties": { - "age": "0" - }, - "id": 9720, - "default": true + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 35, "properties": { - "age": "1" - }, - "id": 9721 + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 36, "properties": { - "age": "2" - }, - "id": 9722 + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 37, "properties": { - "age": "3" - }, - "id": 9723 + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 38, "properties": { - "age": "4" - }, - "id": 9724 + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 39, "properties": { - "age": "5" - }, - "id": 9725 + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 40, "properties": { - "age": "6" - }, - "id": 9726 + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 41, "properties": { - "age": "7" - }, - "id": 9727 + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 42, "properties": { - "age": "8" - }, - "id": 9728 + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 43, "properties": { - "age": "9" - }, - "id": 9729 + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 44, "properties": { - "age": "10" - }, - "id": 9730 + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 45, "properties": { - "age": "11" - }, - "id": 9731 + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 46, "properties": { - "age": "12" - }, - "id": 9732 + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 47, "properties": { - "age": "13" - }, - "id": 9733 + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 48, "properties": { - "age": "14" - }, - "id": 9734 + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 49, "properties": { - "age": "15" - }, - "id": 9735 + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 50, "properties": { - "age": "16" - }, - "id": 9736 + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 51, "properties": { - "age": "17" - }, - "id": 9737 + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 52, "properties": { - "age": "18" - }, - "id": 9738 + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 53, "properties": { - "age": "19" - }, - "id": 9739 + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 54, "properties": { - "age": "20" - }, - "id": 9740 + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 55, "properties": { - "age": "21" - }, - "id": 9741 + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 56, "properties": { - "age": "22" - }, - "id": 9742 + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 57, "properties": { - "age": "23" - }, - "id": 9743 + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 58, "properties": { - "age": "24" - }, - "id": 9744 + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 59, "properties": { - "age": "25" - }, - "id": 9745 - } - ] - }, - "minecraft:kelp_plant": { - "states": [ - { - "id": 9746, - "default": true - } - ] - }, - "minecraft:dried_kelp_block": { - "states": [ - { - "id": 9747, - "default": true - } - ] - }, - "minecraft:turtle_egg": { - "properties": { - "eggs": [ - "1", - "2", - "3", - "4" - ], - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, { + "id": 60, "properties": { - "eggs": "1", - "hatch": "0" - }, - "id": 9748, - "default": true + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 61, "properties": { - "eggs": "1", - "hatch": "1" - }, - "id": 9749 + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 62, "properties": { - "eggs": "1", - "hatch": "2" - }, - "id": 9750 + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 63, "properties": { - "eggs": "2", - "hatch": "0" - }, - "id": 9751 + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 64, "properties": { - "eggs": "2", - "hatch": "1" - }, - "id": 9752 + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 65, "properties": { - "eggs": "2", - "hatch": "2" - }, - "id": 9753 + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 66, "properties": { - "eggs": "3", - "hatch": "0" - }, - "id": 9754 + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 67, "properties": { - "eggs": "3", - "hatch": "1" - }, - "id": 9755 + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } }, { + "id": 68, "properties": { - "eggs": "3", - "hatch": "2" - }, - "id": 9756 + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } }, { + "id": 69, "properties": { - "eggs": "4", - "hatch": "0" - }, - "id": 9757 + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } }, { + "id": 70, "properties": { - "eggs": "4", - "hatch": "1" - }, - "id": 9758 + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } }, { + "id": 71, "properties": { - "eggs": "4", - "hatch": "2" - }, - "id": 9759 - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "id": 9760, - "default": true - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "id": 9761, - "default": true - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "id": 9762, - "default": true - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "id": 9763, - "default": true - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "id": 9764, - "default": true - } - ] - }, - "minecraft:tube_coral_block": { - "states": [ - { - "id": 9765, - "default": true - } - ] - }, - "minecraft:brain_coral_block": { - "states": [ - { - "id": 9766, - "default": true - } - ] - }, - "minecraft:bubble_coral_block": { - "states": [ - { - "id": 9767, - "default": true - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, { - "id": 9768, - "default": true - } - ] - }, - "minecraft:horn_coral_block": { - "states": [ + "id": 72, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, { - "id": 9769, - "default": true + "id": 73, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } } ] }, - "minecraft:dead_tube_coral": { + "minecraft:mangrove_roots": { "properties": { "waterlogged": [ "true", @@ -94928,22 +97627,40 @@ }, "states": [ { + "id": 138, "properties": { "waterlogged": "true" - }, - "id": 9770, - "default": true + } }, { + "default": true, + "id": 139, "properties": { "waterlogged": "false" - }, - "id": 9771 + } } ] }, - "minecraft:dead_brain_coral": { + "minecraft:mangrove_sign": { "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], "waterlogged": [ "true", "false" @@ -94951,367 +97668,239 @@ }, "states": [ { + "id": 3828, "properties": { + "rotation": "0", "waterlogged": "true" - }, - "id": 9772, - "default": true + } }, { + "default": true, + "id": 3829, "properties": { + "rotation": "0", "waterlogged": "false" - }, - "id": 9773 - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3830, "properties": { + "rotation": "1", "waterlogged": "true" - }, - "id": 9774, - "default": true + } }, { + "id": 3831, "properties": { + "rotation": "1", "waterlogged": "false" - }, - "id": 9775 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3832, "properties": { + "rotation": "2", "waterlogged": "true" - }, - "id": 9776, - "default": true + } }, { + "id": 3833, "properties": { + "rotation": "2", "waterlogged": "false" - }, - "id": 9777 - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3834, "properties": { + "rotation": "3", "waterlogged": "true" - }, - "id": 9778, - "default": true + } }, { + "id": 3835, "properties": { + "rotation": "3", "waterlogged": "false" - }, - "id": 9779 - } - ] - }, - "minecraft:tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3836, "properties": { + "rotation": "4", "waterlogged": "true" - }, - "id": 9780, - "default": true + } }, { + "id": 3837, "properties": { + "rotation": "4", "waterlogged": "false" - }, - "id": 9781 - } - ] - }, - "minecraft:brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3838, "properties": { + "rotation": "5", "waterlogged": "true" - }, - "id": 9782, - "default": true + } }, { + "id": 3839, "properties": { + "rotation": "5", "waterlogged": "false" - }, - "id": 9783 - } - ] - }, - "minecraft:bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3840, "properties": { + "rotation": "6", "waterlogged": "true" - }, - "id": 9784, - "default": true + } }, { + "id": 3841, "properties": { + "rotation": "6", "waterlogged": "false" - }, - "id": 9785 - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3842, "properties": { + "rotation": "7", "waterlogged": "true" - }, - "id": 9786, - "default": true + } }, { + "id": 3843, "properties": { + "rotation": "7", "waterlogged": "false" - }, - "id": 9787 - } - ] - }, - "minecraft:horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3844, "properties": { + "rotation": "8", "waterlogged": "true" - }, - "id": 9788, - "default": true + } }, { + "id": 3845, "properties": { + "rotation": "8", "waterlogged": "false" - }, - "id": 9789 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3846, "properties": { + "rotation": "9", "waterlogged": "true" - }, - "id": 9790, - "default": true + } }, { + "id": 3847, "properties": { + "rotation": "9", "waterlogged": "false" - }, - "id": 9791 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3848, "properties": { + "rotation": "10", "waterlogged": "true" - }, - "id": 9792, - "default": true + } }, { + "id": 3849, "properties": { + "rotation": "10", "waterlogged": "false" - }, - "id": 9793 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3850, "properties": { + "rotation": "11", "waterlogged": "true" - }, - "id": 9794, - "default": true + } }, { + "id": 3851, "properties": { + "rotation": "11", "waterlogged": "false" - }, - "id": 9795 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3852, "properties": { + "rotation": "12", "waterlogged": "true" - }, - "id": 9796, - "default": true + } }, { + "id": 3853, "properties": { + "rotation": "12", "waterlogged": "false" - }, - "id": 9797 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3854, "properties": { + "rotation": "13", "waterlogged": "true" - }, - "id": 9798, - "default": true + } }, { + "id": 3855, "properties": { + "rotation": "13", "waterlogged": "false" - }, - "id": 9799 - } - ] - }, - "minecraft:tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3856, "properties": { + "rotation": "14", "waterlogged": "true" - }, - "id": 9800, - "default": true + } }, { + "id": 3857, "properties": { + "rotation": "14", "waterlogged": "false" - }, - "id": 9801 - } - ] - }, - "minecraft:brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 3858, "properties": { + "rotation": "15", "waterlogged": "true" - }, - "id": 9802, - "default": true + } }, { + "id": 3859, "properties": { + "rotation": "15", "waterlogged": "false" - }, - "id": 9803 + } } ] }, - "minecraft:bubble_coral_fan": { + "minecraft:mangrove_slab": { "properties": { + "type": [ + "top", + "bottom", + "double" + ], "waterlogged": [ "true", "false" @@ -95319,67 +97908,51 @@ }, "states": [ { + "id": 9077, "properties": { + "type": "top", "waterlogged": "true" - }, - "id": 9804, - "default": true + } }, { + "id": 9078, "properties": { + "type": "top", "waterlogged": "false" - }, - "id": 9805 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 9079, "properties": { + "type": "bottom", "waterlogged": "true" - }, - "id": 9806, - "default": true + } }, { + "default": true, + "id": 9080, "properties": { + "type": "bottom", "waterlogged": "false" - }, - "id": 9807 - } - ] - }, - "minecraft:horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 9081, "properties": { + "type": "double", "waterlogged": "true" - }, - "id": 9808, - "default": true + } }, { + "id": 9082, "properties": { + "type": "double", "waterlogged": "false" - }, - "id": 9809 + } } ] }, - "minecraft:dead_tube_coral_wall_fan": { + "minecraft:mangrove_stairs": { "properties": { "facing": [ "north", @@ -95387,6 +97960,17 @@ "west", "east" ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], "waterlogged": [ "true", "false" @@ -95394,997 +97978,729 @@ }, "states": [ { + "id": 8164, "properties": { "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 9810, - "default": true + } }, { + "id": 8165, "properties": { "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 9811 + } }, { + "id": 8166, "properties": { - "facing": "south", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9812 + } }, { + "id": 8167, "properties": { - "facing": "south", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9813 + } }, { + "id": 8168, "properties": { - "facing": "west", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9814 + } }, { + "id": 8169, "properties": { - "facing": "west", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9815 + } }, { + "id": 8170, "properties": { - "facing": "east", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9816 + } }, { + "id": 8171, "properties": { - "facing": "east", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9817 - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8172, "properties": { "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9818, - "default": true + } }, { + "id": 8173, "properties": { "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9819 + } }, { + "id": 8174, "properties": { - "facing": "south", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 9820 + } }, { + "default": true, + "id": 8175, "properties": { - "facing": "south", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 9821 + } }, { + "id": 8176, "properties": { - "facing": "west", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9822 + } }, { + "id": 8177, "properties": { - "facing": "west", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9823 + } }, { + "id": 8178, "properties": { - "facing": "east", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9824 + } }, { + "id": 8179, "properties": { - "facing": "east", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9825 - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8180, "properties": { "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9826, - "default": true + } }, { + "id": 8181, "properties": { "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9827 + } }, { + "id": 8182, "properties": { - "facing": "south", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9828 + } }, { + "id": 8183, "properties": { - "facing": "south", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9829 + } }, { + "id": 8184, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 9830 + } }, { + "id": 8185, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 9831 + } }, { + "id": 8186, "properties": { - "facing": "east", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9832 + } }, { + "id": 8187, "properties": { - "facing": "east", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9833 - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8188, "properties": { - "facing": "north", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9834, - "default": true + } }, { + "id": 8189, "properties": { - "facing": "north", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9835 + } }, { + "id": 8190, "properties": { "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9836 + } }, { + "id": 8191, "properties": { "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9837 + } }, { + "id": 8192, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9838 + } }, { + "id": 8193, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9839 + } }, { + "id": 8194, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 9840 + } }, { + "id": 8195, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 9841 - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8196, "properties": { - "facing": "north", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9842, - "default": true + } }, { + "id": 8197, "properties": { - "facing": "north", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9843 + } }, { + "id": 8198, "properties": { "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9844 + } }, { + "id": 8199, "properties": { "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9845 + } }, { + "id": 8200, "properties": { - "facing": "west", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9846 + } }, { + "id": 8201, "properties": { - "facing": "west", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9847 + } }, { + "id": 8202, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9848 + } }, { + "id": 8203, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9849 - } - ] - }, - "minecraft:tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8204, "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 9850, - "default": true + } }, { + "id": 8205, "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 9851 + } }, { + "id": 8206, "properties": { - "facing": "south", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9852 + } }, { + "id": 8207, "properties": { - "facing": "south", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9853 + } }, { + "id": 8208, "properties": { "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9854 + } }, { + "id": 8209, "properties": { "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9855 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 9856 + } }, { + "id": 8210, "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 9857 - } - ] - }, - "minecraft:brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9858, - "default": true + } }, { + "id": 8211, "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9859 + } }, { + "id": 8212, "properties": { - "facing": "south", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9860 + } }, { + "id": 8213, "properties": { - "facing": "south", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9861 + } }, { + "id": 8214, "properties": { "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 9862 + } }, { + "id": 8215, "properties": { "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 9863 + } }, { + "id": 8216, "properties": { - "facing": "east", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9864 + } }, { + "id": 8217, "properties": { - "facing": "east", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9865 - } - ] - }, - "minecraft:bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 8218, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9866, - "default": true + } }, { + "id": 8219, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9867 + } }, { + "id": 8220, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9868 + } }, { + "id": 8221, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9869 + } }, { + "id": 8222, "properties": { "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9870 + } }, { + "id": 8223, "properties": { "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9871 + } }, { + "id": 8224, "properties": { "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 9872 + } }, { + "id": 8225, "properties": { "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 9873 - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9874, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9875 + } }, { + "id": 8226, "properties": { - "facing": "south", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9876 + } }, { + "id": 8227, "properties": { - "facing": "south", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9877 + } }, { + "id": 8228, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9878 + } }, { + "id": 8229, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9879 + } }, { + "id": 8230, "properties": { "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9880 + } }, { + "id": 8231, "properties": { "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9881 - } - ] - }, - "minecraft:horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 9882, - "default": true - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 9883 + } }, { + "id": 8232, "properties": { - "facing": "south", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9884 + } }, { + "id": 8233, "properties": { - "facing": "south", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9885 + } }, { + "id": 8234, "properties": { - "facing": "west", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 9886 + } }, { + "id": 8235, "properties": { - "facing": "west", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 9887 + } }, { + "id": 8236, "properties": { "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 9888 + } }, { + "id": 8237, "properties": { "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 9889 - } - ] - }, - "minecraft:sea_pickle": { - "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "pickles": "1", - "waterlogged": "true" - }, - "id": 9890, - "default": true - }, - { - "properties": { - "pickles": "1", - "waterlogged": "false" - }, - "id": 9891 + } }, { + "id": 8238, "properties": { - "pickles": "2", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 9892 + } }, { + "id": 8239, "properties": { - "pickles": "2", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 9893 + } }, { + "id": 8240, "properties": { - "pickles": "3", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 9894 + } }, { + "id": 8241, "properties": { - "pickles": "3", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 9895 - }, - { - "properties": { - "pickles": "4", - "waterlogged": "true" - }, - "id": 9896 + } }, { + "id": 8242, "properties": { - "pickles": "4", - "waterlogged": "false" - }, - "id": 9897 - } - ] - }, - "minecraft:blue_ice": { - "states": [ - { - "id": 9898, - "default": true - } - ] - }, - "minecraft:conduit": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 9899, - "default": true + } }, { + "id": 8243, "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 9900 - } - ] - }, - "minecraft:bamboo_sapling": { - "states": [ - { - "id": 9901, - "default": true - } - ] - }, - "minecraft:bamboo": { - "properties": { - "age": [ - "0", - "1" - ], - "leaves": [ - "none", - "small", - "large" - ], - "stage": [ - "0", - "1" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "0" - }, - "id": 9902, - "default": true - }, - { - "properties": { - "age": "0", - "leaves": "none", - "stage": "1" - }, - "id": 9903 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "0" - }, - "id": 9904 - }, - { - "properties": { - "age": "0", - "leaves": "small", - "stage": "1" - }, - "id": 9905 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "0" - }, - "id": 9906 - }, - { - "properties": { - "age": "0", - "leaves": "large", - "stage": "1" - }, - "id": 9907 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "0" - }, - "id": 9908 - }, - { - "properties": { - "age": "1", - "leaves": "none", - "stage": "1" - }, - "id": 9909 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "0" - }, - "id": 9910 - }, - { - "properties": { - "age": "1", - "leaves": "small", - "stage": "1" - }, - "id": 9911 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "0" - }, - "id": 9912 - }, - { - "properties": { - "age": "1", - "leaves": "large", - "stage": "1" - }, - "id": 9913 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "id": 9914, - "default": true - } - ] - }, - "minecraft:void_air": { - "states": [ - { - "id": 9915, - "default": true - } - ] - }, - "minecraft:cave_air": { - "states": [ - { - "id": 9916, - "default": true - } - ] - }, - "minecraft:bubble_column": { - "properties": { - "drag": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "drag": "true" - }, - "id": 9917, - "default": true - }, - { - "properties": { - "drag": "false" - }, - "id": 9918 + } } ] }, - "minecraft:polished_granite_stairs": { + "minecraft:mangrove_trapdoor": { "properties": { "facing": [ "north", @@ -96396,12 +98712,13 @@ "top", "bottom" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -96410,729 +98727,1010 @@ }, "states": [ { + "id": 4804, "properties": { "facing": "north", "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9919 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 9920 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9921 + } }, { + "id": 4805, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9922 + } }, { + "id": 4806, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9923 + } }, { + "id": 4807, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9924 + } }, { + "id": 4808, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9925 + } }, { + "id": 4809, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9926 + } }, { + "id": 4810, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9927 + } }, { + "id": 4811, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9928 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9929 - }, - { - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9930, - "default": true + } }, { + "id": 4812, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9931 + } }, { + "id": 4813, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9932 + } }, { + "id": 4814, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9933 + } }, { + "id": 4815, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9934 + } }, { + "id": 4816, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9935 + } }, { + "id": 4817, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9936 + } }, { + "id": 4818, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9937 + } }, { + "default": true, + "id": 4819, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9938 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9939 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9940 + } }, { + "id": 4820, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9941 + } }, { + "id": 4821, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9942 + } }, { + "id": 4822, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9943 + } }, { + "id": 4823, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9944 + } }, { + "id": 4824, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9945 + } }, { + "id": 4825, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9946 + } }, { + "id": 4826, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9947 + } }, { + "id": 4827, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9948 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9949 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9950 + } }, { + "id": 4828, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9951 + } }, { + "id": 4829, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9952 + } }, { + "id": 4830, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9953 + } }, { + "id": 4831, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9954 + } }, { + "id": 4832, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9955 + } }, { + "id": 4833, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9956 + } }, { + "id": 4834, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9957 + } }, { + "id": 4835, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 9958 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 9959 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9960 + } }, { + "id": 4836, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9961 + } }, { + "id": 4837, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9962 + } }, { + "id": 4838, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9963 + } }, { + "id": 4839, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9964 + } }, { + "id": 4840, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9965 + } }, { + "id": 4841, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9966 + } }, { + "id": 4842, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9967 + } }, { + "id": 4843, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9968 + } }, { + "id": 4844, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9969 + } }, { + "id": 4845, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9970 + } }, { + "id": 4846, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9971 + } }, { + "id": 4847, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9972 + } }, { + "id": 4848, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9973 + } }, { + "id": 4849, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9974 + } }, { + "id": 4850, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9975 + } }, { + "id": 4851, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9976 + } }, { + "id": 4852, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9977 + } }, { + "id": 4853, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9978 + } }, { + "id": 4854, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9979 + } }, { + "id": 4855, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9980 + } }, { + "id": 4856, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9981 + } }, { + "id": 4857, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9982 + } }, { + "id": 4858, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9983 + } }, { + "id": 4859, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 9984 + } }, { + "id": 4860, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 9985 + } }, { + "id": 4861, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 9986 + } }, { + "id": 4862, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 9987 + } }, { + "id": 4863, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 9988 + } }, { + "id": 4864, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 9989 + } }, { + "id": 4865, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 9990 + } }, { + "id": 4866, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 9991 + } }, { + "id": 4867, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4080, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4081, + "properties": { + "facing": "north", "waterlogged": "false" - }, - "id": 9992 + } }, { + "id": 4082, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "true" - }, - "id": 9993 + } }, { + "id": 4083, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "false" - }, - "id": 9994 + } }, { + "id": 4084, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4085, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4086, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_left", "waterlogged": "true" - }, - "id": 9995 + } }, { + "id": 4087, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_left", "waterlogged": "false" - }, - "id": 9996 + } + } + ] + }, + "minecraft:mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 182, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 183, + "properties": { + "axis": "y" + } + }, + { + "id": 184, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18645, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 18646, + "properties": { + "facing": "north", + "waterlogged": "false" + } }, { + "id": 18647, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "true" - }, - "id": 9997 + } }, { + "id": 18648, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "false" - }, - "id": 9998 + } + }, + { + "id": 18649, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 18650, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 18651, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 18652, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 18653, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18654, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 18655, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 18656, + "properties": { + "facing": "down", + "waterlogged": "false" + } } ] }, - "minecraft:smooth_red_sandstone_stairs": { + "minecraft:melon": { + "states": [ + { + "default": true, + "id": 5142 + } + ] + }, + "minecraft:melon_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5159, + "properties": { + "age": "0" + } + }, + { + "id": 5160, + "properties": { + "age": "1" + } + }, + { + "id": 5161, + "properties": { + "age": "2" + } + }, + { + "id": 5162, + "properties": { + "age": "3" + } + }, + { + "id": 5163, + "properties": { + "age": "4" + } + }, + { + "id": 5164, + "properties": { + "age": "5" + } + }, + { + "id": 5165, + "properties": { + "age": "6" + } + }, + { + "id": 5166, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "states": [ + { + "default": true, + "id": 19717 + } + ] + }, + "minecraft:moss_carpet": { + "states": [ + { + "default": true, + "id": 19716 + } + ] + }, + "minecraft:mossy_cobblestone": { + "states": [ + { + "default": true, + "id": 1687 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11694, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11695, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11696, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11697, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11698, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11699, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { "properties": { "facing": [ "north", @@ -97158,3721 +99756,4386 @@ }, "states": [ { + "id": 10870, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 9999 + } }, { + "id": 10871, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10000 + } }, { + "id": 10872, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10001 + } }, { + "id": 10873, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10002 + } }, { + "id": 10874, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10003 + } }, { + "id": 10875, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10004 + } }, { + "id": 10876, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10005 + } }, { + "id": 10877, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10006 + } }, { + "id": 10878, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10007 + } }, { + "id": 10879, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10008 + } }, { + "id": 10880, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10009 + } }, { + "default": true, + "id": 10881, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10010, - "default": true + } }, { + "id": 10882, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10011 + } }, { + "id": 10883, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10012 + } }, { + "id": 10884, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10013 + } }, { + "id": 10885, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10014 + } }, { + "id": 10886, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10015 + } }, { + "id": 10887, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10016 + } }, { + "id": 10888, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10017 + } }, { + "id": 10889, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10018 + } }, { + "id": 10890, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10019 + } }, { + "id": 10891, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10020 + } }, { + "id": 10892, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10021 + } }, { + "id": 10893, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10022 + } }, { + "id": 10894, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10023 + } }, { + "id": 10895, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10024 + } }, { + "id": 10896, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10025 + } }, { + "id": 10897, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10026 + } }, { + "id": 10898, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10027 + } }, { + "id": 10899, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10028 + } }, { + "id": 10900, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10029 + } }, { + "id": 10901, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10030 + } }, { + "id": 10902, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10031 + } }, { + "id": 10903, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10032 + } }, { + "id": 10904, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10033 + } }, { + "id": 10905, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10034 + } }, { + "id": 10906, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10035 + } }, { + "id": 10907, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10036 + } }, { + "id": 10908, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10037 + } }, { + "id": 10909, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10038 + } }, { + "id": 10910, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10039 + } }, { + "id": 10911, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10040 + } }, { + "id": 10912, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10041 + } }, { + "id": 10913, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10042 + } }, { + "id": 10914, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10043 + } }, { + "id": 10915, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10044 + } }, { + "id": 10916, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10045 + } }, { + "id": 10917, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10046 + } }, { + "id": 10918, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10047 + } }, { + "id": 10919, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10048 + } }, { + "id": 10920, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10049 + } }, { + "id": 10921, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10050 + } }, { + "id": 10922, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10051 + } }, { + "id": 10923, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10052 + } }, { + "id": 10924, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10053 + } }, { + "id": 10925, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10054 + } }, { + "id": 10926, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10055 + } }, { + "id": 10927, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10056 + } }, { + "id": 10928, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10057 + } }, { + "id": 10929, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10058 + } }, { + "id": 10930, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10059 + } }, { + "id": 10931, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10060 + } }, { + "id": 10932, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10061 + } }, { + "id": 10933, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10062 + } }, { + "id": 10934, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10063 + } }, { + "id": 10935, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10064 + } }, { + "id": 10936, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10065 + } }, { + "id": 10937, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10066 + } }, { + "id": 10938, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10067 + } }, { + "id": 10939, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10068 + } }, { + "id": 10940, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10069 + } }, { + "id": 10941, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10070 + } }, { + "id": 10942, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10071 + } }, { + "id": 10943, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10072 + } }, { + "id": 10944, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10073 + } }, { + "id": 10945, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10074 + } }, { + "id": 10946, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10075 + } }, { + "id": 10947, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10076 + } }, { + "id": 10948, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10077 + } }, { + "id": 10949, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10078 + } } ] }, - "minecraft:mossy_stone_brick_stairs": { + "minecraft:mossy_cobblestone_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 6573, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10079 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6574, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10080 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6575, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10081 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 6576, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10082 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6577, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10083 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6578, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10084 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6579, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10085 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6580, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10086 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6581, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10087 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6582, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10088 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6583, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10089 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6584, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10090, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6585, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10091 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6586, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10092 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6587, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10093 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6588, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10094 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6589, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10095 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6590, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10096 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6591, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10097 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6592, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10098 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6593, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10099 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6594, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10100 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6595, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10101 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6596, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10102 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6597, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10103 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6598, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10104 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6599, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10105 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6600, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10106 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6601, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10107 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6602, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10108 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6603, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10109 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6604, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10110 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6605, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10111 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6606, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10112 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6607, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10113 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6608, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10114 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6609, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10115 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6610, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10116 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6611, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10117 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6612, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10118 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6613, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10119 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6614, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10120 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6615, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10121 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6616, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10122 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6617, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10123 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6618, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10124 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6619, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10125 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6620, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10126 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6621, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10127 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6622, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10128 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6623, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10129 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6624, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10130 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6625, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10131 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6626, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10132 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6627, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10133 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6628, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10134 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6629, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10135 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6630, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10136 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6631, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10137 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6632, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10138 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6633, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10139 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6634, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10140 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6635, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10141 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6636, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10142 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6637, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10143 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6638, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10144 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6639, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10145 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6640, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10146 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6641, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10147 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6642, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10148 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6643, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10149 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6644, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10150 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6645, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10151 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6646, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10152 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6647, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10153 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6648, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10154 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6649, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10155 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6650, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10156 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6651, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10157 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6652, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10158 - } - ] - }, - "minecraft:polished_diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 6653, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10159 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6654, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10160 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6655, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10161 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6656, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10162 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6657, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10163 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6658, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10164 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6659, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10165 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6660, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10166 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6661, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10167 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6662, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10168 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6663, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10169 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6664, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10170, - "default": true + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6665, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10171 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6666, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10172 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6667, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10173 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6668, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10174 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6669, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10175 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6670, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10176 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6671, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10177 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6672, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10178 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6673, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10179 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6674, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10180 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6675, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10181 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6676, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10182 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6677, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10183 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6678, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10184 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6679, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10185 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6680, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10186 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6681, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10187 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6682, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10188 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6683, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10189 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6684, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10190 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6685, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10191 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6686, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10192 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6687, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10193 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6688, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10194 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6689, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10195 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6690, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10196 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6691, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10197 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6692, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10198 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6693, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10199 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6694, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10200 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6695, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10201 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6696, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10202 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6697, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10203 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6698, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10204 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6699, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10205 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6700, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10206 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6701, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10207 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6702, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10208 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6703, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10209 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6704, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10210 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6705, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10211 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6706, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10212 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6707, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10213 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6708, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10214 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6709, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10215 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6710, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10216 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6711, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10217 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6712, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10218 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6713, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10219 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6714, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10220 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6715, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10221 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6716, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10222 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6717, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10223 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6718, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10224 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6719, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10225 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6720, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10226 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6721, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10227 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6722, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10228 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6723, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10229 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6724, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10230 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6725, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10231 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6726, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10232 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6727, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10233 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6728, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10234 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6729, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10235 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6730, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10236 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6731, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10237 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6732, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10238 - } - ] - }, - "minecraft:mossy_cobblestone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10239 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6733, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10240 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6734, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10241 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6735, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10242 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6736, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10243 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6737, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10244 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6738, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10245 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6739, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10246 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6740, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10247 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6741, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10248 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6742, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10249 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6743, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10250, - "default": true + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6744, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10251 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6745, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10252 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6746, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10253 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6747, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10254 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6748, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10255 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6749, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10256 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6750, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10257 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6751, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10258 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6752, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10259 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6753, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10260 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6754, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10261 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6755, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10262 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6756, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10263 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6757, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10264 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6758, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10265 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6759, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10266 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6760, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10267 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6761, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10268 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6762, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10269 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6763, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10270 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6764, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10271 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6765, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10272 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6766, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10273 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6767, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10274 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6768, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10275 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6769, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10276 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6770, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10277 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6771, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10278 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6772, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10279 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6773, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10280 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6774, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10281 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6775, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10282 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6776, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10283 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6777, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10284 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6778, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10285 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6779, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10286 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6780, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10287 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6781, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10288 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6782, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10289 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6783, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10290 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6784, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10291 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6785, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10292 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6786, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10293 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6787, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10294 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6788, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10295 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6789, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10296 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6790, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10297 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6791, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10298 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6792, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10299 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6793, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10300 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6794, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10301 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6795, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10302 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6796, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10303 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6797, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10304 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6798, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10305 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6799, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10306 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6800, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10307 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6801, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10308 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6802, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10309 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6803, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10310 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6804, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10311 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6805, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10312 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6806, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10313 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6807, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10314 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6808, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10315 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6809, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10316 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6810, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10317 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6811, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10318 - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10319 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6812, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10320 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6813, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10321 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6814, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10322 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6815, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10323 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6816, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10324 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6817, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10325 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6818, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10326 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6819, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10327 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6820, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10328 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6821, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10329 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6822, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10330, - "default": true + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6823, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10331 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6824, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10332 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6825, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10333 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6826, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10334 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6827, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10335 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6828, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10336 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6829, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10337 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6830, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10338 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6831, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10339 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6832, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10340 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6833, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10341 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6834, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10342 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6835, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10343 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6836, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10344 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6837, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10345 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6838, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10346 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6839, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10347 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6840, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10348 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6841, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10349 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6842, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10350 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6843, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10351 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6844, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10352 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6845, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10353 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6846, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10354 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6847, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10355 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6848, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10356 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6849, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10357 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6850, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10358 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6851, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10359 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6852, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10360 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6853, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10361 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6854, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10362 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6855, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10363 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6856, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10364 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6857, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10365 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6858, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10366 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6859, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10367 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6860, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10368 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6861, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10369 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6862, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10370 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6863, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10371 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6864, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10372 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6865, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10373 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6866, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10374 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6867, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10375 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6868, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10376 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6869, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10377 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6870, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10378 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6871, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10379 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6872, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10380 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6873, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10381 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6874, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10382 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6875, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10383 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6876, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10384 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6877, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10385 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6878, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10386 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6879, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10387 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 6880, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10388 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 6881, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10389 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 6882, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10390 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 6883, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10391 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 6884, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10392 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 6885, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6886, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6887, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6888, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6889, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6890, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 6891, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 6892, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 6893, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 6894, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 6895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 6896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11682, + "properties": { + "type": "top", "waterlogged": "true" - }, - "id": 10393 + } }, { + "id": 11683, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "type": "top", "waterlogged": "false" - }, - "id": 10394 + } }, { + "id": 11684, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 10395 + } }, { + "default": true, + "id": 11685, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 10396 + } }, { + "id": 11686, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "true" - }, - "id": 10397 + } }, { + "id": 11687, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "false" - }, - "id": 10398 + } } ] }, - "minecraft:stone_stairs": { + "minecraft:mossy_stone_brick_stairs": { "properties": { "facing": [ "north", @@ -100898,3721 +104161,4505 @@ }, "states": [ { + "id": 10710, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10399 + } }, { + "id": 10711, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10400 + } }, { + "id": 10712, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10401 + } }, { + "id": 10713, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10402 + } }, { + "id": 10714, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10403 + } }, { + "id": 10715, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10404 + } }, { + "id": 10716, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10405 + } }, { + "id": 10717, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10406 + } }, { + "id": 10718, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10407 + } }, { + "id": 10719, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10408 + } }, { + "id": 10720, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10409 + } }, { + "default": true, + "id": 10721, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10410, - "default": true + } }, { + "id": 10722, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10411 + } }, { + "id": 10723, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10412 + } }, { + "id": 10724, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10413 + } }, { + "id": 10725, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10414 + } }, { + "id": 10726, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10415 + } }, { + "id": 10727, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10416 + } }, { + "id": 10728, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10417 + } }, { + "id": 10729, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10418 + } }, { + "id": 10730, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10419 + } }, { + "id": 10731, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10420 + } }, { + "id": 10732, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10421 + } }, { + "id": 10733, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10422 + } }, { + "id": 10734, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10423 + } }, { + "id": 10735, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10424 + } }, { + "id": 10736, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10425 + } }, { + "id": 10737, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10426 + } }, { + "id": 10738, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10427 + } }, { + "id": 10739, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10428 + } }, { + "id": 10740, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10429 + } }, { + "id": 10741, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10430 + } }, { + "id": 10742, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10431 + } }, { + "id": 10743, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10432 + } }, { + "id": 10744, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10433 + } }, { + "id": 10745, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10434 + } }, { + "id": 10746, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10435 + } }, { + "id": 10747, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10436 + } }, { + "id": 10748, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10437 + } }, { + "id": 10749, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10438 + } }, { + "id": 10750, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10439 + } }, { + "id": 10751, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10440 + } }, { + "id": 10752, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10441 + } }, { + "id": 10753, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10442 + } }, { + "id": 10754, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10443 + } }, { + "id": 10755, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10444 + } }, { + "id": 10756, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10445 + } }, { + "id": 10757, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10446 + } }, { + "id": 10758, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10447 + } }, { + "id": 10759, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10448 + } }, { + "id": 10760, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10449 + } }, { + "id": 10761, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10450 + } }, { + "id": 10762, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10451 + } }, { + "id": 10763, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10452 + } }, { + "id": 10764, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10453 + } }, { + "id": 10765, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10454 + } }, { + "id": 10766, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10455 + } }, { + "id": 10767, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10456 + } }, { + "id": 10768, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10457 + } }, { + "id": 10769, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10458 + } }, { + "id": 10770, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10459 + } }, { + "id": 10771, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10460 + } }, { + "id": 10772, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10461 + } }, { + "id": 10773, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10462 + } }, { + "id": 10774, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10463 + } }, { + "id": 10775, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10464 + } }, { + "id": 10776, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10465 + } }, { + "id": 10777, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10466 + } }, { + "id": 10778, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10467 + } }, { + "id": 10779, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10468 + } }, { + "id": 10780, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10469 + } }, { + "id": 10781, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10470 + } }, { + "id": 10782, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10471 + } }, { + "id": 10783, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10472 + } }, { + "id": 10784, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10473 + } }, { + "id": 10785, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10474 + } }, { + "id": 10786, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10475 + } }, { + "id": 10787, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10476 + } }, { + "id": 10788, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10477 + } }, { + "id": 10789, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10478 + } } ] }, - "minecraft:smooth_sandstone_stairs": { + "minecraft:mossy_stone_brick_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 12720, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10479 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12721, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10480 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12722, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10481 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 12723, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10482 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12724, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10483 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12725, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10484 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12726, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10485 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12727, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10486 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12728, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10487 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12729, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10488 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12730, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10489 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12731, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10490, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12732, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10491 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12733, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10492 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12734, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10493 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12735, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10494 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12736, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10495 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12737, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10496 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12738, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10497 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12739, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10498 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12740, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10499 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12741, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10500 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12742, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10501 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12743, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10502 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12744, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10503 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12745, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10504 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12746, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10505 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12747, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10506 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12748, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10507 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12749, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10508 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12750, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10509 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12751, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10510 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12752, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10511 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12753, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10512 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12754, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10513 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12755, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10514 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12756, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10515 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12757, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10516 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12758, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10517 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12759, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10518 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12760, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10519 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12761, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10520 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12762, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10521 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12763, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10522 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12764, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10523 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12765, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10524 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12766, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10525 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12767, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10526 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12768, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10527 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12769, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10528 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12770, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10529 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12771, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10530 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12772, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10531 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12773, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10532 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12774, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10533 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12775, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10534 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12776, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10535 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12777, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10536 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12778, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10537 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12779, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10538 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12780, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10539 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12781, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10540 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12782, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10541 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12783, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10542 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12784, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10543 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12785, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10544 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12786, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10545 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12787, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10546 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12788, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10547 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12789, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10548 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12790, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10549 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12791, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10550 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12792, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10551 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12793, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10552 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12794, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10553 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12795, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10554 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12796, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10555 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12797, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10556 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12798, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10557 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12799, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10558 - } - ] - }, - "minecraft:smooth_quartz_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 12800, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10559 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12801, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10560 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12802, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10561 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12803, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10562 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12804, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10563 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12805, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10564 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12806, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10565 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12807, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10566 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12808, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10567 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12809, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10568 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12810, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10569 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12811, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10570, - "default": true + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12812, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10571 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12813, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10572 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12814, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10573 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12815, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10574 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12816, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10575 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12817, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10576 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12818, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10577 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12819, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10578 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12820, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10579 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12821, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10580 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12822, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10581 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12823, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10582 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12824, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10583 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12825, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10584 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12826, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10585 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12827, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10586 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12828, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10587 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12829, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10588 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12830, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10589 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12831, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10590 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12832, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10591 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12833, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10592 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12834, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10593 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12835, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10594 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12836, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10595 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12837, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10596 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12838, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10597 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12839, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10598 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12840, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10599 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12841, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10600 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12842, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10601 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12843, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10602 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12844, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10603 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12845, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10604 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12846, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10605 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12847, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10606 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12848, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10607 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12849, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10608 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12850, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10609 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12851, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10610 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12852, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10611 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12853, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10612 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12854, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10613 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12855, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10614 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12856, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10615 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12857, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10616 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12858, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10617 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12859, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10618 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12860, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10619 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12861, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10620 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12862, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10621 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12863, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10622 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12864, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10623 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12865, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10624 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12866, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10625 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12867, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10626 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12868, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10627 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12869, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10628 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12870, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10629 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12871, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10630 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12872, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10631 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12873, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10632 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12874, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10633 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12875, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10634 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12876, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10635 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12877, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10636 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12878, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10637 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12879, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10638 - } - ] - }, - "minecraft:granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 12880, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10639 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12881, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10640 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12882, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10641 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12883, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10642 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12884, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10643 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12885, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10644 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12886, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10645 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12887, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10646 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12888, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10647 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12889, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10648 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12890, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10649 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12891, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10650, - "default": true + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12892, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10651 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12893, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10652 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12894, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10653 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12895, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10654 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12896, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10655 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12897, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10656 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12898, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10657 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12899, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10658 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12900, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10659 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12901, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10660 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12902, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10661 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12903, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10662 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12904, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10663 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12905, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10664 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12906, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10665 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12907, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10666 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12908, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10667 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12909, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10668 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12910, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10669 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12911, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10670 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12912, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10671 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12913, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10672 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12914, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10673 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12915, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10674 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12916, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10675 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12917, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10676 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12918, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10677 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12919, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10678 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12920, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10679 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12921, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10680 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12922, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10681 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12923, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10682 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12924, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10683 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12925, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10684 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12926, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10685 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12927, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10686 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12928, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10687 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12929, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10688 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12930, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10689 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12931, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10690 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12932, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10691 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12933, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10692 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12934, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10693 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12935, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10694 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12936, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10695 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12937, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10696 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12938, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10697 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12939, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10698 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12940, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10699 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12941, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10700 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12942, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10701 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12943, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10702 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12944, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10703 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12945, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10704 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12946, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10705 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12947, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10706 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12948, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10707 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12949, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10708 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12950, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10709 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12951, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10710 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12952, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10711 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12953, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10712 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12954, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10713 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12955, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10714 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12956, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10715 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12957, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10716 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12958, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10717 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12959, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10718 - } - ] - }, - "minecraft:andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10719 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12960, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10720 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12961, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10721 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12962, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10722 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12963, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10723 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12964, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10724 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12965, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10725 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12966, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10726 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12967, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10727 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12968, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10728 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12969, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10729 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12970, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10730, - "default": true + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12971, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10731 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12972, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10732 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12973, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10733 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12974, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10734 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12975, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10735 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12976, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10736 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12977, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10737 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12978, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10738 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12979, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10739 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12980, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10740 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12981, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10741 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12982, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10742 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12983, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10743 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12984, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10744 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12985, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10745 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12986, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10746 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12987, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10747 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12988, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10748 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12989, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10749 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12990, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10750 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12991, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10751 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12992, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10752 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12993, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10753 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12994, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10754 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12995, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10755 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12996, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10756 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12997, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10757 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12998, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10758 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12999, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10759 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13000, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10760 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13001, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10761 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13002, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10762 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13003, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10763 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13004, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10764 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13005, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10765 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13006, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10766 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13007, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10767 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13008, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10768 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13009, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10769 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13010, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10770 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13011, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10771 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13012, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10772 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13013, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10773 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13014, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10774 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13015, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10775 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13016, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10776 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13017, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10777 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13018, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10778 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13019, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10779 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13020, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10780 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13021, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10781 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13022, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10782 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13023, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10783 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13024, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10784 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13025, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10785 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13026, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10786 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13027, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10787 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13028, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10788 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13029, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10789 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13030, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10790 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13031, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10791 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13032, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10792 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13033, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13034, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13035, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13036, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13037, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 13038, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 13039, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 13040, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 13041, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 13042, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13043, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 4869 + } + ] + }, + "minecraft:moving_piston": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 1654, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 1655, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 1656, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 1657, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 1658, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 1659, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 1660, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 1661, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 1662, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 1663, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 1664, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 1665, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "states": [ + { + "default": true, + "id": 19777 + } + ] + }, + "minecraft:mud_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9131, + "properties": { + "type": "top", "waterlogged": "true" - }, - "id": 10793 + } }, { + "id": 9132, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "type": "top", "waterlogged": "false" - }, - "id": 10794 + } }, { + "id": 9133, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 10795 + } }, { + "default": true, + "id": 9134, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 10796 + } }, { + "id": 9135, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "true" - }, - "id": 10797 + } }, { + "id": 9136, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "false" - }, - "id": 10798 + } } ] }, - "minecraft:red_nether_brick_stairs": { + "minecraft:mud_brick_stairs": { "properties": { "facing": [ "north", @@ -104638,7744 +108685,7444 @@ }, "states": [ { + "id": 5519, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10799 + } }, { + "id": 5520, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10800 + } }, { + "id": 5521, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10801 + } }, { + "id": 5522, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10802 + } }, { + "id": 5523, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10803 + } }, { + "id": 5524, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10804 + } }, { + "id": 5525, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10805 + } }, { + "id": 5526, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10806 + } }, { + "id": 5527, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10807 + } }, { + "id": 5528, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10808 + } }, { + "id": 5529, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10809 + } }, { + "default": true, + "id": 5530, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10810, - "default": true + } }, { + "id": 5531, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10811 + } }, { + "id": 5532, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10812 + } }, { + "id": 5533, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10813 + } }, { + "id": 5534, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10814 + } }, { + "id": 5535, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10815 + } }, { + "id": 5536, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10816 + } }, { + "id": 5537, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10817 + } }, { + "id": 5538, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10818 + } }, { + "id": 5539, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10819 + } }, { + "id": 5540, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10820 + } }, { + "id": 5541, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10821 + } }, { + "id": 5542, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10822 + } }, { + "id": 5543, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10823 + } }, { + "id": 5544, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10824 + } }, { + "id": 5545, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10825 + } }, { + "id": 5546, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10826 + } }, { + "id": 5547, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10827 + } }, { + "id": 5548, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10828 + } }, { + "id": 5549, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10829 + } }, { + "id": 5550, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10830 + } }, { + "id": 5551, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10831 + } }, { + "id": 5552, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10832 + } }, { + "id": 5553, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10833 + } }, { + "id": 5554, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10834 + } }, { + "id": 5555, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10835 + } }, { + "id": 5556, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10836 + } }, { + "id": 5557, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10837 + } }, { + "id": 5558, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10838 + } }, { + "id": 5559, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10839 + } }, { + "id": 5560, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10840 + } }, { + "id": 5561, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10841 + } }, { + "id": 5562, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10842 + } }, { + "id": 5563, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10843 + } }, { + "id": 5564, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10844 + } }, { + "id": 5565, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10845 + } }, { + "id": 5566, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10846 + } }, { + "id": 5567, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10847 + } }, { + "id": 5568, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10848 + } }, { + "id": 5569, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10849 + } }, { + "id": 5570, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10850 + } }, { + "id": 5571, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10851 + } }, { + "id": 5572, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10852 + } }, { + "id": 5573, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10853 + } }, { + "id": 5574, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10854 + } }, { + "id": 5575, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10855 + } }, { + "id": 5576, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10856 + } }, { + "id": 5577, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10857 + } }, { + "id": 5578, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10858 + } }, { + "id": 5579, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 10859 + } }, { + "id": 5580, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 10860 + } }, { + "id": 5581, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10861 + } }, { + "id": 5582, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10862 + } }, { + "id": 5583, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10863 + } }, { + "id": 5584, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10864 + } }, { + "id": 5585, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10865 + } }, { + "id": 5586, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10866 + } }, { + "id": 5587, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10867 + } }, { + "id": 5588, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10868 + } }, { + "id": 5589, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 10869 + } }, { + "id": 5590, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 10870 + } }, { + "id": 5591, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 10871 + } }, { + "id": 5592, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 10872 + } }, { + "id": 5593, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 10873 + } }, { + "id": 5594, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 10874 + } }, { + "id": 5595, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 10875 + } }, { + "id": 5596, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 10876 + } }, { + "id": 5597, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 10877 + } }, { + "id": 5598, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 10878 + } } ] }, - "minecraft:polished_andesite_stairs": { + "minecraft:mud_brick_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 13692, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10879 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13693, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10880 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13694, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10881 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 13695, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10882 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13696, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10883 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13697, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10884 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13698, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10885 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13699, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10886 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13700, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10887 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13701, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10888 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13702, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10889 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13703, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10890, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13704, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10891 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13705, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10892 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13706, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10893 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13707, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10894 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13708, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10895 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13709, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10896 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13710, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10897 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13711, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10898 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13712, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10899 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13713, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10900 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13714, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10901 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13715, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10902 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13716, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10903 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13717, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10904 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13718, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10905 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13719, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10906 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13720, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10907 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13721, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10908 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13722, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10909 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13723, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10910 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13724, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10911 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13725, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10912 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13726, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10913 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13727, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10914 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13728, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10915 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13729, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10916 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13730, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10917 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13731, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10918 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13732, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10919 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13733, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10920 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13734, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10921 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13735, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10922 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13736, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10923 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13737, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10924 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13738, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10925 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13739, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10926 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13740, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10927 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13741, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10928 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13742, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10929 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13743, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10930 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13744, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10931 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13745, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10932 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13746, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10933 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13747, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10934 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13748, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10935 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13749, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10936 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13750, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10937 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13751, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10938 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13752, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10939 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13753, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10940 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13754, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10941 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13755, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10942 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13756, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10943 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13757, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10944 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13758, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10945 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13759, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10946 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13760, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10947 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13761, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10948 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13762, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10949 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13763, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10950 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13764, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10951 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13765, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10952 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13766, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10953 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13767, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10954 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13768, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10955 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13769, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10956 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13770, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10957 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13771, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10958 - } - ] - }, - "minecraft:diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10959 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13772, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10960 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13773, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10961 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13774, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10962 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13775, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10963 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13776, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10964 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13777, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10965 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13778, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10966 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13779, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10967 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13780, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10968 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13781, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10969 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13782, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10970, - "default": true + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13783, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10971 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13784, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10972 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13785, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10973 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13786, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10974 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13787, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10975 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13788, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10976 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13789, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10977 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13790, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10978 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13791, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10979 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13792, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10980 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13793, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10981 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13794, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10982 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13795, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10983 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13796, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10984 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13797, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10985 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13798, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10986 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13799, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10987 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13800, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10988 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13801, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10989 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13802, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 10990 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13803, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 10991 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13804, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 10992 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13805, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 10993 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13806, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 10994 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13807, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 10995 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13808, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 10996 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13809, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 10997 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13810, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 10998 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13811, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 10999 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13812, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11000 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13813, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11001 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13814, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11002 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13815, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11003 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13816, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11004 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13817, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11005 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13818, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11006 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13819, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11007 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13820, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11008 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13821, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11009 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13822, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11010 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13823, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11011 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13824, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11012 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13825, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11013 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13826, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11014 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13827, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11015 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13828, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11016 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13829, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11017 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13830, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11018 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13831, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11019 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13832, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11020 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13833, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11021 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13834, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11022 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13835, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11023 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13836, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11024 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13837, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11025 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13838, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11026 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13839, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11027 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13840, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11028 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13841, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 11029 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13842, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 11030 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13843, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 11031 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13844, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 11032 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13845, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 11033 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13846, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 11034 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13847, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 11035 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13848, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 11036 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 11037 - }, - { - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 11038 - } - ] - }, - "minecraft:polished_granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11039 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11040 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11041 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11042, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11043 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11044 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11045 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13849, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11046 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13850, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11047 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13851, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11048, - "default": true + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13852, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11049 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13853, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11050 - } - ] - }, - "minecraft:mossy_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11051 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13854, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11052 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13855, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11053 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13856, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11054, - "default": true + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13857, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11055 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13858, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11056 - } - ] - }, - "minecraft:polished_diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11057 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13859, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11058 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13860, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11059 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13861, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11060, - "default": true + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13862, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11061 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13863, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11062 - } - ] - }, - "minecraft:mossy_cobblestone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11063 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13864, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11064 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13865, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11065 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13866, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11066, - "default": true + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13867, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11067 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13868, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11068 - } - ] - }, - "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11069 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13869, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11070 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13870, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11071 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13871, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11072, - "default": true + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13872, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11073 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13873, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11074 - } - ] - }, - "minecraft:smooth_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11075 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13874, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11076 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13875, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11077 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13876, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11078, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13877, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11079 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13878, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11080 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11081 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13879, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11082 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13880, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11083 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13881, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11084, - "default": true + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13882, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11085 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13883, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11086 - } - ] - }, - "minecraft:granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11087 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13884, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11088 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13885, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11089 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13886, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11090, - "default": true + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13887, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11091 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13888, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11092 - } - ] - }, - "minecraft:andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11093 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13889, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11094 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13890, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11095 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13891, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11096, - "default": true + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13892, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11097 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13893, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11098 - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11099 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13894, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11100 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13895, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11101 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13896, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11102, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13897, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11103 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13898, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11104 - } - ] - }, - "minecraft:polished_andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11105 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13899, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11106 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13900, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11107 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13901, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11108, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13902, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11109 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13903, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11110 - } - ] - }, - "minecraft:diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 11111 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13904, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 11112 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13905, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 11113 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13906, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 11114, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13907, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 11115 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13908, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 11116 - } - ] - }, - "minecraft:brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11117 + } }, { + "id": 13909, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11118 + } }, { + "id": 13910, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11119 + } }, { + "id": 13911, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11120, - "default": true + } }, { + "id": 13912, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11121 + } }, { + "id": 13913, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11122 + } }, { + "id": 13914, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11123 + } }, { + "id": 13915, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11124 + } }, { + "id": 13916, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11125 + } }, { + "id": 13917, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11126 + } }, { + "id": 13918, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11127 + } }, { + "id": 13919, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11128 + } }, { + "id": 13920, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11129 + } }, { + "id": 13921, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11130 + } }, { + "id": 13922, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11131 + } }, { + "id": 13923, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11132 + } }, { + "id": 13924, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11133 + } }, { + "id": 13925, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11134 + } }, { + "id": 13926, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11135 + } }, { + "id": 13927, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11136 + } }, { + "id": 13928, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11137 + } }, { + "id": 13929, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11138 + } }, { + "id": 13930, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11139 + } }, { + "id": 13931, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11140 + } }, { + "id": 13932, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11141 + } }, { + "id": 13933, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11142 + } }, { + "id": 13934, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11143 + } }, { + "id": 13935, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11144 + } }, { + "id": 13936, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11145 + } }, { + "id": 13937, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11146 + } }, { + "id": 13938, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11147 + } }, { + "id": 13939, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11148 + } }, { + "id": 13940, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11149 + } }, { + "id": 13941, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11150 + } }, { + "id": 13942, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11151 + } }, { + "id": 13943, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11152 + } }, { + "id": 13944, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11153 + } }, { + "id": 13945, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11154 + } }, { + "id": 13946, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11155 + } }, { + "id": 13947, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11156 + } }, { + "id": 13948, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11157 + } }, { + "id": 13949, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11158 + } }, { + "id": 13950, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11159 + } }, { + "id": 13951, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11160 + } }, { + "id": 13952, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11161 + } }, { + "id": 13953, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11162 + } }, { + "id": 13954, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11163 + } }, { + "id": 13955, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11164 + } }, { + "id": 13956, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11165 + } }, { + "id": 13957, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11166 + } }, { + "id": 13958, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11167 + } }, { + "id": 13959, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11168 + } }, { + "id": 13960, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11169 + } }, { + "id": 13961, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11170 + } }, { + "id": 13962, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11171 + } }, { + "id": 13963, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11172 + } }, { + "id": 13964, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11173 + } }, { + "id": 13965, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11174 + } }, { + "id": 13966, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11175 + } }, { + "id": 13967, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11176 + } }, { + "id": 13968, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11177 + } }, { + "id": 13969, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11178 + } }, { + "id": 13970, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11179 + } }, { + "id": 13971, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11180 + } }, { + "id": 13972, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11181 + } }, { + "id": 13973, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11182 + } }, { + "id": 13974, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11183 + } }, { + "id": 13975, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11184 + } }, { + "id": 13976, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11185 + } }, { + "id": 13977, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11186 + } }, { + "id": 13978, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11187 + } }, { + "id": 13979, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11188 + } }, { + "id": 13980, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11189 + } }, { + "id": 13981, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11190 + } }, { + "id": 13982, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11191 + } }, { + "id": 13983, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11192 + } }, { + "id": 13984, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11193 + } }, { + "id": 13985, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11194 + } }, { + "id": 13986, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11195 + } }, { + "id": 13987, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11196 + } }, { + "id": 13988, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11197 + } }, { + "id": 13989, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11198 + } }, { + "id": 13990, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11199 + } }, { + "id": 13991, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11200 + } }, { + "id": 13992, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11201 + } }, { + "id": 13993, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11202 + } }, { + "id": 13994, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11203 + } }, { + "id": 13995, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11204 + } }, { + "id": 13996, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11205 + } }, { + "id": 13997, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11206 + } }, { + "id": 13998, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11207 + } }, { + "id": 13999, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11208 + } }, { + "id": 14000, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11209 + } }, { + "id": 14001, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11210 + } }, { + "id": 14002, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11211 + } }, { + "id": 14003, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11212 + } }, { + "id": 14004, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11213 + } }, { + "id": 14005, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11214 + } }, { + "id": 14006, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11215 + } }, { + "id": 14007, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11216 + } }, { + "id": 14008, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11217 + } }, { + "id": 14009, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11218 + } }, { + "id": 14010, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11219 + } }, { + "id": 14011, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11220 + } }, { + "id": 14012, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11221 + } }, { + "id": 14013, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11222 + } }, { + "id": 14014, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11223 + } }, { + "id": 14015, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11224 - }, + } + } + ] + }, + "minecraft:mud_bricks": { + "states": [ { - "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11225 - }, + "default": true, + "id": 4873 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 140, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11226 + "axis": "x" + } }, { + "default": true, + "id": 141, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11227 + "axis": "y" + } }, { + "id": 142, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11228 - }, + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 5008, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11229 + "west": "true" + } }, { + "id": 5009, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11230 + "west": "false" + } }, { + "id": 5010, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11231 + "west": "true" + } }, { + "id": 5011, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11232 + "west": "false" + } }, { + "id": 5012, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11233 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 5013, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11234 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 5014, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11235 + "west": "true" + } }, { + "id": 5015, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11236 + "west": "false" + } }, { + "id": 5016, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11237 + "west": "true" + } }, { + "id": 5017, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11238 + "west": "false" + } }, { + "id": 5018, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11239 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 5019, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11240 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 5020, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11241 + "west": "true" + } }, { + "id": 5021, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11242 + "west": "false" + } }, { + "id": 5022, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11243 + "west": "true" + } }, { + "id": 5023, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11244 + "west": "false" + } }, { + "id": 5024, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11245 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 5025, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11246 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 5026, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11247 + "west": "true" + } }, { + "id": 5027, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11248 + "west": "false" + } }, { + "id": 5028, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11249 + "west": "true" + } }, { + "id": 5029, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11250 + "west": "false" + } }, { + "id": 5030, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11251 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 5031, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11252 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 5032, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11253 + "west": "true" + } }, { + "id": 5033, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11254 + "west": "false" + } }, { + "id": 5034, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11255 + "west": "true" + } }, { + "id": 5035, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11256 + "west": "false" + } }, { + "id": 5036, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11257 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 5037, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11258 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 5038, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11259 + "west": "true" + } }, { + "id": 5039, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11260 + "west": "false" + } }, { + "id": 5040, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11261 + "west": "true" + } }, { + "id": 5041, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11262 + "west": "false" + } }, { + "id": 5042, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11263 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 5043, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11264 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 5044, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11265 + "west": "true" + } }, { + "id": 5045, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11266 + "west": "false" + } }, { + "id": 5046, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11267 + "west": "true" + } }, { + "id": 5047, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11268 + "west": "false" + } }, { + "id": 5048, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11269 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 5049, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11270 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 5050, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11271 + "west": "true" + } }, { + "id": 5051, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11272 + "west": "false" + } }, { + "id": 5052, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11273 + "west": "true" + } }, { + "id": 5053, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11274 + "west": "false" + } }, { + "id": 5054, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11275 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 5055, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11276 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 5056, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11277 + "west": "true" + } }, { + "id": 5057, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11278 + "west": "false" + } }, { + "id": 5058, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11279 + "west": "true" + } }, { + "id": 5059, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11280 + "west": "false" + } }, { + "id": 5060, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11281 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 5061, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11282 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 5062, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11283 + "west": "true" + } }, { + "id": 5063, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11284 + "west": "false" + } }, { + "id": 5064, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11285 + "west": "true" + } }, { + "id": 5065, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11286 + "west": "false" + } }, { + "id": 5066, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11287 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 5067, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11288 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 5068, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11289 + "west": "true" + } }, { + "id": 5069, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11290 + "west": "false" + } }, { + "id": 5070, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11291 + "west": "true" + } }, { + "id": 5071, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11292 + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5599, + "properties": { + "snowy": "true" + } }, { + "default": true, + "id": 5600, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5603, + "properties": { + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 11293 + "west": "true" + } }, { + "id": 5604, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11294 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5605, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 11295 + "west": "true" + } }, { + "id": 5606, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 11296 + "west": "false" + } }, { + "id": 5607, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 11297 + "west": "true" + } }, { + "id": 5608, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 11298 + "west": "false" + } }, { + "id": 5609, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11299 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5610, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 11300 + "west": "false" + } }, { + "id": 5611, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11301 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 5612, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11302 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5613, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11303 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5614, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11304 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 5615, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 11305 + "west": "true" + } }, { + "id": 5616, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11306 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 5617, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 11307 + "west": "true" + } }, { + "id": 5618, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 11308 + "west": "false" + } }, { + "id": 5619, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 11309 + "west": "true" + } }, { + "id": 5620, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 11310 + "west": "false" + } }, { + "id": 5621, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11311 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5622, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 11312 + "west": "false" + } }, { + "id": 5623, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5624, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5625, + "properties": { + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 11313 + "west": "true" + } }, { + "id": 5626, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 11314 + "west": "false" + } }, { + "id": 5627, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 11315 + "west": "true" + } }, { + "id": 5628, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 11316 + "west": "false" + } }, { + "id": 5629, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11317 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 5630, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 11318 + "west": "false" + } }, { + "id": 5631, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5632, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5633, + "properties": { + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 11319 + "west": "true" + } }, { + "default": true, + "id": 5634, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 11320 + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9137, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 9138, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11321 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9139, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11322 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9140, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11323 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9141, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11324 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9142, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11325 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5635, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 5636, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11326 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 5637, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11327 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 5638, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11328 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 5639, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11329 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 5640, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11330 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 5641, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11331 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 5642, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11332 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 5643, "properties": { - "east": "tall", + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5644, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5646, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5647, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5648, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5649, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5650, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5651, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5652, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5653, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5654, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5655, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5656, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5657, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5658, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5659, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5660, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5661, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5662, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5663, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5664, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5666, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5667, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5668, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5669, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5670, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5675, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5676, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5677, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5678, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5679, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5680, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5681, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5682, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5683, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5684, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5686, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5695, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5696, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5697, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5698, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5699, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5700, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5701, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5702, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14016, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11333 + } }, { + "id": 14017, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11334 + } }, { + "id": 14018, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11335 + } }, { + "default": true, + "id": 14019, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11336 + } }, { + "id": 14020, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11337 + } }, { + "id": 14021, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11338 + } }, { + "id": 14022, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11339 + } }, { + "id": 14023, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11340 + } }, { + "id": 14024, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11341 + } }, { + "id": 14025, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11342 + } }, { + "id": 14026, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11343 + } }, { + "id": 14027, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11344 + } }, { + "id": 14028, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11345 + } }, { + "id": 14029, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11346 + } }, { + "id": 14030, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11347 + } }, { + "id": 14031, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11348 + } }, { + "id": 14032, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11349 + } }, { + "id": 14033, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11350 + } }, { + "id": 14034, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11351 + } }, { + "id": 14035, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11352 + } }, { + "id": 14036, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11353 + } }, { + "id": 14037, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11354 + } }, { + "id": 14038, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11355 + } }, { + "id": 14039, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11356 + } }, { + "id": 14040, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11357 + } }, { + "id": 14041, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11358 + } }, { + "id": 14042, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11359 + } }, { + "id": 14043, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11360 + } }, { + "id": 14044, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11361 + } }, { + "id": 14045, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11362 + } }, { + "id": 14046, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11363 + } }, { + "id": 14047, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11364 + } }, { + "id": 14048, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11365 + } }, { + "id": 14049, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11366 + } }, { + "id": 14050, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11367 + } }, { + "id": 14051, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11368 + } }, { + "id": 14052, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11369 + } }, { + "id": 14053, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11370 + } }, { + "id": 14054, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11371 + } }, { + "id": 14055, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11372 + } }, { + "id": 14056, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11373 + } }, { + "id": 14057, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11374 + } }, { + "id": 14058, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11375 + } }, { + "id": 14059, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11376 + } }, { + "id": 14060, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11377 + } }, { + "id": 14061, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11378 + } }, { + "id": 14062, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11379 + } }, { + "id": 14063, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11380 + } }, { + "id": 14064, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11381 + } }, { + "id": 14065, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11382 + } }, { + "id": 14066, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11383 + } }, { + "id": 14067, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11384 + } }, { + "id": 14068, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11385 + } }, { + "id": 14069, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11386 + } }, { + "id": 14070, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11387 + } }, { + "id": 14071, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11388 + } }, { + "id": 14072, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11389 + } }, { + "id": 14073, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11390 + } }, { + "id": 14074, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11391 + } }, { + "id": 14075, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11392 + } }, { + "id": 14076, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11393 + } }, { + "id": 14077, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11394 + } }, { + "id": 14078, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11395 + } }, { + "id": 14079, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11396 + } }, { + "id": 14080, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11397 + } }, { + "id": 14081, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11398 + } }, { + "id": 14082, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11399 + } }, { + "id": 14083, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11400 + } }, { + "id": 14084, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11401 + } }, { + "id": 14085, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11402 + } }, { + "id": 14086, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11403 + } }, { + "id": 14087, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11404 + } }, { + "id": 14088, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11405 + } }, { + "id": 14089, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11406 + } }, { + "id": 14090, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11407 + } }, { + "id": 14091, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11408 + } }, { + "id": 14092, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11409 + } }, { + "id": 14093, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11410 + } }, { + "id": 14094, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11411 + } }, { + "id": 14095, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11412 + } }, { + "id": 14096, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11413 + } }, { + "id": 14097, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11414 + } }, { + "id": 14098, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11415 + } }, { + "id": 14099, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11416 + } }, { + "id": 14100, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11417 + } }, { + "id": 14101, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11418 + } }, { + "id": 14102, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11419 + } }, { + "id": 14103, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11420 + } }, { + "id": 14104, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11421 + } }, { + "id": 14105, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11422 + } }, { + "id": 14106, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11423 + } }, { + "id": 14107, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11424 + } }, { + "id": 14108, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11425 + } }, { + "id": 14109, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11426 + } }, { + "id": 14110, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11427 + } }, { + "id": 14111, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11428 + } }, { + "id": 14112, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11429 + } }, { + "id": 14113, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11430 + } }, { + "id": 14114, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11431 + } }, { + "id": 14115, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11432 + } }, { + "id": 14116, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11433 + } }, { + "id": 14117, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11434 + } }, { + "id": 14118, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11435 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11436 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11437 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11438 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11439 - }, - { - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11440 - } - ] - }, - "minecraft:prismarine_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11441 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11442 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11443 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11444, - "default": true - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11445 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11446 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11447 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11448 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11449 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11450 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11451 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11452 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11453 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11454 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11455 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11456 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11457 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11458 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11459 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11460 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11461 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11462 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11463 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11464 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11465 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11466 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11467 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11468 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11469 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11470 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11471 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11472 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11473 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11474 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11475 - }, - { - "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11476 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11477 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11478 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11479 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11480 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11481 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11482 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11483 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11484 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11485 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11486 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11487 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11488 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11489 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11490 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11491 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11492 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11493 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11494 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11495 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11496 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11497 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11498 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11499 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11500 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11501 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11502 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11503 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11504 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11505 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11506 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11507 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11508 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11509 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11510 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11511 - }, - { - "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11512 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11513 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11514 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11515 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11516 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11517 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11518 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11519 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11520 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11521 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11522 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11523 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11524 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11525 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11526 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11527 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11528 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11529 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11530 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11531 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11532 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11533 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11534 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11535 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11536 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11537 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11538 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11539 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11540 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11541 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11542 - }, - { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11543 + } }, { + "id": 14119, "properties": { "east": "none", "north": "tall", @@ -112383,10 +116130,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11544 + } }, { + "id": 14120, "properties": { "east": "none", "north": "tall", @@ -112394,10 +116141,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11545 + } }, { + "id": 14121, "properties": { "east": "none", "north": "tall", @@ -112405,10 +116152,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11546 + } }, { + "id": 14122, "properties": { "east": "none", "north": "tall", @@ -112416,10 +116163,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11547 + } }, { + "id": 14123, "properties": { "east": "none", "north": "tall", @@ -112427,10 +116174,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11548 + } }, { + "id": 14124, "properties": { "east": "low", "north": "none", @@ -112438,10 +116185,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11549 + } }, { + "id": 14125, "properties": { "east": "low", "north": "none", @@ -112449,10 +116196,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11550 + } }, { + "id": 14126, "properties": { "east": "low", "north": "none", @@ -112460,10 +116207,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11551 + } }, { + "id": 14127, "properties": { "east": "low", "north": "none", @@ -112471,10 +116218,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11552 + } }, { + "id": 14128, "properties": { "east": "low", "north": "none", @@ -112482,10 +116229,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11553 + } }, { + "id": 14129, "properties": { "east": "low", "north": "none", @@ -112493,10 +116240,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11554 + } }, { + "id": 14130, "properties": { "east": "low", "north": "none", @@ -112504,10 +116251,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11555 + } }, { + "id": 14131, "properties": { "east": "low", "north": "none", @@ -112515,10 +116262,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11556 + } }, { + "id": 14132, "properties": { "east": "low", "north": "none", @@ -112526,10 +116273,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11557 + } }, { + "id": 14133, "properties": { "east": "low", "north": "none", @@ -112537,10 +116284,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11558 + } }, { + "id": 14134, "properties": { "east": "low", "north": "none", @@ -112548,10 +116295,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11559 + } }, { + "id": 14135, "properties": { "east": "low", "north": "none", @@ -112559,10 +116306,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11560 + } }, { + "id": 14136, "properties": { "east": "low", "north": "none", @@ -112570,10 +116317,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11561 + } }, { + "id": 14137, "properties": { "east": "low", "north": "none", @@ -112581,10 +116328,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11562 + } }, { + "id": 14138, "properties": { "east": "low", "north": "none", @@ -112592,10 +116339,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11563 + } }, { + "id": 14139, "properties": { "east": "low", "north": "none", @@ -112603,10 +116350,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11564 + } }, { + "id": 14140, "properties": { "east": "low", "north": "none", @@ -112614,10 +116361,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11565 + } }, { + "id": 14141, "properties": { "east": "low", "north": "none", @@ -112625,10 +116372,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11566 + } }, { + "id": 14142, "properties": { "east": "low", "north": "none", @@ -112636,10 +116383,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11567 + } }, { + "id": 14143, "properties": { "east": "low", "north": "none", @@ -112647,10 +116394,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11568 + } }, { + "id": 14144, "properties": { "east": "low", "north": "none", @@ -112658,10 +116405,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11569 + } }, { + "id": 14145, "properties": { "east": "low", "north": "none", @@ -112669,10 +116416,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11570 + } }, { + "id": 14146, "properties": { "east": "low", "north": "none", @@ -112680,10 +116427,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11571 + } }, { + "id": 14147, "properties": { "east": "low", "north": "none", @@ -112691,10 +116438,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11572 + } }, { + "id": 14148, "properties": { "east": "low", "north": "none", @@ -112702,10 +116449,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11573 + } }, { + "id": 14149, "properties": { "east": "low", "north": "none", @@ -112713,10 +116460,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11574 + } }, { + "id": 14150, "properties": { "east": "low", "north": "none", @@ -112724,10 +116471,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11575 + } }, { + "id": 14151, "properties": { "east": "low", "north": "none", @@ -112735,10 +116482,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11576 + } }, { + "id": 14152, "properties": { "east": "low", "north": "none", @@ -112746,10 +116493,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11577 + } }, { + "id": 14153, "properties": { "east": "low", "north": "none", @@ -112757,10 +116504,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11578 + } }, { + "id": 14154, "properties": { "east": "low", "north": "none", @@ -112768,10 +116515,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11579 + } }, { + "id": 14155, "properties": { "east": "low", "north": "none", @@ -112779,10 +116526,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11580 + } }, { + "id": 14156, "properties": { "east": "low", "north": "none", @@ -112790,10 +116537,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11581 + } }, { + "id": 14157, "properties": { "east": "low", "north": "none", @@ -112801,10 +116548,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11582 + } }, { + "id": 14158, "properties": { "east": "low", "north": "none", @@ -112812,10 +116559,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11583 + } }, { + "id": 14159, "properties": { "east": "low", "north": "none", @@ -112823,10 +116570,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11584 + } }, { + "id": 14160, "properties": { "east": "low", "north": "low", @@ -112834,10 +116581,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11585 + } }, { + "id": 14161, "properties": { "east": "low", "north": "low", @@ -112845,10 +116592,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11586 + } }, { + "id": 14162, "properties": { "east": "low", "north": "low", @@ -112856,10 +116603,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11587 + } }, { + "id": 14163, "properties": { "east": "low", "north": "low", @@ -112867,10 +116614,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11588 + } }, { + "id": 14164, "properties": { "east": "low", "north": "low", @@ -112878,10 +116625,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11589 + } }, { + "id": 14165, "properties": { "east": "low", "north": "low", @@ -112889,10 +116636,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11590 + } }, { + "id": 14166, "properties": { "east": "low", "north": "low", @@ -112900,10 +116647,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11591 + } }, { + "id": 14167, "properties": { "east": "low", "north": "low", @@ -112911,10 +116658,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11592 + } }, { + "id": 14168, "properties": { "east": "low", "north": "low", @@ -112922,10 +116669,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11593 + } }, { + "id": 14169, "properties": { "east": "low", "north": "low", @@ -112933,10 +116680,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11594 + } }, { + "id": 14170, "properties": { "east": "low", "north": "low", @@ -112944,10 +116691,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11595 + } }, { + "id": 14171, "properties": { "east": "low", "north": "low", @@ -112955,10 +116702,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11596 + } }, { + "id": 14172, "properties": { "east": "low", "north": "low", @@ -112966,10 +116713,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11597 + } }, { + "id": 14173, "properties": { "east": "low", "north": "low", @@ -112977,10 +116724,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11598 + } }, { + "id": 14174, "properties": { "east": "low", "north": "low", @@ -112988,10 +116735,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11599 + } }, { + "id": 14175, "properties": { "east": "low", "north": "low", @@ -112999,10 +116746,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11600 + } }, { + "id": 14176, "properties": { "east": "low", "north": "low", @@ -113010,10 +116757,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11601 + } }, { + "id": 14177, "properties": { "east": "low", "north": "low", @@ -113021,10 +116768,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11602 + } }, { + "id": 14178, "properties": { "east": "low", "north": "low", @@ -113032,10 +116779,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11603 + } }, { + "id": 14179, "properties": { "east": "low", "north": "low", @@ -113043,10 +116790,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11604 + } }, { + "id": 14180, "properties": { "east": "low", "north": "low", @@ -113054,10 +116801,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11605 + } }, { + "id": 14181, "properties": { "east": "low", "north": "low", @@ -113065,10 +116812,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11606 + } }, { + "id": 14182, "properties": { "east": "low", "north": "low", @@ -113076,10 +116823,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11607 + } }, { + "id": 14183, "properties": { "east": "low", "north": "low", @@ -113087,10 +116834,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11608 + } }, { + "id": 14184, "properties": { "east": "low", "north": "low", @@ -113098,10 +116845,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11609 + } }, { + "id": 14185, "properties": { "east": "low", "north": "low", @@ -113109,10 +116856,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11610 + } }, { + "id": 14186, "properties": { "east": "low", "north": "low", @@ -113120,10 +116867,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11611 + } }, { + "id": 14187, "properties": { "east": "low", "north": "low", @@ -113131,10 +116878,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11612 + } }, { + "id": 14188, "properties": { "east": "low", "north": "low", @@ -113142,10 +116889,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11613 + } }, { + "id": 14189, "properties": { "east": "low", "north": "low", @@ -113153,10 +116900,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11614 + } }, { + "id": 14190, "properties": { "east": "low", "north": "low", @@ -113164,10 +116911,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11615 + } }, { + "id": 14191, "properties": { "east": "low", "north": "low", @@ -113175,10 +116922,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11616 + } }, { + "id": 14192, "properties": { "east": "low", "north": "low", @@ -113186,10 +116933,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11617 + } }, { + "id": 14193, "properties": { "east": "low", "north": "low", @@ -113197,10 +116944,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11618 + } }, { + "id": 14194, "properties": { "east": "low", "north": "low", @@ -113208,10 +116955,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11619 + } }, { + "id": 14195, "properties": { "east": "low", "north": "low", @@ -113219,10 +116966,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11620 + } }, { + "id": 14196, "properties": { "east": "low", "north": "tall", @@ -113230,10 +116977,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11621 + } }, { + "id": 14197, "properties": { "east": "low", "north": "tall", @@ -113241,10 +116988,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11622 + } }, { + "id": 14198, "properties": { "east": "low", "north": "tall", @@ -113252,10 +116999,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11623 + } }, { + "id": 14199, "properties": { "east": "low", "north": "tall", @@ -113263,10 +117010,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11624 + } }, { + "id": 14200, "properties": { "east": "low", "north": "tall", @@ -113274,10 +117021,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11625 + } }, { + "id": 14201, "properties": { "east": "low", "north": "tall", @@ -113285,10 +117032,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11626 + } }, { + "id": 14202, "properties": { "east": "low", "north": "tall", @@ -113296,10 +117043,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11627 + } }, { + "id": 14203, "properties": { "east": "low", "north": "tall", @@ -113307,10 +117054,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11628 + } }, { + "id": 14204, "properties": { "east": "low", "north": "tall", @@ -113318,10 +117065,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11629 + } }, { + "id": 14205, "properties": { "east": "low", "north": "tall", @@ -113329,10 +117076,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11630 + } }, { + "id": 14206, "properties": { "east": "low", "north": "tall", @@ -113340,10 +117087,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11631 + } }, { + "id": 14207, "properties": { "east": "low", "north": "tall", @@ -113351,10 +117098,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11632 + } }, { + "id": 14208, "properties": { "east": "low", "north": "tall", @@ -113362,10 +117109,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11633 + } }, { + "id": 14209, "properties": { "east": "low", "north": "tall", @@ -113373,10 +117120,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11634 + } }, { + "id": 14210, "properties": { "east": "low", "north": "tall", @@ -113384,10 +117131,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11635 + } }, { + "id": 14211, "properties": { "east": "low", "north": "tall", @@ -113395,10 +117142,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11636 + } }, { + "id": 14212, "properties": { "east": "low", "north": "tall", @@ -113406,10 +117153,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11637 + } }, { + "id": 14213, "properties": { "east": "low", "north": "tall", @@ -113417,10 +117164,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11638 + } }, { + "id": 14214, "properties": { "east": "low", "north": "tall", @@ -113428,10 +117175,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11639 + } }, { + "id": 14215, "properties": { "east": "low", "north": "tall", @@ -113439,10 +117186,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11640 + } }, { + "id": 14216, "properties": { "east": "low", "north": "tall", @@ -113450,10 +117197,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11641 + } }, { + "id": 14217, "properties": { "east": "low", "north": "tall", @@ -113461,10 +117208,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11642 + } }, { + "id": 14218, "properties": { "east": "low", "north": "tall", @@ -113472,10 +117219,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11643 + } }, { + "id": 14219, "properties": { "east": "low", "north": "tall", @@ -113483,10 +117230,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11644 + } }, { + "id": 14220, "properties": { "east": "low", "north": "tall", @@ -113494,10 +117241,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11645 + } }, { + "id": 14221, "properties": { "east": "low", "north": "tall", @@ -113505,10 +117252,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11646 + } }, { + "id": 14222, "properties": { "east": "low", "north": "tall", @@ -113516,10 +117263,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11647 + } }, { + "id": 14223, "properties": { "east": "low", "north": "tall", @@ -113527,10 +117274,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11648 + } }, { + "id": 14224, "properties": { "east": "low", "north": "tall", @@ -113538,10 +117285,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11649 + } }, { + "id": 14225, "properties": { "east": "low", "north": "tall", @@ -113549,10 +117296,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11650 + } }, { + "id": 14226, "properties": { "east": "low", "north": "tall", @@ -113560,10 +117307,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11651 + } }, { + "id": 14227, "properties": { "east": "low", "north": "tall", @@ -113571,10 +117318,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11652 + } }, { + "id": 14228, "properties": { "east": "low", "north": "tall", @@ -113582,10 +117329,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11653 + } }, { + "id": 14229, "properties": { "east": "low", "north": "tall", @@ -113593,10 +117340,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11654 + } }, { + "id": 14230, "properties": { "east": "low", "north": "tall", @@ -113604,10 +117351,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11655 + } }, { + "id": 14231, "properties": { "east": "low", "north": "tall", @@ -113615,10 +117362,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11656 + } }, { + "id": 14232, "properties": { "east": "tall", "north": "none", @@ -113626,10 +117373,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11657 + } }, { + "id": 14233, "properties": { "east": "tall", "north": "none", @@ -113637,10 +117384,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11658 + } }, { + "id": 14234, "properties": { "east": "tall", "north": "none", @@ -113648,10 +117395,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11659 + } }, { + "id": 14235, "properties": { "east": "tall", "north": "none", @@ -113659,10 +117406,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11660 + } }, { + "id": 14236, "properties": { "east": "tall", "north": "none", @@ -113670,10 +117417,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11661 + } }, { + "id": 14237, "properties": { "east": "tall", "north": "none", @@ -113681,10 +117428,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11662 + } }, { + "id": 14238, "properties": { "east": "tall", "north": "none", @@ -113692,10 +117439,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11663 + } }, { + "id": 14239, "properties": { "east": "tall", "north": "none", @@ -113703,10 +117450,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11664 + } }, { + "id": 14240, "properties": { "east": "tall", "north": "none", @@ -113714,10 +117461,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11665 + } }, { + "id": 14241, "properties": { "east": "tall", "north": "none", @@ -113725,10 +117472,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11666 + } }, { + "id": 14242, "properties": { "east": "tall", "north": "none", @@ -113736,10 +117483,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11667 + } }, { + "id": 14243, "properties": { "east": "tall", "north": "none", @@ -113747,10 +117494,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11668 + } }, { + "id": 14244, "properties": { "east": "tall", "north": "none", @@ -113758,10 +117505,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11669 + } }, { + "id": 14245, "properties": { "east": "tall", "north": "none", @@ -113769,10 +117516,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11670 + } }, { + "id": 14246, "properties": { "east": "tall", "north": "none", @@ -113780,10 +117527,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11671 + } }, { + "id": 14247, "properties": { "east": "tall", "north": "none", @@ -113791,10 +117538,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11672 + } }, { + "id": 14248, "properties": { "east": "tall", "north": "none", @@ -113802,10 +117549,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11673 + } }, { + "id": 14249, "properties": { "east": "tall", "north": "none", @@ -113813,10 +117560,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11674 + } }, { + "id": 14250, "properties": { "east": "tall", "north": "none", @@ -113824,10 +117571,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11675 + } }, { + "id": 14251, "properties": { "east": "tall", "north": "none", @@ -113835,10 +117582,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11676 + } }, { + "id": 14252, "properties": { "east": "tall", "north": "none", @@ -113846,10 +117593,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11677 + } }, { + "id": 14253, "properties": { "east": "tall", "north": "none", @@ -113857,10 +117604,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11678 + } }, { + "id": 14254, "properties": { "east": "tall", "north": "none", @@ -113868,10 +117615,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11679 + } }, { + "id": 14255, "properties": { "east": "tall", "north": "none", @@ -113879,10 +117626,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11680 + } }, { + "id": 14256, "properties": { "east": "tall", "north": "none", @@ -113890,10 +117637,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11681 + } }, { + "id": 14257, "properties": { "east": "tall", "north": "none", @@ -113901,10 +117648,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11682 + } }, { + "id": 14258, "properties": { "east": "tall", "north": "none", @@ -113912,10 +117659,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11683 + } }, { + "id": 14259, "properties": { "east": "tall", "north": "none", @@ -113923,10 +117670,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11684 + } }, { + "id": 14260, "properties": { "east": "tall", "north": "none", @@ -113934,10 +117681,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11685 + } }, { + "id": 14261, "properties": { "east": "tall", "north": "none", @@ -113945,10 +117692,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11686 + } }, { + "id": 14262, "properties": { "east": "tall", "north": "none", @@ -113956,10 +117703,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11687 + } }, { + "id": 14263, "properties": { "east": "tall", "north": "none", @@ -113967,10 +117714,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11688 + } }, { + "id": 14264, "properties": { "east": "tall", "north": "none", @@ -113978,10 +117725,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11689 + } }, { + "id": 14265, "properties": { "east": "tall", "north": "none", @@ -113989,10 +117736,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11690 + } }, { + "id": 14266, "properties": { "east": "tall", "north": "none", @@ -114000,10 +117747,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11691 + } }, { + "id": 14267, "properties": { "east": "tall", "north": "none", @@ -114011,10 +117758,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11692 + } }, { + "id": 14268, "properties": { "east": "tall", "north": "low", @@ -114022,10 +117769,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11693 + } }, { + "id": 14269, "properties": { "east": "tall", "north": "low", @@ -114033,10 +117780,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11694 + } }, { + "id": 14270, "properties": { "east": "tall", "north": "low", @@ -114044,10 +117791,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11695 + } }, { + "id": 14271, "properties": { "east": "tall", "north": "low", @@ -114055,10 +117802,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11696 + } }, { + "id": 14272, "properties": { "east": "tall", "north": "low", @@ -114066,10 +117813,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11697 + } }, { + "id": 14273, "properties": { "east": "tall", "north": "low", @@ -114077,10 +117824,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11698 + } }, { + "id": 14274, "properties": { "east": "tall", "north": "low", @@ -114088,10 +117835,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11699 + } }, { + "id": 14275, "properties": { "east": "tall", "north": "low", @@ -114099,10 +117846,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11700 + } }, { + "id": 14276, "properties": { "east": "tall", "north": "low", @@ -114110,10 +117857,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11701 + } }, { + "id": 14277, "properties": { "east": "tall", "north": "low", @@ -114121,10 +117868,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11702 + } }, { + "id": 14278, "properties": { "east": "tall", "north": "low", @@ -114132,10 +117879,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11703 + } }, { + "id": 14279, "properties": { "east": "tall", "north": "low", @@ -114143,10 +117890,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11704 + } }, { + "id": 14280, "properties": { "east": "tall", "north": "low", @@ -114154,10 +117901,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11705 + } }, { + "id": 14281, "properties": { "east": "tall", "north": "low", @@ -114165,10 +117912,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11706 + } }, { + "id": 14282, "properties": { "east": "tall", "north": "low", @@ -114176,10 +117923,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11707 + } }, { + "id": 14283, "properties": { "east": "tall", "north": "low", @@ -114187,10 +117934,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11708 + } }, { + "id": 14284, "properties": { "east": "tall", "north": "low", @@ -114198,10 +117945,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11709 + } }, { + "id": 14285, "properties": { "east": "tall", "north": "low", @@ -114209,10 +117956,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11710 + } }, { + "id": 14286, "properties": { "east": "tall", "north": "low", @@ -114220,10 +117967,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11711 + } }, { + "id": 14287, "properties": { "east": "tall", "north": "low", @@ -114231,10 +117978,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11712 + } }, { + "id": 14288, "properties": { "east": "tall", "north": "low", @@ -114242,10 +117989,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11713 + } }, { + "id": 14289, "properties": { "east": "tall", "north": "low", @@ -114253,10 +118000,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11714 + } }, { + "id": 14290, "properties": { "east": "tall", "north": "low", @@ -114264,10 +118011,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11715 + } }, { + "id": 14291, "properties": { "east": "tall", "north": "low", @@ -114275,10 +118022,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11716 + } }, { + "id": 14292, "properties": { "east": "tall", "north": "low", @@ -114286,10 +118033,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11717 + } }, { + "id": 14293, "properties": { "east": "tall", "north": "low", @@ -114297,10 +118044,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11718 + } }, { + "id": 14294, "properties": { "east": "tall", "north": "low", @@ -114308,10 +118055,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11719 + } }, { + "id": 14295, "properties": { "east": "tall", "north": "low", @@ -114319,10 +118066,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11720 + } }, { + "id": 14296, "properties": { "east": "tall", "north": "low", @@ -114330,10 +118077,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11721 + } }, { + "id": 14297, "properties": { "east": "tall", "north": "low", @@ -114341,10 +118088,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11722 + } }, { + "id": 14298, "properties": { "east": "tall", "north": "low", @@ -114352,10 +118099,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11723 + } }, { + "id": 14299, "properties": { "east": "tall", "north": "low", @@ -114363,10 +118110,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11724 + } }, { + "id": 14300, "properties": { "east": "tall", "north": "low", @@ -114374,10 +118121,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11725 + } }, { + "id": 14301, "properties": { "east": "tall", "north": "low", @@ -114385,10 +118132,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11726 + } }, { + "id": 14302, "properties": { "east": "tall", "north": "low", @@ -114396,10 +118143,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11727 + } }, { + "id": 14303, "properties": { "east": "tall", "north": "low", @@ -114407,10 +118154,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11728 + } }, { + "id": 14304, "properties": { "east": "tall", "north": "tall", @@ -114418,10 +118165,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11729 + } }, { + "id": 14305, "properties": { "east": "tall", "north": "tall", @@ -114429,10 +118176,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11730 + } }, { + "id": 14306, "properties": { "east": "tall", "north": "tall", @@ -114440,10 +118187,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11731 + } }, { + "id": 14307, "properties": { "east": "tall", "north": "tall", @@ -114451,10 +118198,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11732 + } }, { + "id": 14308, "properties": { "east": "tall", "north": "tall", @@ -114462,10 +118209,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11733 + } }, { + "id": 14309, "properties": { "east": "tall", "north": "tall", @@ -114473,10 +118220,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11734 + } }, { + "id": 14310, "properties": { "east": "tall", "north": "tall", @@ -114484,10 +118231,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11735 + } }, { + "id": 14311, "properties": { "east": "tall", "north": "tall", @@ -114495,10 +118242,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11736 + } }, { + "id": 14312, "properties": { "east": "tall", "north": "tall", @@ -114506,10 +118253,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11737 + } }, { + "id": 14313, "properties": { "east": "tall", "north": "tall", @@ -114517,10 +118264,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11738 + } }, { + "id": 14314, "properties": { "east": "tall", "north": "tall", @@ -114528,10 +118275,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11739 + } }, { + "id": 14315, "properties": { "east": "tall", "north": "tall", @@ -114539,10 +118286,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11740 + } }, { + "id": 14316, "properties": { "east": "tall", "north": "tall", @@ -114550,10 +118297,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11741 + } }, { + "id": 14317, "properties": { "east": "tall", "north": "tall", @@ -114561,10 +118308,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11742 + } }, { + "id": 14318, "properties": { "east": "tall", "north": "tall", @@ -114572,10 +118319,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11743 + } }, { + "id": 14319, "properties": { "east": "tall", "north": "tall", @@ -114583,10 +118330,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11744 + } }, { + "id": 14320, "properties": { "east": "tall", "north": "tall", @@ -114594,10 +118341,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11745 + } }, { + "id": 14321, "properties": { "east": "tall", "north": "tall", @@ -114605,10 +118352,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11746 + } }, { + "id": 14322, "properties": { "east": "tall", "north": "tall", @@ -114616,10 +118363,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11747 + } }, { + "id": 14323, "properties": { "east": "tall", "north": "tall", @@ -114627,10 +118374,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11748 + } }, { + "id": 14324, "properties": { "east": "tall", "north": "tall", @@ -114638,10 +118385,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11749 + } }, { + "id": 14325, "properties": { "east": "tall", "north": "tall", @@ -114649,10 +118396,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11750 + } }, { + "id": 14326, "properties": { "east": "tall", "north": "tall", @@ -114660,10 +118407,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11751 + } }, { + "id": 14327, "properties": { "east": "tall", "north": "tall", @@ -114671,10 +118418,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11752 + } }, { + "id": 14328, "properties": { "east": "tall", "north": "tall", @@ -114682,10 +118429,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 11753 + } }, { + "id": 14329, "properties": { "east": "tall", "north": "tall", @@ -114693,10 +118440,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 11754 + } }, { + "id": 14330, "properties": { "east": "tall", "north": "tall", @@ -114704,10 +118451,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 11755 + } }, { + "id": 14331, "properties": { "east": "tall", "north": "tall", @@ -114715,10 +118462,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 11756 + } }, { + "id": 14332, "properties": { "east": "tall", "north": "tall", @@ -114726,10 +118473,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 11757 + } }, { + "id": 14333, "properties": { "east": "tall", "north": "tall", @@ -114737,10 +118484,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 11758 + } }, { + "id": 14334, "properties": { "east": "tall", "north": "tall", @@ -114748,10 +118495,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 11759 + } }, { + "id": 14335, "properties": { "east": "tall", "north": "tall", @@ -114759,10 +118506,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 11760 + } }, { + "id": 14336, "properties": { "east": "tall", "north": "tall", @@ -114770,10 +118517,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 11761 + } }, { + "id": 14337, "properties": { "east": "tall", "north": "tall", @@ -114781,10 +118528,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 11762 + } }, { + "id": 14338, "properties": { "east": "tall", "north": "tall", @@ -114792,10 +118539,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 11763 + } }, { + "id": 14339, "properties": { "east": "tall", "north": "tall", @@ -114803,18260 +118550,15920 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 11764 + } } ] }, - "minecraft:red_sandstone_wall": { + "minecraft:nether_bricks": { + "states": [ + { + "default": true, + "id": 5602 + } + ] + }, + "minecraft:nether_gold_ore": { + "states": [ + { + "default": true, + "id": 116 + } + ] + }, + "minecraft:nether_portal": { "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" + "axis": [ + "x", + "z" ] }, "states": [ { + "default": true, + "id": 4323, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11765 + "axis": "x" + } }, { + "id": 4324, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11766 - }, + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "states": [ + { + "default": true, + "id": 7344 + } + ] + }, + "minecraft:nether_sprouts": { + "states": [ + { + "default": true, + "id": 16183 + } + ] + }, + "minecraft:nether_wart": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { + "default": true, + "id": 5715, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11767 + "age": "0" + } }, { + "id": 5716, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11768, - "default": true + "age": "1" + } }, { + "id": 5717, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11769 + "age": "2" + } }, { + "id": 5718, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11770 - }, + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "states": [ + { + "default": true, + "id": 10135 + } + ] + }, + "minecraft:netherite_block": { + "states": [ + { + "default": true, + "id": 17035 + } + ] + }, + "minecraft:netherrack": { + "states": [ + { + "default": true, + "id": 4308 + } + ] + }, + "minecraft:note_block": { + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling" + ], + "note": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 479, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11771 + "instrument": "harp", + "note": "0", + "powered": "true" + } }, { + "default": true, + "id": 480, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11772 + "instrument": "harp", + "note": "0", + "powered": "false" + } }, { + "id": 481, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11773 + "instrument": "harp", + "note": "1", + "powered": "true" + } }, { + "id": 482, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11774 + "instrument": "harp", + "note": "1", + "powered": "false" + } }, { + "id": 483, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11775 + "instrument": "harp", + "note": "2", + "powered": "true" + } }, { + "id": 484, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11776 + "instrument": "harp", + "note": "2", + "powered": "false" + } }, { + "id": 485, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11777 + "instrument": "harp", + "note": "3", + "powered": "true" + } }, { + "id": 486, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11778 + "instrument": "harp", + "note": "3", + "powered": "false" + } }, { + "id": 487, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11779 + "instrument": "harp", + "note": "4", + "powered": "true" + } }, { + "id": 488, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11780 + "instrument": "harp", + "note": "4", + "powered": "false" + } }, { + "id": 489, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11781 + "instrument": "harp", + "note": "5", + "powered": "true" + } }, { + "id": 490, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11782 + "instrument": "harp", + "note": "5", + "powered": "false" + } }, { + "id": 491, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11783 + "instrument": "harp", + "note": "6", + "powered": "true" + } }, { + "id": 492, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11784 + "instrument": "harp", + "note": "6", + "powered": "false" + } }, { + "id": 493, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11785 + "instrument": "harp", + "note": "7", + "powered": "true" + } }, { + "id": 494, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11786 + "instrument": "harp", + "note": "7", + "powered": "false" + } }, { + "id": 495, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11787 + "instrument": "harp", + "note": "8", + "powered": "true" + } }, { + "id": 496, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11788 + "instrument": "harp", + "note": "8", + "powered": "false" + } }, { + "id": 497, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11789 + "instrument": "harp", + "note": "9", + "powered": "true" + } }, { + "id": 498, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11790 + "instrument": "harp", + "note": "9", + "powered": "false" + } }, { + "id": 499, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11791 + "instrument": "harp", + "note": "10", + "powered": "true" + } }, { + "id": 500, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11792 + "instrument": "harp", + "note": "10", + "powered": "false" + } }, { + "id": 501, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11793 + "instrument": "harp", + "note": "11", + "powered": "true" + } }, { + "id": 502, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11794 + "instrument": "harp", + "note": "11", + "powered": "false" + } }, { + "id": 503, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11795 + "instrument": "harp", + "note": "12", + "powered": "true" + } }, { + "id": 504, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11796 + "instrument": "harp", + "note": "12", + "powered": "false" + } }, { + "id": 505, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11797 + "instrument": "harp", + "note": "13", + "powered": "true" + } }, { + "id": 506, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11798 + "instrument": "harp", + "note": "13", + "powered": "false" + } }, { + "id": 507, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11799 + "instrument": "harp", + "note": "14", + "powered": "true" + } }, { + "id": 508, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11800 + "instrument": "harp", + "note": "14", + "powered": "false" + } }, { + "id": 509, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11801 + "instrument": "harp", + "note": "15", + "powered": "true" + } }, { + "id": 510, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11802 + "instrument": "harp", + "note": "15", + "powered": "false" + } }, { + "id": 511, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11803 + "instrument": "harp", + "note": "16", + "powered": "true" + } }, { + "id": 512, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11804 + "instrument": "harp", + "note": "16", + "powered": "false" + } }, { + "id": 513, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11805 + "instrument": "harp", + "note": "17", + "powered": "true" + } }, { + "id": 514, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11806 + "instrument": "harp", + "note": "17", + "powered": "false" + } }, { + "id": 515, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11807 + "instrument": "harp", + "note": "18", + "powered": "true" + } }, { + "id": 516, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11808 + "instrument": "harp", + "note": "18", + "powered": "false" + } }, { + "id": 517, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11809 + "instrument": "harp", + "note": "19", + "powered": "true" + } }, { + "id": 518, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11810 + "instrument": "harp", + "note": "19", + "powered": "false" + } }, { + "id": 519, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11811 + "instrument": "harp", + "note": "20", + "powered": "true" + } }, { + "id": 520, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11812 + "instrument": "harp", + "note": "20", + "powered": "false" + } }, { + "id": 521, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11813 + "instrument": "harp", + "note": "21", + "powered": "true" + } }, { + "id": 522, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11814 + "instrument": "harp", + "note": "21", + "powered": "false" + } }, { + "id": 523, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11815 + "instrument": "harp", + "note": "22", + "powered": "true" + } }, { + "id": 524, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11816 + "instrument": "harp", + "note": "22", + "powered": "false" + } }, { + "id": 525, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11817 + "instrument": "harp", + "note": "23", + "powered": "true" + } }, { + "id": 526, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11818 + "instrument": "harp", + "note": "23", + "powered": "false" + } }, { + "id": 527, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11819 + "instrument": "harp", + "note": "24", + "powered": "true" + } }, { + "id": 528, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11820 + "instrument": "harp", + "note": "24", + "powered": "false" + } }, { + "id": 529, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11821 + "instrument": "basedrum", + "note": "0", + "powered": "true" + } }, { + "id": 530, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11822 + "instrument": "basedrum", + "note": "0", + "powered": "false" + } }, { + "id": 531, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11823 + "instrument": "basedrum", + "note": "1", + "powered": "true" + } }, { + "id": 532, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11824 + "instrument": "basedrum", + "note": "1", + "powered": "false" + } }, { + "id": 533, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11825 + "instrument": "basedrum", + "note": "2", + "powered": "true" + } }, { + "id": 534, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11826 + "instrument": "basedrum", + "note": "2", + "powered": "false" + } }, { + "id": 535, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11827 + "instrument": "basedrum", + "note": "3", + "powered": "true" + } }, { + "id": 536, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11828 + "instrument": "basedrum", + "note": "3", + "powered": "false" + } }, { + "id": 537, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11829 + "instrument": "basedrum", + "note": "4", + "powered": "true" + } }, { + "id": 538, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11830 + "instrument": "basedrum", + "note": "4", + "powered": "false" + } }, { + "id": 539, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11831 + "instrument": "basedrum", + "note": "5", + "powered": "true" + } }, { + "id": 540, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11832 + "instrument": "basedrum", + "note": "5", + "powered": "false" + } }, { + "id": 541, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11833 + "instrument": "basedrum", + "note": "6", + "powered": "true" + } }, { + "id": 542, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11834 + "instrument": "basedrum", + "note": "6", + "powered": "false" + } }, { + "id": 543, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11835 + "instrument": "basedrum", + "note": "7", + "powered": "true" + } }, { + "id": 544, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11836 + "instrument": "basedrum", + "note": "7", + "powered": "false" + } }, { + "id": 545, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11837 + "instrument": "basedrum", + "note": "8", + "powered": "true" + } }, { + "id": 546, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11838 + "instrument": "basedrum", + "note": "8", + "powered": "false" + } }, { + "id": 547, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11839 + "instrument": "basedrum", + "note": "9", + "powered": "true" + } }, { + "id": 548, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11840 + "instrument": "basedrum", + "note": "9", + "powered": "false" + } }, { + "id": 549, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11841 + "instrument": "basedrum", + "note": "10", + "powered": "true" + } }, { + "id": 550, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11842 + "instrument": "basedrum", + "note": "10", + "powered": "false" + } }, { + "id": 551, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11843 + "instrument": "basedrum", + "note": "11", + "powered": "true" + } }, { + "id": 552, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11844 + "instrument": "basedrum", + "note": "11", + "powered": "false" + } }, { + "id": 553, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11845 + "instrument": "basedrum", + "note": "12", + "powered": "true" + } }, { + "id": 554, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11846 + "instrument": "basedrum", + "note": "12", + "powered": "false" + } }, { + "id": 555, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11847 + "instrument": "basedrum", + "note": "13", + "powered": "true" + } }, { + "id": 556, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11848 + "instrument": "basedrum", + "note": "13", + "powered": "false" + } }, { + "id": 557, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11849 + "instrument": "basedrum", + "note": "14", + "powered": "true" + } }, { + "id": 558, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11850 + "instrument": "basedrum", + "note": "14", + "powered": "false" + } }, { + "id": 559, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11851 + "instrument": "basedrum", + "note": "15", + "powered": "true" + } }, { + "id": 560, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11852 + "instrument": "basedrum", + "note": "15", + "powered": "false" + } }, { + "id": 561, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11853 + "instrument": "basedrum", + "note": "16", + "powered": "true" + } }, { + "id": 562, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11854 + "instrument": "basedrum", + "note": "16", + "powered": "false" + } }, { + "id": 563, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11855 + "instrument": "basedrum", + "note": "17", + "powered": "true" + } }, { + "id": 564, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11856 + "instrument": "basedrum", + "note": "17", + "powered": "false" + } }, { + "id": 565, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11857 + "instrument": "basedrum", + "note": "18", + "powered": "true" + } }, { + "id": 566, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11858 + "instrument": "basedrum", + "note": "18", + "powered": "false" + } }, { + "id": 567, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11859 + "instrument": "basedrum", + "note": "19", + "powered": "true" + } }, { + "id": 568, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11860 + "instrument": "basedrum", + "note": "19", + "powered": "false" + } }, { + "id": 569, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11861 + "instrument": "basedrum", + "note": "20", + "powered": "true" + } }, { + "id": 570, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11862 + "instrument": "basedrum", + "note": "20", + "powered": "false" + } }, { + "id": 571, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11863 + "instrument": "basedrum", + "note": "21", + "powered": "true" + } }, { + "id": 572, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11864 + "instrument": "basedrum", + "note": "21", + "powered": "false" + } }, { + "id": 573, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11865 + "instrument": "basedrum", + "note": "22", + "powered": "true" + } }, { + "id": 574, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11866 + "instrument": "basedrum", + "note": "22", + "powered": "false" + } }, { + "id": 575, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11867 + "instrument": "basedrum", + "note": "23", + "powered": "true" + } }, { + "id": 576, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11868 + "instrument": "basedrum", + "note": "23", + "powered": "false" + } }, { + "id": 577, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11869 + "instrument": "basedrum", + "note": "24", + "powered": "true" + } }, { + "id": 578, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11870 + "instrument": "basedrum", + "note": "24", + "powered": "false" + } }, { + "id": 579, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11871 + "instrument": "snare", + "note": "0", + "powered": "true" + } }, { + "id": 580, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11872 + "instrument": "snare", + "note": "0", + "powered": "false" + } }, { + "id": 581, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11873 + "instrument": "snare", + "note": "1", + "powered": "true" + } }, { + "id": 582, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11874 + "instrument": "snare", + "note": "1", + "powered": "false" + } }, { + "id": 583, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11875 + "instrument": "snare", + "note": "2", + "powered": "true" + } }, { + "id": 584, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11876 + "instrument": "snare", + "note": "2", + "powered": "false" + } }, { + "id": 585, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11877 + "instrument": "snare", + "note": "3", + "powered": "true" + } }, { + "id": 586, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11878 + "instrument": "snare", + "note": "3", + "powered": "false" + } }, { + "id": 587, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11879 + "instrument": "snare", + "note": "4", + "powered": "true" + } }, { + "id": 588, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11880 + "instrument": "snare", + "note": "4", + "powered": "false" + } }, { + "id": 589, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11881 + "instrument": "snare", + "note": "5", + "powered": "true" + } }, { + "id": 590, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11882 + "instrument": "snare", + "note": "5", + "powered": "false" + } }, { + "id": 591, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11883 + "instrument": "snare", + "note": "6", + "powered": "true" + } }, { + "id": 592, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11884 + "instrument": "snare", + "note": "6", + "powered": "false" + } }, { + "id": 593, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11885 + "instrument": "snare", + "note": "7", + "powered": "true" + } }, { + "id": 594, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11886 + "instrument": "snare", + "note": "7", + "powered": "false" + } }, { + "id": 595, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11887 + "instrument": "snare", + "note": "8", + "powered": "true" + } }, { + "id": 596, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11888 + "instrument": "snare", + "note": "8", + "powered": "false" + } }, { + "id": 597, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11889 + "instrument": "snare", + "note": "9", + "powered": "true" + } }, { + "id": 598, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11890 + "instrument": "snare", + "note": "9", + "powered": "false" + } }, { + "id": 599, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11891 + "instrument": "snare", + "note": "10", + "powered": "true" + } }, { + "id": 600, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11892 + "instrument": "snare", + "note": "10", + "powered": "false" + } }, { + "id": 601, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11893 + "instrument": "snare", + "note": "11", + "powered": "true" + } }, { + "id": 602, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11894 + "instrument": "snare", + "note": "11", + "powered": "false" + } }, { + "id": 603, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11895 + "instrument": "snare", + "note": "12", + "powered": "true" + } }, { + "id": 604, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11896 + "instrument": "snare", + "note": "12", + "powered": "false" + } }, { + "id": 605, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11897 + "instrument": "snare", + "note": "13", + "powered": "true" + } }, { + "id": 606, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11898 + "instrument": "snare", + "note": "13", + "powered": "false" + } }, { + "id": 607, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11899 + "instrument": "snare", + "note": "14", + "powered": "true" + } }, { + "id": 608, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11900 + "instrument": "snare", + "note": "14", + "powered": "false" + } }, { + "id": 609, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11901 + "instrument": "snare", + "note": "15", + "powered": "true" + } }, { + "id": 610, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11902 + "instrument": "snare", + "note": "15", + "powered": "false" + } }, { + "id": 611, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11903 + "instrument": "snare", + "note": "16", + "powered": "true" + } }, { + "id": 612, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11904 + "instrument": "snare", + "note": "16", + "powered": "false" + } }, { + "id": 613, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11905 + "instrument": "snare", + "note": "17", + "powered": "true" + } }, { + "id": 614, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11906 + "instrument": "snare", + "note": "17", + "powered": "false" + } }, { + "id": 615, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11907 + "instrument": "snare", + "note": "18", + "powered": "true" + } }, { + "id": 616, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11908 + "instrument": "snare", + "note": "18", + "powered": "false" + } }, { + "id": 617, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11909 + "instrument": "snare", + "note": "19", + "powered": "true" + } }, { + "id": 618, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11910 + "instrument": "snare", + "note": "19", + "powered": "false" + } }, { + "id": 619, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11911 + "instrument": "snare", + "note": "20", + "powered": "true" + } }, { + "id": 620, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11912 + "instrument": "snare", + "note": "20", + "powered": "false" + } }, { + "id": 621, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11913 + "instrument": "snare", + "note": "21", + "powered": "true" + } }, { + "id": 622, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11914 + "instrument": "snare", + "note": "21", + "powered": "false" + } }, { + "id": 623, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11915 + "instrument": "snare", + "note": "22", + "powered": "true" + } }, { + "id": 624, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11916 + "instrument": "snare", + "note": "22", + "powered": "false" + } }, { + "id": 625, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11917 + "instrument": "snare", + "note": "23", + "powered": "true" + } }, { + "id": 626, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11918 + "instrument": "snare", + "note": "23", + "powered": "false" + } }, { + "id": 627, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11919 + "instrument": "snare", + "note": "24", + "powered": "true" + } }, { + "id": 628, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11920 + "instrument": "snare", + "note": "24", + "powered": "false" + } }, { + "id": 629, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11921 + "instrument": "hat", + "note": "0", + "powered": "true" + } }, { + "id": 630, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11922 + "instrument": "hat", + "note": "0", + "powered": "false" + } }, { + "id": 631, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11923 + "instrument": "hat", + "note": "1", + "powered": "true" + } }, { + "id": 632, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11924 + "instrument": "hat", + "note": "1", + "powered": "false" + } }, { + "id": 633, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11925 + "instrument": "hat", + "note": "2", + "powered": "true" + } }, { + "id": 634, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11926 + "instrument": "hat", + "note": "2", + "powered": "false" + } }, { + "id": 635, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11927 + "instrument": "hat", + "note": "3", + "powered": "true" + } }, { + "id": 636, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11928 + "instrument": "hat", + "note": "3", + "powered": "false" + } }, { + "id": 637, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11929 + "instrument": "hat", + "note": "4", + "powered": "true" + } }, { + "id": 638, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11930 + "instrument": "hat", + "note": "4", + "powered": "false" + } }, { + "id": 639, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11931 + "instrument": "hat", + "note": "5", + "powered": "true" + } }, { + "id": 640, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11932 + "instrument": "hat", + "note": "5", + "powered": "false" + } }, { + "id": 641, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11933 + "instrument": "hat", + "note": "6", + "powered": "true" + } }, { + "id": 642, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11934 + "instrument": "hat", + "note": "6", + "powered": "false" + } }, { + "id": 643, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11935 + "instrument": "hat", + "note": "7", + "powered": "true" + } }, { + "id": 644, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11936 + "instrument": "hat", + "note": "7", + "powered": "false" + } }, { + "id": 645, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11937 + "instrument": "hat", + "note": "8", + "powered": "true" + } }, { + "id": 646, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11938 + "instrument": "hat", + "note": "8", + "powered": "false" + } }, { + "id": 647, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11939 + "instrument": "hat", + "note": "9", + "powered": "true" + } }, { + "id": 648, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11940 + "instrument": "hat", + "note": "9", + "powered": "false" + } }, { + "id": 649, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11941 + "instrument": "hat", + "note": "10", + "powered": "true" + } }, { + "id": 650, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11942 + "instrument": "hat", + "note": "10", + "powered": "false" + } }, { + "id": 651, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11943 + "instrument": "hat", + "note": "11", + "powered": "true" + } }, { + "id": 652, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11944 + "instrument": "hat", + "note": "11", + "powered": "false" + } }, { + "id": 653, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11945 + "instrument": "hat", + "note": "12", + "powered": "true" + } }, { + "id": 654, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11946 + "instrument": "hat", + "note": "12", + "powered": "false" + } }, { + "id": 655, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11947 + "instrument": "hat", + "note": "13", + "powered": "true" + } }, { + "id": 656, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11948 + "instrument": "hat", + "note": "13", + "powered": "false" + } }, { + "id": 657, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11949 + "instrument": "hat", + "note": "14", + "powered": "true" + } }, { + "id": 658, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11950 + "instrument": "hat", + "note": "14", + "powered": "false" + } }, { + "id": 659, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11951 + "instrument": "hat", + "note": "15", + "powered": "true" + } }, { + "id": 660, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11952 + "instrument": "hat", + "note": "15", + "powered": "false" + } }, { + "id": 661, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11953 + "instrument": "hat", + "note": "16", + "powered": "true" + } }, { + "id": 662, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11954 + "instrument": "hat", + "note": "16", + "powered": "false" + } }, { + "id": 663, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11955 + "instrument": "hat", + "note": "17", + "powered": "true" + } }, { + "id": 664, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11956 + "instrument": "hat", + "note": "17", + "powered": "false" + } }, { + "id": 665, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11957 + "instrument": "hat", + "note": "18", + "powered": "true" + } }, { + "id": 666, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11958 + "instrument": "hat", + "note": "18", + "powered": "false" + } }, { + "id": 667, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11959 + "instrument": "hat", + "note": "19", + "powered": "true" + } }, { + "id": 668, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11960 + "instrument": "hat", + "note": "19", + "powered": "false" + } }, { + "id": 669, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11961 + "instrument": "hat", + "note": "20", + "powered": "true" + } }, { + "id": 670, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11962 + "instrument": "hat", + "note": "20", + "powered": "false" + } }, { + "id": 671, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11963 + "instrument": "hat", + "note": "21", + "powered": "true" + } }, { + "id": 672, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11964 + "instrument": "hat", + "note": "21", + "powered": "false" + } }, { + "id": 673, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11965 + "instrument": "hat", + "note": "22", + "powered": "true" + } }, { + "id": 674, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11966 + "instrument": "hat", + "note": "22", + "powered": "false" + } }, { + "id": 675, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11967 + "instrument": "hat", + "note": "23", + "powered": "true" + } }, { + "id": 676, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11968 + "instrument": "hat", + "note": "23", + "powered": "false" + } }, { + "id": 677, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11969 + "instrument": "hat", + "note": "24", + "powered": "true" + } }, { + "id": 678, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11970 + "instrument": "hat", + "note": "24", + "powered": "false" + } }, { + "id": 679, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11971 + "instrument": "bass", + "note": "0", + "powered": "true" + } }, { + "id": 680, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11972 + "instrument": "bass", + "note": "0", + "powered": "false" + } }, { + "id": 681, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11973 + "instrument": "bass", + "note": "1", + "powered": "true" + } }, { + "id": 682, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11974 + "instrument": "bass", + "note": "1", + "powered": "false" + } }, { + "id": 683, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11975 + "instrument": "bass", + "note": "2", + "powered": "true" + } }, { + "id": 684, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11976 + "instrument": "bass", + "note": "2", + "powered": "false" + } }, { + "id": 685, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11977 + "instrument": "bass", + "note": "3", + "powered": "true" + } }, { + "id": 686, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11978 - }, - { + "instrument": "bass", + "note": "3", + "powered": "false" + } + }, + { + "id": 687, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11979 + "instrument": "bass", + "note": "4", + "powered": "true" + } }, { + "id": 688, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11980 + "instrument": "bass", + "note": "4", + "powered": "false" + } }, { + "id": 689, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11981 + "instrument": "bass", + "note": "5", + "powered": "true" + } }, { + "id": 690, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11982 + "instrument": "bass", + "note": "5", + "powered": "false" + } }, { + "id": 691, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11983 + "instrument": "bass", + "note": "6", + "powered": "true" + } }, { + "id": 692, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11984 + "instrument": "bass", + "note": "6", + "powered": "false" + } }, { + "id": 693, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11985 + "instrument": "bass", + "note": "7", + "powered": "true" + } }, { + "id": 694, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11986 + "instrument": "bass", + "note": "7", + "powered": "false" + } }, { + "id": 695, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11987 + "instrument": "bass", + "note": "8", + "powered": "true" + } }, { + "id": 696, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 11988 + "instrument": "bass", + "note": "8", + "powered": "false" + } }, { + "id": 697, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 11989 + "instrument": "bass", + "note": "9", + "powered": "true" + } }, { + "id": 698, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 11990 + "instrument": "bass", + "note": "9", + "powered": "false" + } }, { + "id": 699, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 11991 + "instrument": "bass", + "note": "10", + "powered": "true" + } }, { + "id": 700, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 11992 + "instrument": "bass", + "note": "10", + "powered": "false" + } }, { + "id": 701, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 11993 + "instrument": "bass", + "note": "11", + "powered": "true" + } }, { + "id": 702, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 11994 + "instrument": "bass", + "note": "11", + "powered": "false" + } }, { + "id": 703, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 11995 + "instrument": "bass", + "note": "12", + "powered": "true" + } }, { + "id": 704, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 11996 + "instrument": "bass", + "note": "12", + "powered": "false" + } }, { + "id": 705, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 11997 + "instrument": "bass", + "note": "13", + "powered": "true" + } }, { + "id": 706, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 11998 + "instrument": "bass", + "note": "13", + "powered": "false" + } }, { + "id": 707, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 11999 + "instrument": "bass", + "note": "14", + "powered": "true" + } }, { + "id": 708, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12000 + "instrument": "bass", + "note": "14", + "powered": "false" + } }, { + "id": 709, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12001 + "instrument": "bass", + "note": "15", + "powered": "true" + } }, { + "id": 710, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12002 + "instrument": "bass", + "note": "15", + "powered": "false" + } }, { + "id": 711, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12003 + "instrument": "bass", + "note": "16", + "powered": "true" + } }, { + "id": 712, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12004 + "instrument": "bass", + "note": "16", + "powered": "false" + } }, { + "id": 713, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12005 + "instrument": "bass", + "note": "17", + "powered": "true" + } }, { + "id": 714, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12006 + "instrument": "bass", + "note": "17", + "powered": "false" + } }, { + "id": 715, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12007 + "instrument": "bass", + "note": "18", + "powered": "true" + } }, { + "id": 716, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12008 + "instrument": "bass", + "note": "18", + "powered": "false" + } }, { + "id": 717, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12009 + "instrument": "bass", + "note": "19", + "powered": "true" + } }, { + "id": 718, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12010 + "instrument": "bass", + "note": "19", + "powered": "false" + } }, { + "id": 719, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12011 + "instrument": "bass", + "note": "20", + "powered": "true" + } }, { + "id": 720, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12012 + "instrument": "bass", + "note": "20", + "powered": "false" + } }, { + "id": 721, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12013 + "instrument": "bass", + "note": "21", + "powered": "true" + } }, { + "id": 722, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12014 + "instrument": "bass", + "note": "21", + "powered": "false" + } }, { + "id": 723, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12015 + "instrument": "bass", + "note": "22", + "powered": "true" + } }, { + "id": 724, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12016 + "instrument": "bass", + "note": "22", + "powered": "false" + } }, { + "id": 725, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12017 + "instrument": "bass", + "note": "23", + "powered": "true" + } }, { + "id": 726, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12018 + "instrument": "bass", + "note": "23", + "powered": "false" + } }, { + "id": 727, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12019 + "instrument": "bass", + "note": "24", + "powered": "true" + } }, { + "id": 728, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12020 + "instrument": "bass", + "note": "24", + "powered": "false" + } }, { + "id": 729, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12021 + "instrument": "flute", + "note": "0", + "powered": "true" + } }, { + "id": 730, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12022 + "instrument": "flute", + "note": "0", + "powered": "false" + } }, { + "id": 731, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12023 + "instrument": "flute", + "note": "1", + "powered": "true" + } }, { + "id": 732, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12024 + "instrument": "flute", + "note": "1", + "powered": "false" + } }, { + "id": 733, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12025 + "instrument": "flute", + "note": "2", + "powered": "true" + } }, { + "id": 734, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12026 + "instrument": "flute", + "note": "2", + "powered": "false" + } }, { + "id": 735, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12027 + "instrument": "flute", + "note": "3", + "powered": "true" + } }, { + "id": 736, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12028 + "instrument": "flute", + "note": "3", + "powered": "false" + } }, { + "id": 737, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12029 + "instrument": "flute", + "note": "4", + "powered": "true" + } }, { + "id": 738, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12030 + "instrument": "flute", + "note": "4", + "powered": "false" + } }, { + "id": 739, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12031 + "instrument": "flute", + "note": "5", + "powered": "true" + } }, { + "id": 740, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12032 + "instrument": "flute", + "note": "5", + "powered": "false" + } }, { + "id": 741, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12033 + "instrument": "flute", + "note": "6", + "powered": "true" + } }, { + "id": 742, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12034 + "instrument": "flute", + "note": "6", + "powered": "false" + } }, { + "id": 743, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12035 + "instrument": "flute", + "note": "7", + "powered": "true" + } }, { + "id": 744, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12036 + "instrument": "flute", + "note": "7", + "powered": "false" + } }, { + "id": 745, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12037 + "instrument": "flute", + "note": "8", + "powered": "true" + } }, { + "id": 746, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12038 + "instrument": "flute", + "note": "8", + "powered": "false" + } }, { + "id": 747, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12039 + "instrument": "flute", + "note": "9", + "powered": "true" + } }, { + "id": 748, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12040 + "instrument": "flute", + "note": "9", + "powered": "false" + } }, { + "id": 749, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12041 + "instrument": "flute", + "note": "10", + "powered": "true" + } }, { + "id": 750, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12042 + "instrument": "flute", + "note": "10", + "powered": "false" + } }, { + "id": 751, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12043 + "instrument": "flute", + "note": "11", + "powered": "true" + } }, { + "id": 752, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12044 + "instrument": "flute", + "note": "11", + "powered": "false" + } }, { + "id": 753, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12045 + "instrument": "flute", + "note": "12", + "powered": "true" + } }, { + "id": 754, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12046 + "instrument": "flute", + "note": "12", + "powered": "false" + } }, { + "id": 755, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12047 + "instrument": "flute", + "note": "13", + "powered": "true" + } }, { + "id": 756, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12048 + "instrument": "flute", + "note": "13", + "powered": "false" + } }, { + "id": 757, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12049 + "instrument": "flute", + "note": "14", + "powered": "true" + } }, { + "id": 758, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12050 + "instrument": "flute", + "note": "14", + "powered": "false" + } }, { + "id": 759, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12051 + "instrument": "flute", + "note": "15", + "powered": "true" + } }, { + "id": 760, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12052 + "instrument": "flute", + "note": "15", + "powered": "false" + } }, { + "id": 761, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12053 + "instrument": "flute", + "note": "16", + "powered": "true" + } }, { + "id": 762, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12054 + "instrument": "flute", + "note": "16", + "powered": "false" + } }, { + "id": 763, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12055 + "instrument": "flute", + "note": "17", + "powered": "true" + } }, { + "id": 764, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12056 + "instrument": "flute", + "note": "17", + "powered": "false" + } }, { + "id": 765, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12057 + "instrument": "flute", + "note": "18", + "powered": "true" + } }, { + "id": 766, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12058 + "instrument": "flute", + "note": "18", + "powered": "false" + } }, { + "id": 767, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12059 + "instrument": "flute", + "note": "19", + "powered": "true" + } }, { + "id": 768, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12060 + "instrument": "flute", + "note": "19", + "powered": "false" + } }, { + "id": 769, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12061 + "instrument": "flute", + "note": "20", + "powered": "true" + } }, { + "id": 770, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12062 + "instrument": "flute", + "note": "20", + "powered": "false" + } }, { + "id": 771, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12063 + "instrument": "flute", + "note": "21", + "powered": "true" + } }, { + "id": 772, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12064 + "instrument": "flute", + "note": "21", + "powered": "false" + } }, { + "id": 773, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12065 + "instrument": "flute", + "note": "22", + "powered": "true" + } }, { + "id": 774, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12066 + "instrument": "flute", + "note": "22", + "powered": "false" + } }, { + "id": 775, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12067 + "instrument": "flute", + "note": "23", + "powered": "true" + } }, { + "id": 776, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12068 + "instrument": "flute", + "note": "23", + "powered": "false" + } }, { + "id": 777, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12069 + "instrument": "flute", + "note": "24", + "powered": "true" + } }, { + "id": 778, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12070 + "instrument": "flute", + "note": "24", + "powered": "false" + } }, { + "id": 779, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12071 + "instrument": "bell", + "note": "0", + "powered": "true" + } }, { + "id": 780, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12072 + "instrument": "bell", + "note": "0", + "powered": "false" + } }, { + "id": 781, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12073 + "instrument": "bell", + "note": "1", + "powered": "true" + } }, { + "id": 782, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12074 + "instrument": "bell", + "note": "1", + "powered": "false" + } }, { + "id": 783, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12075 + "instrument": "bell", + "note": "2", + "powered": "true" + } }, { + "id": 784, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12076 + "instrument": "bell", + "note": "2", + "powered": "false" + } }, { + "id": 785, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12077 + "instrument": "bell", + "note": "3", + "powered": "true" + } }, { + "id": 786, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12078 + "instrument": "bell", + "note": "3", + "powered": "false" + } }, { + "id": 787, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12079 + "instrument": "bell", + "note": "4", + "powered": "true" + } }, { + "id": 788, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12080 + "instrument": "bell", + "note": "4", + "powered": "false" + } }, { + "id": 789, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12081 + "instrument": "bell", + "note": "5", + "powered": "true" + } }, { + "id": 790, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12082 + "instrument": "bell", + "note": "5", + "powered": "false" + } }, { + "id": 791, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12083 + "instrument": "bell", + "note": "6", + "powered": "true" + } }, { + "id": 792, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12084 + "instrument": "bell", + "note": "6", + "powered": "false" + } }, { + "id": 793, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12085 + "instrument": "bell", + "note": "7", + "powered": "true" + } }, { + "id": 794, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12086 + "instrument": "bell", + "note": "7", + "powered": "false" + } }, { + "id": 795, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12087 + "instrument": "bell", + "note": "8", + "powered": "true" + } }, { + "id": 796, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12088 - } - ] - }, - "minecraft:mossy_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12089 + "instrument": "bell", + "note": "8", + "powered": "false" + } }, { + "id": 797, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12090 + "instrument": "bell", + "note": "9", + "powered": "true" + } }, { + "id": 798, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12091 + "instrument": "bell", + "note": "9", + "powered": "false" + } }, { + "id": 799, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12092, - "default": true + "instrument": "bell", + "note": "10", + "powered": "true" + } }, { + "id": 800, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12093 + "instrument": "bell", + "note": "10", + "powered": "false" + } }, { + "id": 801, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12094 + "instrument": "bell", + "note": "11", + "powered": "true" + } }, { + "id": 802, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12095 + "instrument": "bell", + "note": "11", + "powered": "false" + } }, { + "id": 803, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12096 + "instrument": "bell", + "note": "12", + "powered": "true" + } }, { + "id": 804, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12097 + "instrument": "bell", + "note": "12", + "powered": "false" + } }, { + "id": 805, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12098 + "instrument": "bell", + "note": "13", + "powered": "true" + } }, { + "id": 806, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12099 + "instrument": "bell", + "note": "13", + "powered": "false" + } }, { + "id": 807, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12100 + "instrument": "bell", + "note": "14", + "powered": "true" + } }, { + "id": 808, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12101 + "instrument": "bell", + "note": "14", + "powered": "false" + } }, { + "id": 809, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12102 + "instrument": "bell", + "note": "15", + "powered": "true" + } }, { + "id": 810, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12103 + "instrument": "bell", + "note": "15", + "powered": "false" + } }, { + "id": 811, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12104 + "instrument": "bell", + "note": "16", + "powered": "true" + } }, { + "id": 812, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12105 + "instrument": "bell", + "note": "16", + "powered": "false" + } }, { + "id": 813, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12106 + "instrument": "bell", + "note": "17", + "powered": "true" + } }, { + "id": 814, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12107 + "instrument": "bell", + "note": "17", + "powered": "false" + } }, { + "id": 815, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12108 + "instrument": "bell", + "note": "18", + "powered": "true" + } }, { + "id": 816, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12109 + "instrument": "bell", + "note": "18", + "powered": "false" + } }, { + "id": 817, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12110 + "instrument": "bell", + "note": "19", + "powered": "true" + } }, { + "id": 818, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12111 + "instrument": "bell", + "note": "19", + "powered": "false" + } }, { + "id": 819, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12112 + "instrument": "bell", + "note": "20", + "powered": "true" + } }, { + "id": 820, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12113 + "instrument": "bell", + "note": "20", + "powered": "false" + } }, { + "id": 821, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12114 + "instrument": "bell", + "note": "21", + "powered": "true" + } }, { + "id": 822, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12115 + "instrument": "bell", + "note": "21", + "powered": "false" + } }, { + "id": 823, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12116 + "instrument": "bell", + "note": "22", + "powered": "true" + } }, { + "id": 824, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12117 + "instrument": "bell", + "note": "22", + "powered": "false" + } }, { + "id": 825, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12118 + "instrument": "bell", + "note": "23", + "powered": "true" + } }, { + "id": 826, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12119 + "instrument": "bell", + "note": "23", + "powered": "false" + } }, { + "id": 827, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12120 + "instrument": "bell", + "note": "24", + "powered": "true" + } }, { + "id": 828, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12121 + "instrument": "bell", + "note": "24", + "powered": "false" + } }, { + "id": 829, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12122 + "instrument": "guitar", + "note": "0", + "powered": "true" + } }, { + "id": 830, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12123 + "instrument": "guitar", + "note": "0", + "powered": "false" + } }, { + "id": 831, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12124 + "instrument": "guitar", + "note": "1", + "powered": "true" + } }, { + "id": 832, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12125 + "instrument": "guitar", + "note": "1", + "powered": "false" + } }, { + "id": 833, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12126 + "instrument": "guitar", + "note": "2", + "powered": "true" + } }, { + "id": 834, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12127 + "instrument": "guitar", + "note": "2", + "powered": "false" + } }, { + "id": 835, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12128 + "instrument": "guitar", + "note": "3", + "powered": "true" + } }, { + "id": 836, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12129 + "instrument": "guitar", + "note": "3", + "powered": "false" + } }, { + "id": 837, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12130 + "instrument": "guitar", + "note": "4", + "powered": "true" + } }, { + "id": 838, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12131 + "instrument": "guitar", + "note": "4", + "powered": "false" + } }, { + "id": 839, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12132 + "instrument": "guitar", + "note": "5", + "powered": "true" + } }, { + "id": 840, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12133 + "instrument": "guitar", + "note": "5", + "powered": "false" + } }, { + "id": 841, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12134 + "instrument": "guitar", + "note": "6", + "powered": "true" + } }, { + "id": 842, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12135 + "instrument": "guitar", + "note": "6", + "powered": "false" + } }, { + "id": 843, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12136 + "instrument": "guitar", + "note": "7", + "powered": "true" + } }, { + "id": 844, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12137 + "instrument": "guitar", + "note": "7", + "powered": "false" + } }, { + "id": 845, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12138 + "instrument": "guitar", + "note": "8", + "powered": "true" + } }, { + "id": 846, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12139 + "instrument": "guitar", + "note": "8", + "powered": "false" + } }, { + "id": 847, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12140 + "instrument": "guitar", + "note": "9", + "powered": "true" + } }, { + "id": 848, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12141 + "instrument": "guitar", + "note": "9", + "powered": "false" + } }, { + "id": 849, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12142 + "instrument": "guitar", + "note": "10", + "powered": "true" + } }, { + "id": 850, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12143 + "instrument": "guitar", + "note": "10", + "powered": "false" + } }, { + "id": 851, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12144 + "instrument": "guitar", + "note": "11", + "powered": "true" + } }, { + "id": 852, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12145 + "instrument": "guitar", + "note": "11", + "powered": "false" + } }, { + "id": 853, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12146 + "instrument": "guitar", + "note": "12", + "powered": "true" + } }, { + "id": 854, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12147 + "instrument": "guitar", + "note": "12", + "powered": "false" + } }, { + "id": 855, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12148 + "instrument": "guitar", + "note": "13", + "powered": "true" + } }, { + "id": 856, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12149 + "instrument": "guitar", + "note": "13", + "powered": "false" + } }, { + "id": 857, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12150 + "instrument": "guitar", + "note": "14", + "powered": "true" + } }, { + "id": 858, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12151 + "instrument": "guitar", + "note": "14", + "powered": "false" + } }, { + "id": 859, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12152 + "instrument": "guitar", + "note": "15", + "powered": "true" + } }, { + "id": 860, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12153 + "instrument": "guitar", + "note": "15", + "powered": "false" + } }, { + "id": 861, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12154 + "instrument": "guitar", + "note": "16", + "powered": "true" + } }, { + "id": 862, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12155 + "instrument": "guitar", + "note": "16", + "powered": "false" + } }, { + "id": 863, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12156 + "instrument": "guitar", + "note": "17", + "powered": "true" + } }, { + "id": 864, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12157 + "instrument": "guitar", + "note": "17", + "powered": "false" + } }, { + "id": 865, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12158 + "instrument": "guitar", + "note": "18", + "powered": "true" + } }, { + "id": 866, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12159 + "instrument": "guitar", + "note": "18", + "powered": "false" + } }, { + "id": 867, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12160 + "instrument": "guitar", + "note": "19", + "powered": "true" + } }, { + "id": 868, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12161 + "instrument": "guitar", + "note": "19", + "powered": "false" + } }, { + "id": 869, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12162 + "instrument": "guitar", + "note": "20", + "powered": "true" + } }, { + "id": 870, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12163 + "instrument": "guitar", + "note": "20", + "powered": "false" + } }, { + "id": 871, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12164 + "instrument": "guitar", + "note": "21", + "powered": "true" + } }, { + "id": 872, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12165 + "instrument": "guitar", + "note": "21", + "powered": "false" + } }, { + "id": 873, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12166 + "instrument": "guitar", + "note": "22", + "powered": "true" + } }, { + "id": 874, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12167 + "instrument": "guitar", + "note": "22", + "powered": "false" + } }, { + "id": 875, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12168 + "instrument": "guitar", + "note": "23", + "powered": "true" + } }, { + "id": 876, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12169 + "instrument": "guitar", + "note": "23", + "powered": "false" + } }, { + "id": 877, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12170 + "instrument": "guitar", + "note": "24", + "powered": "true" + } }, { + "id": 878, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12171 + "instrument": "guitar", + "note": "24", + "powered": "false" + } }, { + "id": 879, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12172 + "instrument": "chime", + "note": "0", + "powered": "true" + } }, { + "id": 880, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12173 + "instrument": "chime", + "note": "0", + "powered": "false" + } }, { + "id": 881, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12174 + "instrument": "chime", + "note": "1", + "powered": "true" + } }, { + "id": 882, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12175 + "instrument": "chime", + "note": "1", + "powered": "false" + } }, { + "id": 883, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12176 + "instrument": "chime", + "note": "2", + "powered": "true" + } }, { + "id": 884, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12177 + "instrument": "chime", + "note": "2", + "powered": "false" + } }, { + "id": 885, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12178 + "instrument": "chime", + "note": "3", + "powered": "true" + } }, { + "id": 886, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12179 + "instrument": "chime", + "note": "3", + "powered": "false" + } }, { + "id": 887, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12180 + "instrument": "chime", + "note": "4", + "powered": "true" + } }, { + "id": 888, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12181 + "instrument": "chime", + "note": "4", + "powered": "false" + } }, { + "id": 889, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12182 + "instrument": "chime", + "note": "5", + "powered": "true" + } }, { + "id": 890, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12183 + "instrument": "chime", + "note": "5", + "powered": "false" + } }, { + "id": 891, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12184 + "instrument": "chime", + "note": "6", + "powered": "true" + } }, { + "id": 892, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12185 + "instrument": "chime", + "note": "6", + "powered": "false" + } }, { + "id": 893, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12186 + "instrument": "chime", + "note": "7", + "powered": "true" + } }, { + "id": 894, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12187 + "instrument": "chime", + "note": "7", + "powered": "false" + } }, { + "id": 895, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12188 + "instrument": "chime", + "note": "8", + "powered": "true" + } }, { + "id": 896, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12189 + "instrument": "chime", + "note": "8", + "powered": "false" + } }, { + "id": 897, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12190 + "instrument": "chime", + "note": "9", + "powered": "true" + } }, { + "id": 898, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12191 + "instrument": "chime", + "note": "9", + "powered": "false" + } }, { + "id": 899, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12192 + "instrument": "chime", + "note": "10", + "powered": "true" + } }, { + "id": 900, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12193 + "instrument": "chime", + "note": "10", + "powered": "false" + } }, { + "id": 901, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12194 + "instrument": "chime", + "note": "11", + "powered": "true" + } }, { + "id": 902, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12195 + "instrument": "chime", + "note": "11", + "powered": "false" + } }, { + "id": 903, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12196 + "instrument": "chime", + "note": "12", + "powered": "true" + } }, { + "id": 904, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12197 + "instrument": "chime", + "note": "12", + "powered": "false" + } }, { + "id": 905, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12198 + "instrument": "chime", + "note": "13", + "powered": "true" + } }, { + "id": 906, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12199 + "instrument": "chime", + "note": "13", + "powered": "false" + } }, { + "id": 907, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12200 + "instrument": "chime", + "note": "14", + "powered": "true" + } }, { + "id": 908, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12201 + "instrument": "chime", + "note": "14", + "powered": "false" + } }, { + "id": 909, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12202 + "instrument": "chime", + "note": "15", + "powered": "true" + } }, { + "id": 910, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12203 + "instrument": "chime", + "note": "15", + "powered": "false" + } }, { + "id": 911, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12204 + "instrument": "chime", + "note": "16", + "powered": "true" + } }, { + "id": 912, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12205 + "instrument": "chime", + "note": "16", + "powered": "false" + } }, { + "id": 913, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12206 + "instrument": "chime", + "note": "17", + "powered": "true" + } }, { + "id": 914, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12207 + "instrument": "chime", + "note": "17", + "powered": "false" + } }, { + "id": 915, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12208 + "instrument": "chime", + "note": "18", + "powered": "true" + } }, { + "id": 916, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12209 + "instrument": "chime", + "note": "18", + "powered": "false" + } }, { + "id": 917, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12210 + "instrument": "chime", + "note": "19", + "powered": "true" + } }, { + "id": 918, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12211 + "instrument": "chime", + "note": "19", + "powered": "false" + } }, { + "id": 919, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12212 + "instrument": "chime", + "note": "20", + "powered": "true" + } }, { + "id": 920, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12213 + "instrument": "chime", + "note": "20", + "powered": "false" + } }, { + "id": 921, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12214 + "instrument": "chime", + "note": "21", + "powered": "true" + } }, { + "id": 922, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12215 + "instrument": "chime", + "note": "21", + "powered": "false" + } }, { + "id": 923, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12216 + "instrument": "chime", + "note": "22", + "powered": "true" + } }, { + "id": 924, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12217 + "instrument": "chime", + "note": "22", + "powered": "false" + } }, { + "id": 925, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12218 + "instrument": "chime", + "note": "23", + "powered": "true" + } }, { + "id": 926, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12219 + "instrument": "chime", + "note": "23", + "powered": "false" + } }, { + "id": 927, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12220 + "instrument": "chime", + "note": "24", + "powered": "true" + } }, { + "id": 928, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12221 + "instrument": "chime", + "note": "24", + "powered": "false" + } }, { + "id": 929, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12222 + "instrument": "xylophone", + "note": "0", + "powered": "true" + } }, { + "id": 930, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12223 + "instrument": "xylophone", + "note": "0", + "powered": "false" + } }, { + "id": 931, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12224 + "instrument": "xylophone", + "note": "1", + "powered": "true" + } }, { + "id": 932, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12225 + "instrument": "xylophone", + "note": "1", + "powered": "false" + } }, { + "id": 933, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12226 + "instrument": "xylophone", + "note": "2", + "powered": "true" + } }, { + "id": 934, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12227 + "instrument": "xylophone", + "note": "2", + "powered": "false" + } }, { + "id": 935, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12228 + "instrument": "xylophone", + "note": "3", + "powered": "true" + } }, { + "id": 936, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12229 + "instrument": "xylophone", + "note": "3", + "powered": "false" + } }, { + "id": 937, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12230 + "instrument": "xylophone", + "note": "4", + "powered": "true" + } }, { + "id": 938, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12231 + "instrument": "xylophone", + "note": "4", + "powered": "false" + } }, { + "id": 939, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12232 + "instrument": "xylophone", + "note": "5", + "powered": "true" + } }, { + "id": 940, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12233 + "instrument": "xylophone", + "note": "5", + "powered": "false" + } }, { + "id": 941, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12234 + "instrument": "xylophone", + "note": "6", + "powered": "true" + } }, { + "id": 942, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12235 + "instrument": "xylophone", + "note": "6", + "powered": "false" + } }, { + "id": 943, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12236 + "instrument": "xylophone", + "note": "7", + "powered": "true" + } }, { + "id": 944, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12237 + "instrument": "xylophone", + "note": "7", + "powered": "false" + } }, { + "id": 945, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12238 + "instrument": "xylophone", + "note": "8", + "powered": "true" + } }, { + "id": 946, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12239 + "instrument": "xylophone", + "note": "8", + "powered": "false" + } }, { + "id": 947, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12240 + "instrument": "xylophone", + "note": "9", + "powered": "true" + } }, { + "id": 948, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12241 + "instrument": "xylophone", + "note": "9", + "powered": "false" + } }, { + "id": 949, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12242 + "instrument": "xylophone", + "note": "10", + "powered": "true" + } }, { + "id": 950, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12243 + "instrument": "xylophone", + "note": "10", + "powered": "false" + } }, { + "id": 951, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12244 + "instrument": "xylophone", + "note": "11", + "powered": "true" + } }, { + "id": 952, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12245 + "instrument": "xylophone", + "note": "11", + "powered": "false" + } }, { + "id": 953, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12246 + "instrument": "xylophone", + "note": "12", + "powered": "true" + } }, { + "id": 954, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12247 + "instrument": "xylophone", + "note": "12", + "powered": "false" + } }, { + "id": 955, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12248 + "instrument": "xylophone", + "note": "13", + "powered": "true" + } }, { + "id": 956, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12249 + "instrument": "xylophone", + "note": "13", + "powered": "false" + } }, { + "id": 957, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12250 + "instrument": "xylophone", + "note": "14", + "powered": "true" + } }, { + "id": 958, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12251 + "instrument": "xylophone", + "note": "14", + "powered": "false" + } }, { + "id": 959, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12252 + "instrument": "xylophone", + "note": "15", + "powered": "true" + } }, { + "id": 960, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12253 + "instrument": "xylophone", + "note": "15", + "powered": "false" + } }, { + "id": 961, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12254 + "instrument": "xylophone", + "note": "16", + "powered": "true" + } }, { + "id": 962, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12255 + "instrument": "xylophone", + "note": "16", + "powered": "false" + } }, { + "id": 963, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12256 + "instrument": "xylophone", + "note": "17", + "powered": "true" + } }, { + "id": 964, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12257 + "instrument": "xylophone", + "note": "17", + "powered": "false" + } }, { + "id": 965, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12258 + "instrument": "xylophone", + "note": "18", + "powered": "true" + } }, { + "id": 966, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12259 + "instrument": "xylophone", + "note": "18", + "powered": "false" + } }, { + "id": 967, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12260 + "instrument": "xylophone", + "note": "19", + "powered": "true" + } }, { + "id": 968, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12261 + "instrument": "xylophone", + "note": "19", + "powered": "false" + } }, { + "id": 969, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12262 + "instrument": "xylophone", + "note": "20", + "powered": "true" + } }, { + "id": 970, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12263 + "instrument": "xylophone", + "note": "20", + "powered": "false" + } }, { + "id": 971, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12264 + "instrument": "xylophone", + "note": "21", + "powered": "true" + } }, { + "id": 972, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12265 + "instrument": "xylophone", + "note": "21", + "powered": "false" + } }, { + "id": 973, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12266 + "instrument": "xylophone", + "note": "22", + "powered": "true" + } }, { + "id": 974, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12267 + "instrument": "xylophone", + "note": "22", + "powered": "false" + } }, { + "id": 975, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12268 + "instrument": "xylophone", + "note": "23", + "powered": "true" + } }, { + "id": 976, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12269 + "instrument": "xylophone", + "note": "23", + "powered": "false" + } }, { + "id": 977, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12270 + "instrument": "xylophone", + "note": "24", + "powered": "true" + } }, { + "id": 978, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12271 + "instrument": "xylophone", + "note": "24", + "powered": "false" + } }, { + "id": 979, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12272 + "instrument": "iron_xylophone", + "note": "0", + "powered": "true" + } }, { + "id": 980, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12273 + "instrument": "iron_xylophone", + "note": "0", + "powered": "false" + } }, { + "id": 981, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12274 + "instrument": "iron_xylophone", + "note": "1", + "powered": "true" + } }, { + "id": 982, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12275 + "instrument": "iron_xylophone", + "note": "1", + "powered": "false" + } }, { + "id": 983, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12276 + "instrument": "iron_xylophone", + "note": "2", + "powered": "true" + } }, { + "id": 984, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12277 + "instrument": "iron_xylophone", + "note": "2", + "powered": "false" + } }, { + "id": 985, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12278 + "instrument": "iron_xylophone", + "note": "3", + "powered": "true" + } }, { + "id": 986, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12279 + "instrument": "iron_xylophone", + "note": "3", + "powered": "false" + } }, { + "id": 987, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12280 + "instrument": "iron_xylophone", + "note": "4", + "powered": "true" + } }, { + "id": 988, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12281 + "instrument": "iron_xylophone", + "note": "4", + "powered": "false" + } }, { + "id": 989, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12282 + "instrument": "iron_xylophone", + "note": "5", + "powered": "true" + } }, { + "id": 990, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12283 + "instrument": "iron_xylophone", + "note": "5", + "powered": "false" + } }, { + "id": 991, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12284 + "instrument": "iron_xylophone", + "note": "6", + "powered": "true" + } }, { + "id": 992, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12285 + "instrument": "iron_xylophone", + "note": "6", + "powered": "false" + } }, { + "id": 993, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12286 + "instrument": "iron_xylophone", + "note": "7", + "powered": "true" + } }, { + "id": 994, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12287 + "instrument": "iron_xylophone", + "note": "7", + "powered": "false" + } }, { + "id": 995, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12288 + "instrument": "iron_xylophone", + "note": "8", + "powered": "true" + } }, { + "id": 996, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12289 + "instrument": "iron_xylophone", + "note": "8", + "powered": "false" + } }, { + "id": 997, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12290 + "instrument": "iron_xylophone", + "note": "9", + "powered": "true" + } }, { + "id": 998, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12291 + "instrument": "iron_xylophone", + "note": "9", + "powered": "false" + } }, { + "id": 999, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12292 + "instrument": "iron_xylophone", + "note": "10", + "powered": "true" + } }, { + "id": 1000, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12293 + "instrument": "iron_xylophone", + "note": "10", + "powered": "false" + } }, { + "id": 1001, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12294 + "instrument": "iron_xylophone", + "note": "11", + "powered": "true" + } }, { + "id": 1002, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12295 + "instrument": "iron_xylophone", + "note": "11", + "powered": "false" + } }, { + "id": 1003, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12296 + "instrument": "iron_xylophone", + "note": "12", + "powered": "true" + } }, { + "id": 1004, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12297 + "instrument": "iron_xylophone", + "note": "12", + "powered": "false" + } }, { + "id": 1005, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12298 + "instrument": "iron_xylophone", + "note": "13", + "powered": "true" + } }, { + "id": 1006, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12299 + "instrument": "iron_xylophone", + "note": "13", + "powered": "false" + } }, { + "id": 1007, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12300 + "instrument": "iron_xylophone", + "note": "14", + "powered": "true" + } }, { + "id": 1008, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12301 + "instrument": "iron_xylophone", + "note": "14", + "powered": "false" + } }, { + "id": 1009, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12302 + "instrument": "iron_xylophone", + "note": "15", + "powered": "true" + } }, { + "id": 1010, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12303 + "instrument": "iron_xylophone", + "note": "15", + "powered": "false" + } }, { + "id": 1011, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12304 + "instrument": "iron_xylophone", + "note": "16", + "powered": "true" + } }, { + "id": 1012, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12305 + "instrument": "iron_xylophone", + "note": "16", + "powered": "false" + } }, { + "id": 1013, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12306 + "instrument": "iron_xylophone", + "note": "17", + "powered": "true" + } }, { + "id": 1014, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12307 + "instrument": "iron_xylophone", + "note": "17", + "powered": "false" + } }, { + "id": 1015, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12308 + "instrument": "iron_xylophone", + "note": "18", + "powered": "true" + } }, { + "id": 1016, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12309 + "instrument": "iron_xylophone", + "note": "18", + "powered": "false" + } }, { + "id": 1017, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12310 + "instrument": "iron_xylophone", + "note": "19", + "powered": "true" + } }, { + "id": 1018, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12311 + "instrument": "iron_xylophone", + "note": "19", + "powered": "false" + } }, { + "id": 1019, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12312 + "instrument": "iron_xylophone", + "note": "20", + "powered": "true" + } }, { + "id": 1020, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12313 + "instrument": "iron_xylophone", + "note": "20", + "powered": "false" + } }, { + "id": 1021, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12314 + "instrument": "iron_xylophone", + "note": "21", + "powered": "true" + } }, { + "id": 1022, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12315 - }, - { - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12316 + "instrument": "iron_xylophone", + "note": "21", + "powered": "false" + } }, { + "id": 1023, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12317 + "instrument": "iron_xylophone", + "note": "22", + "powered": "true" + } }, { + "id": 1024, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12318 + "instrument": "iron_xylophone", + "note": "22", + "powered": "false" + } }, { + "id": 1025, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12319 + "instrument": "iron_xylophone", + "note": "23", + "powered": "true" + } }, { + "id": 1026, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12320 + "instrument": "iron_xylophone", + "note": "23", + "powered": "false" + } }, { + "id": 1027, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12321 + "instrument": "iron_xylophone", + "note": "24", + "powered": "true" + } }, { + "id": 1028, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12322 + "instrument": "iron_xylophone", + "note": "24", + "powered": "false" + } }, { + "id": 1029, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12323 + "instrument": "cow_bell", + "note": "0", + "powered": "true" + } }, { + "id": 1030, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12324 + "instrument": "cow_bell", + "note": "0", + "powered": "false" + } }, { + "id": 1031, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12325 + "instrument": "cow_bell", + "note": "1", + "powered": "true" + } }, { + "id": 1032, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12326 + "instrument": "cow_bell", + "note": "1", + "powered": "false" + } }, { + "id": 1033, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12327 + "instrument": "cow_bell", + "note": "2", + "powered": "true" + } }, { + "id": 1034, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12328 + "instrument": "cow_bell", + "note": "2", + "powered": "false" + } }, { + "id": 1035, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12329 + "instrument": "cow_bell", + "note": "3", + "powered": "true" + } }, { + "id": 1036, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12330 + "instrument": "cow_bell", + "note": "3", + "powered": "false" + } }, { + "id": 1037, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12331 + "instrument": "cow_bell", + "note": "4", + "powered": "true" + } }, { + "id": 1038, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12332 + "instrument": "cow_bell", + "note": "4", + "powered": "false" + } }, { + "id": 1039, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12333 + "instrument": "cow_bell", + "note": "5", + "powered": "true" + } }, { + "id": 1040, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12334 + "instrument": "cow_bell", + "note": "5", + "powered": "false" + } }, { + "id": 1041, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12335 + "instrument": "cow_bell", + "note": "6", + "powered": "true" + } }, { + "id": 1042, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12336 + "instrument": "cow_bell", + "note": "6", + "powered": "false" + } }, { + "id": 1043, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12337 + "instrument": "cow_bell", + "note": "7", + "powered": "true" + } }, { + "id": 1044, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12338 + "instrument": "cow_bell", + "note": "7", + "powered": "false" + } }, { + "id": 1045, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12339 + "instrument": "cow_bell", + "note": "8", + "powered": "true" + } }, { + "id": 1046, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12340 + "instrument": "cow_bell", + "note": "8", + "powered": "false" + } }, { + "id": 1047, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12341 + "instrument": "cow_bell", + "note": "9", + "powered": "true" + } }, { + "id": 1048, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12342 + "instrument": "cow_bell", + "note": "9", + "powered": "false" + } }, { + "id": 1049, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12343 + "instrument": "cow_bell", + "note": "10", + "powered": "true" + } }, { + "id": 1050, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12344 + "instrument": "cow_bell", + "note": "10", + "powered": "false" + } }, { + "id": 1051, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12345 + "instrument": "cow_bell", + "note": "11", + "powered": "true" + } }, { + "id": 1052, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12346 + "instrument": "cow_bell", + "note": "11", + "powered": "false" + } }, { + "id": 1053, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12347 + "instrument": "cow_bell", + "note": "12", + "powered": "true" + } }, { + "id": 1054, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12348 + "instrument": "cow_bell", + "note": "12", + "powered": "false" + } }, { + "id": 1055, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12349 + "instrument": "cow_bell", + "note": "13", + "powered": "true" + } }, { + "id": 1056, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12350 + "instrument": "cow_bell", + "note": "13", + "powered": "false" + } }, { + "id": 1057, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12351 + "instrument": "cow_bell", + "note": "14", + "powered": "true" + } }, { + "id": 1058, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12352 + "instrument": "cow_bell", + "note": "14", + "powered": "false" + } }, { + "id": 1059, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12353 + "instrument": "cow_bell", + "note": "15", + "powered": "true" + } }, { + "id": 1060, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12354 + "instrument": "cow_bell", + "note": "15", + "powered": "false" + } }, { + "id": 1061, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12355 + "instrument": "cow_bell", + "note": "16", + "powered": "true" + } }, { + "id": 1062, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12356 + "instrument": "cow_bell", + "note": "16", + "powered": "false" + } }, { + "id": 1063, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12357 + "instrument": "cow_bell", + "note": "17", + "powered": "true" + } }, { + "id": 1064, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12358 + "instrument": "cow_bell", + "note": "17", + "powered": "false" + } }, { + "id": 1065, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12359 + "instrument": "cow_bell", + "note": "18", + "powered": "true" + } }, { + "id": 1066, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12360 + "instrument": "cow_bell", + "note": "18", + "powered": "false" + } }, { + "id": 1067, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12361 + "instrument": "cow_bell", + "note": "19", + "powered": "true" + } }, { + "id": 1068, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12362 + "instrument": "cow_bell", + "note": "19", + "powered": "false" + } }, { + "id": 1069, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12363 + "instrument": "cow_bell", + "note": "20", + "powered": "true" + } }, { + "id": 1070, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12364 + "instrument": "cow_bell", + "note": "20", + "powered": "false" + } }, { + "id": 1071, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12365 + "instrument": "cow_bell", + "note": "21", + "powered": "true" + } }, { + "id": 1072, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12366 + "instrument": "cow_bell", + "note": "21", + "powered": "false" + } }, { + "id": 1073, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12367 + "instrument": "cow_bell", + "note": "22", + "powered": "true" + } }, { + "id": 1074, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12368 + "instrument": "cow_bell", + "note": "22", + "powered": "false" + } }, { + "id": 1075, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12369 + "instrument": "cow_bell", + "note": "23", + "powered": "true" + } }, { + "id": 1076, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12370 + "instrument": "cow_bell", + "note": "23", + "powered": "false" + } }, { + "id": 1077, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12371 + "instrument": "cow_bell", + "note": "24", + "powered": "true" + } }, { + "id": 1078, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12372 + "instrument": "cow_bell", + "note": "24", + "powered": "false" + } }, { + "id": 1079, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12373 + "instrument": "didgeridoo", + "note": "0", + "powered": "true" + } }, { + "id": 1080, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12374 + "instrument": "didgeridoo", + "note": "0", + "powered": "false" + } }, { + "id": 1081, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12375 + "instrument": "didgeridoo", + "note": "1", + "powered": "true" + } }, { + "id": 1082, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12376 + "instrument": "didgeridoo", + "note": "1", + "powered": "false" + } }, { + "id": 1083, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12377 + "instrument": "didgeridoo", + "note": "2", + "powered": "true" + } }, { + "id": 1084, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12378 + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } }, { + "id": 1085, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12379 + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } }, { + "id": 1086, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12380 + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } }, { + "id": 1087, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12381 + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } }, { + "id": 1088, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12382 + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } }, { + "id": 1089, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12383 + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } }, { + "id": 1090, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12384 + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } }, { + "id": 1091, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12385 + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } }, { + "id": 1092, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12386 + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } }, { + "id": 1093, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12387 + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } }, { + "id": 1094, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12388 + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } }, { + "id": 1095, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12389 + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } }, { + "id": 1096, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12390 + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } }, { + "id": 1097, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12391 + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } }, { + "id": 1098, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12392 + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } }, { + "id": 1099, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12393 + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } }, { + "id": 1100, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12394 + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } }, { + "id": 1101, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12395 + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } }, { + "id": 1102, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12396 + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } }, { + "id": 1103, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12397 + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } }, { + "id": 1104, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12398 + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } }, { + "id": 1105, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12399 + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } }, { + "id": 1106, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12400 + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } }, { + "id": 1107, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12401 + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } }, { + "id": 1108, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12402 + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } }, { + "id": 1109, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12403 + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } }, { + "id": 1110, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12404 + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } }, { + "id": 1111, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12405 + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } }, { + "id": 1112, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12406 + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } }, { + "id": 1113, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12407 + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } }, { + "id": 1114, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12408 + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } }, { + "id": 1115, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12409 + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } }, { + "id": 1116, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12410 + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } }, { + "id": 1117, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12411 + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } }, { + "id": 1118, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12412 - } - ] - }, - "minecraft:granite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } + }, { + "id": 1119, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12413 + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } }, { + "id": 1120, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12414 + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } }, { + "id": 1121, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12415 + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } }, { + "id": 1122, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12416, - "default": true + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } }, { + "id": 1123, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12417 + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } }, { + "id": 1124, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12418 + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } }, { + "id": 1125, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12419 + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } }, { + "id": 1126, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12420 + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } }, { + "id": 1127, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12421 + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } }, { + "id": 1128, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12422 + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } }, { + "id": 1129, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12423 + "instrument": "bit", + "note": "0", + "powered": "true" + } }, { + "id": 1130, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12424 + "instrument": "bit", + "note": "0", + "powered": "false" + } }, { + "id": 1131, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12425 + "instrument": "bit", + "note": "1", + "powered": "true" + } }, { + "id": 1132, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12426 + "instrument": "bit", + "note": "1", + "powered": "false" + } }, { + "id": 1133, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12427 + "instrument": "bit", + "note": "2", + "powered": "true" + } }, { + "id": 1134, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12428 + "instrument": "bit", + "note": "2", + "powered": "false" + } }, { + "id": 1135, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12429 + "instrument": "bit", + "note": "3", + "powered": "true" + } }, { + "id": 1136, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12430 + "instrument": "bit", + "note": "3", + "powered": "false" + } }, { + "id": 1137, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12431 + "instrument": "bit", + "note": "4", + "powered": "true" + } }, { + "id": 1138, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12432 + "instrument": "bit", + "note": "4", + "powered": "false" + } }, { + "id": 1139, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12433 + "instrument": "bit", + "note": "5", + "powered": "true" + } }, { + "id": 1140, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12434 + "instrument": "bit", + "note": "5", + "powered": "false" + } }, { + "id": 1141, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12435 + "instrument": "bit", + "note": "6", + "powered": "true" + } }, { + "id": 1142, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12436 + "instrument": "bit", + "note": "6", + "powered": "false" + } }, { + "id": 1143, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12437 + "instrument": "bit", + "note": "7", + "powered": "true" + } }, { + "id": 1144, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12438 + "instrument": "bit", + "note": "7", + "powered": "false" + } }, { + "id": 1145, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12439 + "instrument": "bit", + "note": "8", + "powered": "true" + } }, { + "id": 1146, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12440 + "instrument": "bit", + "note": "8", + "powered": "false" + } }, { + "id": 1147, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12441 + "instrument": "bit", + "note": "9", + "powered": "true" + } }, { + "id": 1148, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12442 + "instrument": "bit", + "note": "9", + "powered": "false" + } }, { + "id": 1149, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12443 + "instrument": "bit", + "note": "10", + "powered": "true" + } }, { + "id": 1150, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12444 + "instrument": "bit", + "note": "10", + "powered": "false" + } }, { + "id": 1151, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12445 + "instrument": "bit", + "note": "11", + "powered": "true" + } }, { + "id": 1152, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12446 + "instrument": "bit", + "note": "11", + "powered": "false" + } }, { + "id": 1153, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12447 + "instrument": "bit", + "note": "12", + "powered": "true" + } }, { + "id": 1154, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12448 + "instrument": "bit", + "note": "12", + "powered": "false" + } }, { + "id": 1155, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12449 + "instrument": "bit", + "note": "13", + "powered": "true" + } }, { + "id": 1156, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12450 + "instrument": "bit", + "note": "13", + "powered": "false" + } }, { + "id": 1157, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12451 + "instrument": "bit", + "note": "14", + "powered": "true" + } }, { + "id": 1158, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12452 + "instrument": "bit", + "note": "14", + "powered": "false" + } }, { + "id": 1159, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12453 + "instrument": "bit", + "note": "15", + "powered": "true" + } }, { + "id": 1160, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12454 + "instrument": "bit", + "note": "15", + "powered": "false" + } }, { + "id": 1161, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12455 + "instrument": "bit", + "note": "16", + "powered": "true" + } }, { + "id": 1162, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12456 + "instrument": "bit", + "note": "16", + "powered": "false" + } }, { + "id": 1163, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12457 + "instrument": "bit", + "note": "17", + "powered": "true" + } }, { + "id": 1164, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12458 + "instrument": "bit", + "note": "17", + "powered": "false" + } }, { + "id": 1165, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12459 + "instrument": "bit", + "note": "18", + "powered": "true" + } }, { + "id": 1166, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12460 + "instrument": "bit", + "note": "18", + "powered": "false" + } }, { + "id": 1167, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12461 + "instrument": "bit", + "note": "19", + "powered": "true" + } }, { + "id": 1168, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12462 + "instrument": "bit", + "note": "19", + "powered": "false" + } }, { + "id": 1169, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12463 + "instrument": "bit", + "note": "20", + "powered": "true" + } }, { + "id": 1170, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12464 + "instrument": "bit", + "note": "20", + "powered": "false" + } }, { + "id": 1171, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12465 + "instrument": "bit", + "note": "21", + "powered": "true" + } }, { + "id": 1172, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12466 + "instrument": "bit", + "note": "21", + "powered": "false" + } }, { + "id": 1173, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12467 + "instrument": "bit", + "note": "22", + "powered": "true" + } }, { + "id": 1174, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12468 + "instrument": "bit", + "note": "22", + "powered": "false" + } }, { + "id": 1175, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12469 + "instrument": "bit", + "note": "23", + "powered": "true" + } }, { + "id": 1176, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12470 + "instrument": "bit", + "note": "23", + "powered": "false" + } }, { + "id": 1177, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12471 + "instrument": "bit", + "note": "24", + "powered": "true" + } }, { + "id": 1178, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12472 + "instrument": "bit", + "note": "24", + "powered": "false" + } }, { + "id": 1179, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12473 + "instrument": "banjo", + "note": "0", + "powered": "true" + } }, { + "id": 1180, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12474 + "instrument": "banjo", + "note": "0", + "powered": "false" + } }, { + "id": 1181, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12475 + "instrument": "banjo", + "note": "1", + "powered": "true" + } }, { + "id": 1182, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12476 + "instrument": "banjo", + "note": "1", + "powered": "false" + } }, { + "id": 1183, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12477 + "instrument": "banjo", + "note": "2", + "powered": "true" + } }, { + "id": 1184, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12478 + "instrument": "banjo", + "note": "2", + "powered": "false" + } }, { + "id": 1185, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12479 + "instrument": "banjo", + "note": "3", + "powered": "true" + } }, { + "id": 1186, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12480 + "instrument": "banjo", + "note": "3", + "powered": "false" + } }, { + "id": 1187, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12481 + "instrument": "banjo", + "note": "4", + "powered": "true" + } }, { + "id": 1188, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12482 + "instrument": "banjo", + "note": "4", + "powered": "false" + } }, { + "id": 1189, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12483 + "instrument": "banjo", + "note": "5", + "powered": "true" + } }, { + "id": 1190, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12484 + "instrument": "banjo", + "note": "5", + "powered": "false" + } }, { + "id": 1191, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12485 + "instrument": "banjo", + "note": "6", + "powered": "true" + } }, { + "id": 1192, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12486 + "instrument": "banjo", + "note": "6", + "powered": "false" + } }, { + "id": 1193, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12487 + "instrument": "banjo", + "note": "7", + "powered": "true" + } }, { + "id": 1194, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12488 + "instrument": "banjo", + "note": "7", + "powered": "false" + } }, { + "id": 1195, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12489 + "instrument": "banjo", + "note": "8", + "powered": "true" + } }, { + "id": 1196, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12490 + "instrument": "banjo", + "note": "8", + "powered": "false" + } }, { + "id": 1197, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12491 + "instrument": "banjo", + "note": "9", + "powered": "true" + } }, { + "id": 1198, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12492 + "instrument": "banjo", + "note": "9", + "powered": "false" + } }, { + "id": 1199, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12493 + "instrument": "banjo", + "note": "10", + "powered": "true" + } }, { + "id": 1200, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12494 + "instrument": "banjo", + "note": "10", + "powered": "false" + } }, { + "id": 1201, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12495 + "instrument": "banjo", + "note": "11", + "powered": "true" + } }, { + "id": 1202, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12496 + "instrument": "banjo", + "note": "11", + "powered": "false" + } }, { + "id": 1203, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12497 + "instrument": "banjo", + "note": "12", + "powered": "true" + } }, { + "id": 1204, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12498 + "instrument": "banjo", + "note": "12", + "powered": "false" + } }, { + "id": 1205, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12499 + "instrument": "banjo", + "note": "13", + "powered": "true" + } }, { + "id": 1206, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12500 + "instrument": "banjo", + "note": "13", + "powered": "false" + } }, { + "id": 1207, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12501 + "instrument": "banjo", + "note": "14", + "powered": "true" + } }, { + "id": 1208, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12502 + "instrument": "banjo", + "note": "14", + "powered": "false" + } }, { + "id": 1209, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12503 + "instrument": "banjo", + "note": "15", + "powered": "true" + } }, { + "id": 1210, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12504 + "instrument": "banjo", + "note": "15", + "powered": "false" + } }, { + "id": 1211, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12505 + "instrument": "banjo", + "note": "16", + "powered": "true" + } }, { + "id": 1212, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12506 + "instrument": "banjo", + "note": "16", + "powered": "false" + } }, { + "id": 1213, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12507 + "instrument": "banjo", + "note": "17", + "powered": "true" + } }, { + "id": 1214, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12508 + "instrument": "banjo", + "note": "17", + "powered": "false" + } }, { + "id": 1215, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12509 + "instrument": "banjo", + "note": "18", + "powered": "true" + } }, { + "id": 1216, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12510 + "instrument": "banjo", + "note": "18", + "powered": "false" + } }, { + "id": 1217, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12511 + "instrument": "banjo", + "note": "19", + "powered": "true" + } }, { + "id": 1218, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12512 + "instrument": "banjo", + "note": "19", + "powered": "false" + } }, { + "id": 1219, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12513 + "instrument": "banjo", + "note": "20", + "powered": "true" + } }, { + "id": 1220, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12514 + "instrument": "banjo", + "note": "20", + "powered": "false" + } }, { + "id": 1221, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12515 + "instrument": "banjo", + "note": "21", + "powered": "true" + } }, { + "id": 1222, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12516 + "instrument": "banjo", + "note": "21", + "powered": "false" + } }, { + "id": 1223, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12517 + "instrument": "banjo", + "note": "22", + "powered": "true" + } }, { + "id": 1224, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12518 + "instrument": "banjo", + "note": "22", + "powered": "false" + } }, { + "id": 1225, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12519 + "instrument": "banjo", + "note": "23", + "powered": "true" + } }, { + "id": 1226, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12520 + "instrument": "banjo", + "note": "23", + "powered": "false" + } }, { + "id": 1227, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12521 + "instrument": "banjo", + "note": "24", + "powered": "true" + } }, { + "id": 1228, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12522 + "instrument": "banjo", + "note": "24", + "powered": "false" + } }, { + "id": 1229, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12523 + "instrument": "pling", + "note": "0", + "powered": "true" + } }, { + "id": 1230, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12524 + "instrument": "pling", + "note": "0", + "powered": "false" + } }, { + "id": 1231, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12525 + "instrument": "pling", + "note": "1", + "powered": "true" + } }, { + "id": 1232, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12526 + "instrument": "pling", + "note": "1", + "powered": "false" + } }, { + "id": 1233, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12527 + "instrument": "pling", + "note": "2", + "powered": "true" + } }, { + "id": 1234, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12528 + "instrument": "pling", + "note": "2", + "powered": "false" + } }, { + "id": 1235, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12529 + "instrument": "pling", + "note": "3", + "powered": "true" + } }, { + "id": 1236, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12530 + "instrument": "pling", + "note": "3", + "powered": "false" + } }, { + "id": 1237, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12531 + "instrument": "pling", + "note": "4", + "powered": "true" + } }, { + "id": 1238, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12532 + "instrument": "pling", + "note": "4", + "powered": "false" + } }, { + "id": 1239, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12533 + "instrument": "pling", + "note": "5", + "powered": "true" + } }, { + "id": 1240, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12534 + "instrument": "pling", + "note": "5", + "powered": "false" + } }, { + "id": 1241, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12535 + "instrument": "pling", + "note": "6", + "powered": "true" + } }, { + "id": 1242, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12536 + "instrument": "pling", + "note": "6", + "powered": "false" + } }, { + "id": 1243, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12537 + "instrument": "pling", + "note": "7", + "powered": "true" + } }, { + "id": 1244, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12538 + "instrument": "pling", + "note": "7", + "powered": "false" + } }, { + "id": 1245, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12539 + "instrument": "pling", + "note": "8", + "powered": "true" + } }, { + "id": 1246, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12540 + "instrument": "pling", + "note": "8", + "powered": "false" + } }, { + "id": 1247, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12541 + "instrument": "pling", + "note": "9", + "powered": "true" + } }, { + "id": 1248, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12542 + "instrument": "pling", + "note": "9", + "powered": "false" + } }, { + "id": 1249, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12543 + "instrument": "pling", + "note": "10", + "powered": "true" + } }, { + "id": 1250, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12544 + "instrument": "pling", + "note": "10", + "powered": "false" + } }, { + "id": 1251, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12545 + "instrument": "pling", + "note": "11", + "powered": "true" + } }, { + "id": 1252, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12546 + "instrument": "pling", + "note": "11", + "powered": "false" + } }, { + "id": 1253, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12547 + "instrument": "pling", + "note": "12", + "powered": "true" + } }, { + "id": 1254, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12548 + "instrument": "pling", + "note": "12", + "powered": "false" + } }, { + "id": 1255, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12549 + "instrument": "pling", + "note": "13", + "powered": "true" + } }, { + "id": 1256, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12550 + "instrument": "pling", + "note": "13", + "powered": "false" + } }, { + "id": 1257, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12551 + "instrument": "pling", + "note": "14", + "powered": "true" + } }, { + "id": 1258, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12552 + "instrument": "pling", + "note": "14", + "powered": "false" + } }, { + "id": 1259, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12553 + "instrument": "pling", + "note": "15", + "powered": "true" + } }, { + "id": 1260, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12554 + "instrument": "pling", + "note": "15", + "powered": "false" + } }, { + "id": 1261, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12555 + "instrument": "pling", + "note": "16", + "powered": "true" + } }, { + "id": 1262, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12556 + "instrument": "pling", + "note": "16", + "powered": "false" + } }, { + "id": 1263, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12557 + "instrument": "pling", + "note": "17", + "powered": "true" + } }, { + "id": 1264, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12558 + "instrument": "pling", + "note": "17", + "powered": "false" + } }, { + "id": 1265, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12559 + "instrument": "pling", + "note": "18", + "powered": "true" + } }, { + "id": 1266, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12560 + "instrument": "pling", + "note": "18", + "powered": "false" + } }, { + "id": 1267, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12561 + "instrument": "pling", + "note": "19", + "powered": "true" + } }, { + "id": 1268, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12562 + "instrument": "pling", + "note": "19", + "powered": "false" + } }, { + "id": 1269, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12563 + "instrument": "pling", + "note": "20", + "powered": "true" + } }, { + "id": 1270, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12564 + "instrument": "pling", + "note": "20", + "powered": "false" + } }, { + "id": 1271, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12565 + "instrument": "pling", + "note": "21", + "powered": "true" + } }, { + "id": 1272, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12566 + "instrument": "pling", + "note": "21", + "powered": "false" + } }, { + "id": 1273, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12567 + "instrument": "pling", + "note": "22", + "powered": "true" + } }, { + "id": 1274, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12568 + "instrument": "pling", + "note": "22", + "powered": "false" + } }, { + "id": 1275, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12569 + "instrument": "pling", + "note": "23", + "powered": "true" + } }, { + "id": 1276, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12570 + "instrument": "pling", + "note": "23", + "powered": "false" + } }, { + "id": 1277, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12571 + "instrument": "pling", + "note": "24", + "powered": "true" + } }, { + "id": 1278, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12572 - }, + "instrument": "pling", + "note": "24", + "powered": "false" + } + } + ] + }, + "minecraft:oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 6939, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12573 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 6940, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12574 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 6941, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12575 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 6942, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12576 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 6943, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12577 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 6944, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12578 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 6945, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12579 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 6946, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12580 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 6947, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12581 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 6948, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12582 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 6949, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12583 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 6950, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12584 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 6951, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12585 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 6952, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12586 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 6953, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12587 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 6954, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12588 + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 6955, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12589 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 6956, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12590 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 6957, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12591 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 6958, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12592 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 6959, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12593 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 6960, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12594 + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 6961, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12595 + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 6962, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12596 - }, + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 3860, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12597 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3861, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12598 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3862, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12599 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3863, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12600 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3864, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12601 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3865, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12602 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3866, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12603 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3867, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12604 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3868, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12605 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3869, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12606 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3870, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12607 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 3871, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12608 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3872, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12609 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3873, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12610 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3874, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12611 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3875, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12612 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3876, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12613 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3877, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12614 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3878, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12615 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3879, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12616 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3880, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12617 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3881, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12618 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3882, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12619 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3883, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12620 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3884, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12621 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3885, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12622 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3886, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12623 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3887, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12624 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3888, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12625 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3889, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12626 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3890, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12627 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3891, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12628 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3892, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12629 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3893, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12630 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3894, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12631 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3895, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12632 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3896, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12633 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3897, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12634 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3898, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12635 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3899, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12636 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3900, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12637 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3901, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12638 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3902, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12639 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3903, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12640 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3904, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12641 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3905, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12642 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3906, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12643 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3907, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12644 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3908, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12645 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3909, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12646 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3910, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12647 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3911, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12648 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3912, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12649 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3913, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12650 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3914, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12651 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3915, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12652 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 3916, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12653 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 3917, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12654 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 3918, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12655 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 3919, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12656 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 3920, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12657 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 3921, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12658 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 3922, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12659 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 3923, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12660 - }, + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4275, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 12661 + "west": "true" + } }, { + "id": 4276, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12662 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 4277, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 12663 + "west": "true" + } }, { + "id": 4278, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 12664 + "west": "false" + } }, { + "id": 4279, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 12665 + "west": "true" + } }, { + "id": 4280, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 12666 + "west": "false" + } }, { + "id": 4281, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12667 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 4282, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 12668 + "west": "false" + } }, { + "id": 4283, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12669 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 4284, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12670 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 4285, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12671 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 4286, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12672 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 4287, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 12673 + "west": "true" + } }, { + "id": 4288, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12674 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 4289, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 12675 + "west": "true" + } }, { + "id": 4290, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 12676 + "west": "false" + } }, { + "id": 4291, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 12677 + "west": "true" + } }, { + "id": 4292, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 12678 + "west": "false" + } }, { + "id": 4293, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12679 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 4294, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 12680 + "west": "false" + } }, { + "id": 4295, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12681 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 4296, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12682 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 4297, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12683 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 4298, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12684 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 4299, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 12685 + "west": "true" + } }, { + "id": 4300, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12686 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 4301, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 12687 + "west": "true" + } }, { + "id": 4302, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 12688 + "west": "false" + } }, { + "id": 4303, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 12689 + "west": "true" + } }, { + "id": 4304, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 12690 + "west": "false" + } }, { + "id": 4305, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12691 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 4306, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 12692 - }, + "west": "false" + } + } + ] + }, + "minecraft:oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 5327, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12693 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 5328, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12694 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 5329, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12695 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 5330, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12696 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 5331, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12697 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 5332, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12698 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 5333, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12699 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 5334, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12700 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 5335, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12701 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 5336, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12702 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 5337, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12703 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 5338, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12704 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 5339, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12705 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 5340, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12706 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 5341, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12707 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 5342, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12708 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 5343, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12709 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 5344, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12710 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 5345, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12711 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 5346, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12712 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 5347, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12713 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 5348, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12714 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 5349, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12715 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 5350, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12716 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 5351, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12717 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 5352, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12718 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 5353, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12719 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 5354, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12720 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 5355, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12721 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 5356, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12722 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 5357, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12723 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 5358, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12724 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 206, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 207, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12725 + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 208, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12726 + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 209, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12727 + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 210, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12728 + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 211, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12729 + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 212, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12730 + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 213, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12731 + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 214, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12732 + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 215, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12733 + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 216, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12734 + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 217, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12735 + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 218, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12736 - } - ] - }, - "minecraft:stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12737 + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 219, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12738 + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 220, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12739 + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 221, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12740, - "default": true + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 222, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12741 + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 223, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12742 + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 224, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12743 + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 225, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12744 + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 226, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12745 + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 227, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12746 + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 228, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12747 + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } }, { + "id": 229, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12748 + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } }, { + "id": 230, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12749 + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } }, { + "id": 231, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12750 + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } }, { + "id": 232, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12751 + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 233, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12752 - }, + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 117, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12753 + "axis": "x" + } }, { + "default": true, + "id": 118, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12754 + "axis": "y" + } }, { + "id": 119, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12755 - }, + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4178, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12756 + "powered": "true" + } }, { + "default": true, + "id": 4179, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12757 - }, + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ { + "default": true, + "id": 22, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12758 + "stage": "0" + } }, { + "id": 23, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12759 - }, + "stage": "1" + } + } + ] + }, + "minecraft:oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 3636, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12760 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 3637, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12761 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 3638, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12762 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 3639, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12763 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 3640, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12764 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 3641, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12765 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 3642, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12766 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 3643, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12767 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 3644, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12768 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 3645, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12769 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 3646, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12770 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 3647, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12771 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 3648, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12772 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 3649, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12773 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 3650, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12774 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 3651, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12775 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 3652, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12776 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 3653, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12777 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 3654, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12778 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 3655, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12779 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 3656, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12780 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 3657, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12781 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 3658, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12782 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 3659, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12783 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 3660, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12784 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 3661, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12785 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 3662, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12786 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 3663, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12787 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 3664, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12788 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 3665, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12789 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 3666, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12790 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 3667, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12791 - }, + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9041, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12792 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9042, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12793 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9043, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12794 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9044, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12795 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9045, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12796 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9046, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12797 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 2208, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12798 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2209, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12799 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2210, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12800 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2211, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12801 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2212, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12802 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2213, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12803 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2214, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12804 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2215, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12805 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2216, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12806 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2217, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12807 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2218, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12808 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 2219, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12809 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2220, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12810 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2221, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12811 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2222, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12812 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2223, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12813 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2224, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12814 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2225, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12815 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2226, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12816 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2227, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12817 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2228, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12818 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2229, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12819 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2230, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12820 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2231, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12821 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2232, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12822 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2233, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12823 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2234, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12824 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2235, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12825 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2236, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12826 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2237, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12827 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2238, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12828 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2239, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12829 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2240, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12830 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2241, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12831 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2242, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12832 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2243, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12833 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2244, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12834 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2245, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12835 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2246, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12836 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2247, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12837 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2248, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12838 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2249, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12839 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2250, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12840 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2251, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12841 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2252, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12842 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2253, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12843 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2254, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12844 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2255, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12845 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2256, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12846 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2257, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12847 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2258, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12848 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2259, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12849 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2260, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12850 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2261, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12851 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2262, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12852 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2263, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12853 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2264, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12854 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2265, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12855 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2266, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12856 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2267, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12857 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2268, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12858 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2269, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12859 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2270, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12860 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2271, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12861 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2272, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12862 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2273, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12863 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2274, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12864 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2275, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12865 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2276, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12866 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2277, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12867 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 2278, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12868 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 2279, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12869 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 2280, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12870 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 2281, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12871 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 2282, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12872 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 2283, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12873 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 2284, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12874 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 2285, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12875 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 2286, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12876 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 2287, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12877 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4420, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4421, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12878 + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4422, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12879 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4423, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12880 + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4424, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12881 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4425, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12882 + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4426, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12883 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4427, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12884 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4428, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12885 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4429, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12886 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4430, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12887 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4431, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12888 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4432, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12889 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4433, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12890 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4434, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12891 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 4435, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12892 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4436, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12893 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4437, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12894 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4438, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12895 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4439, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12896 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4440, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12897 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4441, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12898 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4442, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12899 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4443, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12900 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4444, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12901 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4445, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12902 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4446, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12903 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4447, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12904 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4448, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12905 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4449, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12906 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4450, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12907 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4451, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12908 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4452, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12909 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4453, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12910 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4454, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12911 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4455, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12912 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4456, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12913 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4457, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12914 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4458, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12915 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4459, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12916 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4460, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12917 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4461, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12918 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4462, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12919 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4463, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12920 + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4464, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12921 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4465, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12922 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4466, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12923 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4467, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12924 + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4468, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12925 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4469, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12926 + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4470, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12927 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4471, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12928 + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4472, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12929 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4473, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12930 + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4474, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12931 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4475, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12932 + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4476, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12933 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4477, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12934 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4478, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12935 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4479, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12936 + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 4480, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12937 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 4481, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12938 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 4482, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12939 + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 4483, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12940 - }, + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4032, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12941 + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 4033, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12942 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 4034, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12943 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 4035, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12944 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 4036, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12945 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 4037, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12946 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 4038, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12947 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 4039, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12948 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 164, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12949 + "axis": "x" + } }, { + "default": true, + "id": 165, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12950 + "axis": "y" + } }, { + "id": 166, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12951 - }, + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 10141, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12952 + "facing": "north", + "powered": "true" + } }, { + "id": 10142, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12953 + "facing": "north", + "powered": "false" + } }, { + "id": 10143, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12954 + "facing": "east", + "powered": "true" + } }, { + "id": 10144, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12955 + "facing": "east", + "powered": "false" + } }, { + "id": 10145, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12956 + "facing": "south", + "powered": "true" + } }, { + "default": true, + "id": 10146, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12957 + "facing": "south", + "powered": "false" + } }, { + "id": 10147, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12958 + "facing": "west", + "powered": "true" + } }, { + "id": 10148, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12959 + "facing": "west", + "powered": "false" + } }, { + "id": 10149, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12960 + "facing": "up", + "powered": "true" + } }, { + "id": 10150, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12961 + "facing": "up", + "powered": "false" + } }, { + "id": 10151, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12962 + "facing": "down", + "powered": "true" + } }, { + "id": 10152, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12963 - }, + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "states": [ + { + "default": true, + "id": 1688 + } + ] + }, + "minecraft:ochre_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 21437, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12964 + "axis": "x" + } }, { + "default": true, + "id": 21438, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12965 + "axis": "y" + } }, { + "id": 21439, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12966 - }, + "axis": "z" + } + } + ] + }, + "minecraft:orange_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8654, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12967 + "rotation": "0" + } }, { + "id": 8655, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12968 + "rotation": "1" + } }, { + "id": 8656, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12969 + "rotation": "2" + } }, { + "id": 8657, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12970 + "rotation": "3" + } }, { + "id": 8658, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12971 + "rotation": "4" + } }, { + "id": 8659, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12972 + "rotation": "5" + } }, { + "id": 8660, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12973 + "rotation": "6" + } }, { + "id": 8661, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12974 + "rotation": "7" + } }, { + "id": 8662, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12975 + "rotation": "8" + } }, { + "id": 8663, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12976 + "rotation": "9" + } }, { + "id": 8664, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12977 + "rotation": "10" + } }, { + "id": 8665, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12978 + "rotation": "11" + } }, { + "id": 8666, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12979 + "rotation": "12" + } }, { + "id": 8667, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12980 + "rotation": "13" + } }, { + "id": 8668, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12981 + "rotation": "14" + } }, { + "id": 8669, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12982 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1295, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12983 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1296, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12984 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1297, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12985 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1298, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12986 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1299, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12987 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1300, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 12988 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1301, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 12989 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1302, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 12990 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1303, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 12991 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1304, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 12992 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1305, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 12993 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1306, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 12994 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1307, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 12995 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1308, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 12996 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1309, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 12997 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1310, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 12998 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18345, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 12999 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18346, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13000 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18347, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13001 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18348, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13002 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18349, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13003 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18350, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13004 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18351, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13005 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18352, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13006 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18353, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13007 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18354, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13008 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18355, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13009 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18356, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13010 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18357, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13011 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18358, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13012 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18359, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13013 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18360, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13014 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18589, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13015 + "lit": "true" + } }, { + "default": true, + "id": 18590, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13016 + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "states": [ + { + "default": true, + "id": 8608 + } + ] + }, + "minecraft:orange_concrete": { + "states": [ + { + "default": true, + "id": 10320 + } + ] + }, + "minecraft:orange_concrete_powder": { + "states": [ + { + "default": true, + "id": 10336 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10259, + "properties": { + "facing": "north" + } }, { + "id": 10260, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13017 + "facing": "south" + } }, { + "id": 10261, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13018 + "facing": "west" + } }, { + "id": 10262, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13019 - }, + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10165, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13020 + "facing": "north" + } }, { + "id": 10166, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13021 + "facing": "east" + } }, { + "id": 10167, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13022 + "facing": "south" + } }, { + "id": 10168, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13023 + "facing": "west" + } }, { + "default": true, + "id": 10169, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13024 + "facing": "up" + } }, { + "id": 10170, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13025 - }, + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "states": [ + { + "default": true, + "id": 4405 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7524, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 13026 + "west": "true" + } }, { + "id": 7525, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 13027 + "west": "false" + } }, { + "id": 7526, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 13028 + "west": "true" + } }, { + "id": 7527, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 13029 + "west": "false" + } }, { + "id": 7528, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13030 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7529, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 13031 + "west": "false" + } }, { + "id": 7530, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13032 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7531, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13033 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7532, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13034 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7533, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13035 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7534, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 13036 + "west": "true" + } }, { + "id": 7535, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13037 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7536, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 13038 + "west": "true" + } }, { + "id": 7537, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 13039 + "west": "false" + } }, { + "id": 7538, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 13040 + "west": "true" + } }, { + "id": 7539, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 13041 + "west": "false" + } }, { + "id": 7540, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13042 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7541, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 13043 + "west": "false" + } }, { + "id": 7542, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13044 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7543, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13045 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7544, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13046 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7545, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13047 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7546, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 13048 + "west": "true" + } }, { + "id": 7547, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13049 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7548, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 13050 + "west": "true" + } }, { + "id": 7549, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 13051 + "west": "false" + } }, { + "id": 7550, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 13052 + "west": "true" + } }, { + "id": 7551, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 13053 + "west": "false" + } }, { + "id": 7552, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13054 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7553, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 13055 + "west": "false" + } }, { + "id": 7554, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13056 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7555, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13057 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "states": [ + { + "default": true, + "id": 7477 + } + ] + }, + "minecraft:orange_tulip": { + "states": [ + { + "default": true, + "id": 1672 + } + ] + }, + "minecraft:orange_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8898, + "properties": { + "facing": "north" + } }, { + "id": 8899, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13058 + "facing": "south" + } }, { + "id": 8900, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13059 + "facing": "west" + } }, { + "id": 8901, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13060 + "facing": "east" + } } ] }, - "minecraft:nether_brick_wall": { + "minecraft:orange_wool": { + "states": [ + { + "default": true, + "id": 1639 + } + ] + }, + "minecraft:oxeye_daisy": { + "states": [ + { + "default": true, + "id": 1675 + } + ] + }, + "minecraft:oxidized_copper": { + "states": [ + { + "default": true, + "id": 18908 + } + ] + }, + "minecraft:oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 18914 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", "false" - ], - "west": [ - "none", - "low", - "tall" ] }, "states": [ { + "id": 19238, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13061 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19239, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13062 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19240, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13063 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19241, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13064, - "default": true + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19242, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13065 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19243, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13066 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18918, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18919, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13067 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18920, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13068 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18921, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13069 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18922, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13070 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18923, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13071 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18924, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13072 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18925, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13073 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18926, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13074 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18927, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13075 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18928, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13076 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 18929, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13077 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18930, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13078 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18931, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13079 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18932, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13080 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18933, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13081 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18934, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13082 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18935, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13083 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18936, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13084 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18937, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13085 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18938, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13086 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18939, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13087 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18940, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13088 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18941, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13089 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18942, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13090 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18943, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13091 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18944, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13092 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18945, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13093 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18946, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13094 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18947, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13095 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18948, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13096 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18949, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13097 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18950, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13098 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18951, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13099 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18952, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13100 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18953, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13101 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18954, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13102 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18955, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13103 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18956, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13104 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18957, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13105 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18958, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13106 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18959, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13107 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18960, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13108 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18961, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13109 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18962, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13110 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18963, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13111 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18964, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13112 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18965, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13113 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18966, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13114 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18967, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13115 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18968, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13116 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18969, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13117 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18970, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13118 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18971, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13119 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18972, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13120 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18973, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13121 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18974, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13122 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18975, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13123 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18976, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13124 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18977, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13125 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18978, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13126 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18979, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13127 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18980, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13128 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18981, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13129 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18982, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13130 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18983, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13131 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18984, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13132 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18985, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13133 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18986, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13134 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18987, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13135 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 18988, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13136 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18989, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13137 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 18990, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13138 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 18991, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13139 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 18992, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13140 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 18993, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13141 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 18994, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13142 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 18995, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13143 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 18996, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13144 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 18997, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13145 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "states": [ { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13146 - }, + "default": true, + "id": 8625 + } + ] + }, + "minecraft:packed_mud": { + "states": [ { - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13147 - }, + "default": true, + "id": 4872 + } + ] + }, + "minecraft:pearlescent_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 21443, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13148 + "axis": "x" + } }, { + "default": true, + "id": 21444, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13149 + "axis": "y" + } }, { + "id": 21445, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13150 - }, + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { + "id": 8632, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13151 + "half": "upper" + } }, { + "default": true, + "id": 8633, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13152 - }, + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9107, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13153 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9108, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13154 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9109, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13155 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9110, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13156 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9111, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13157 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9112, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13158 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8734, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13159 + "rotation": "0" + } }, { + "id": 8735, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13160 + "rotation": "1" + } }, { + "id": 8736, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13161 + "rotation": "2" + } }, { + "id": 8737, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13162 + "rotation": "3" + } }, { + "id": 8738, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13163 + "rotation": "4" + } }, { + "id": 8739, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13164 + "rotation": "5" + } }, { + "id": 8740, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13165 + "rotation": "6" + } }, { + "id": 8741, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13166 + "rotation": "7" + } }, { + "id": 8742, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13167 + "rotation": "8" + } }, { + "id": 8743, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13168 + "rotation": "9" + } }, { + "id": 8744, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13169 + "rotation": "10" + } }, { + "id": 8745, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13170 + "rotation": "11" + } }, { + "id": 8746, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13171 + "rotation": "12" + } }, { + "id": 8747, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13172 + "rotation": "13" + } }, { + "id": 8748, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13173 + "rotation": "14" + } }, { + "id": 8749, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13174 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1375, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13175 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1376, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13176 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1377, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13177 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1378, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13178 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1379, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13179 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1380, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13180 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1381, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13181 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1382, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13182 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1383, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13183 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1384, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13184 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1385, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13185 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1386, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13186 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1387, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13187 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1388, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13188 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1389, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13189 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1390, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13190 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18425, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13191 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18426, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13192 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18427, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13193 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18428, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13194 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18429, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13195 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18430, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13196 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18431, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13197 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18432, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13198 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18433, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13199 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18434, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13200 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18435, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13201 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18436, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13202 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18437, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13203 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18438, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13204 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18439, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13205 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18440, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13206 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18599, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13207 + "lit": "true" + } }, { + "default": true, + "id": 18600, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13208 - }, + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "states": [ + { + "default": true, + "id": 8613 + } + ] + }, + "minecraft:pink_concrete": { + "states": [ + { + "default": true, + "id": 10325 + } + ] + }, + "minecraft:pink_concrete_powder": { + "states": [ + { + "default": true, + "id": 10341 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10279, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13209 + "facing": "north" + } }, { + "id": 10280, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13210 + "facing": "south" + } }, { + "id": 10281, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13211 + "facing": "west" + } }, { + "id": 10282, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13212 - }, + "facing": "east" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10195, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13213 + "facing": "north" + } }, { + "id": 10196, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13214 + "facing": "east" + } }, { + "id": 10197, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13215 + "facing": "south" + } }, { + "id": 10198, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13216 + "facing": "west" + } }, { + "default": true, + "id": 10199, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13217 + "facing": "up" + } }, { + "id": 10200, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13218 - }, + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "states": [ + { + "default": true, + "id": 4410 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7684, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 13219 + "west": "true" + } }, { + "id": 7685, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13220 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7686, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 13221 + "west": "true" + } }, { + "id": 7687, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 13222 - }, - { - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13223 + "west": "false" + } }, { + "id": 7688, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 13224 + "west": "true" + } }, { + "id": 7689, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 13225 + "west": "false" + } }, { + "id": 7690, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 13226 + "west": "true" + } }, { + "id": 7691, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 13227 + "west": "false" + } }, { + "id": 7692, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13228 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7693, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 13229 + "west": "false" + } }, { + "id": 7694, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13230 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7695, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13231 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7696, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13232 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7697, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13233 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7698, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 13234 + "west": "true" + } }, { + "id": 7699, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13235 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7700, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 13236 + "west": "true" + } }, { + "id": 7701, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 13237 + "west": "false" + } }, { + "id": 7702, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 13238 + "west": "true" + } }, { + "id": 7703, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 13239 + "west": "false" + } }, { + "id": 7704, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13240 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7705, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 13241 + "west": "false" + } }, { + "id": 7706, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13242 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7707, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13243 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7708, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13244 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7709, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13245 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7710, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 13246 + "west": "true" + } }, { + "id": 7711, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13247 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7712, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 13248 + "west": "true" + } }, { + "id": 7713, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 13249 + "west": "false" + } }, { + "id": 7714, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 13250 + "west": "true" + } }, { + "default": true, + "id": 7715, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 13251 - }, + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "states": [ + { + "default": true, + "id": 7482 + } + ] + }, + "minecraft:pink_tulip": { + "states": [ + { + "default": true, + "id": 1674 + } + ] + }, + "minecraft:pink_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8918, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13252 + "facing": "north" + } }, { + "id": 8919, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13253 + "facing": "south" + } }, { + "id": 8920, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13254 + "facing": "west" + } }, { + "id": 8921, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13255 - }, + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "states": [ + { + "default": true, + "id": 1644 + } + ] + }, + "minecraft:piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 1602, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13256 + "extended": "true", + "facing": "north" + } }, { + "id": 1603, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13257 + "extended": "true", + "facing": "east" + } }, { + "id": 1604, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13258 + "extended": "true", + "facing": "south" + } }, { + "id": 1605, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13259 + "extended": "true", + "facing": "west" + } }, { + "id": 1606, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13260 + "extended": "true", + "facing": "up" + } }, { + "id": 1607, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13261 + "extended": "true", + "facing": "down" + } }, { + "default": true, + "id": 1608, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13262 + "extended": "false", + "facing": "north" + } }, { + "id": 1609, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13263 + "extended": "false", + "facing": "east" + } }, { + "id": 1610, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13264 + "extended": "false", + "facing": "south" + } }, { + "id": 1611, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13265 + "extended": "false", + "facing": "west" + } }, { + "id": 1612, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13266 + "extended": "false", + "facing": "up" + } }, { + "id": 1613, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13267 - }, + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ { + "id": 1614, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13268 + "type": "normal", + "facing": "north", + "short": "true" + } }, { + "id": 1615, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13269 + "type": "sticky", + "facing": "north", + "short": "true" + } }, { + "default": true, + "id": 1616, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13270 + "type": "normal", + "facing": "north", + "short": "false" + } }, { + "id": 1617, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13271 + "type": "sticky", + "facing": "north", + "short": "false" + } }, { + "id": 1618, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13272 + "type": "normal", + "facing": "east", + "short": "true" + } }, { + "id": 1619, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13273 + "type": "sticky", + "facing": "east", + "short": "true" + } }, { + "id": 1620, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13274 + "type": "normal", + "facing": "east", + "short": "false" + } }, { + "id": 1621, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13275 + "type": "sticky", + "facing": "east", + "short": "false" + } }, { + "id": 1622, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13276 + "type": "normal", + "facing": "south", + "short": "true" + } }, { + "id": 1623, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13277 + "type": "sticky", + "facing": "south", + "short": "true" + } }, { + "id": 1624, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13278 + "type": "normal", + "facing": "south", + "short": "false" + } }, { + "id": 1625, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13279 + "type": "sticky", + "facing": "south", + "short": "false" + } }, { + "id": 1626, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13280 + "type": "normal", + "facing": "west", + "short": "true" + } }, { + "id": 1627, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13281 + "type": "sticky", + "facing": "west", + "short": "true" + } }, { + "id": 1628, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13282 + "type": "normal", + "facing": "west", + "short": "false" + } }, { + "id": 1629, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13283 + "type": "sticky", + "facing": "west", + "short": "false" + } }, { + "id": 1630, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13284 + "type": "normal", + "facing": "up", + "short": "true" + } }, { + "id": 1631, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13285 + "type": "sticky", + "facing": "up", + "short": "true" + } }, { + "id": 1632, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13286 + "type": "normal", + "facing": "up", + "short": "false" + } }, { + "id": 1633, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13287 + "type": "sticky", + "facing": "up", + "short": "false" + } }, { + "id": 1634, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13288 + "type": "normal", + "facing": "down", + "short": "true" + } }, { + "id": 1635, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13289 + "type": "sticky", + "facing": "down", + "short": "true" + } }, { + "id": 1636, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13290 + "type": "normal", + "facing": "down", + "short": "false" + } }, { + "id": 1637, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13291 - }, + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:player_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 7167, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13292 + "rotation": "0" + } }, { + "id": 7168, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13293 + "rotation": "1" + } }, { + "id": 7169, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13294 + "rotation": "2" + } }, { + "id": 7170, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13295 + "rotation": "3" + } }, { + "id": 7171, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13296 + "rotation": "4" + } }, { + "id": 7172, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13297 + "rotation": "5" + } }, { + "id": 7173, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13298 + "rotation": "6" + } }, { + "id": 7174, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13299 + "rotation": "7" + } }, { + "id": 7175, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13300 + "rotation": "8" + } }, { + "id": 7176, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13301 + "rotation": "9" + } }, { + "id": 7177, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13302 + "rotation": "10" + } }, { + "id": 7178, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13303 + "rotation": "11" + } }, { + "id": 7179, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13304 + "rotation": "12" + } }, { + "id": 7180, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13305 + "rotation": "13" + } }, { + "id": 7181, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13306 + "rotation": "14" + } }, { + "id": 7182, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13307 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 7183, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13308 + "facing": "north" + } }, { + "id": 7184, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13309 + "facing": "south" + } }, { + "id": 7185, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13310 + "facing": "west" + } }, { + "id": 7186, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13311 - }, + "facing": "east" + } + } + ] + }, + "minecraft:podzol": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ { + "id": 12, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13312 + "snowy": "true" + } }, { + "default": true, + "id": 13, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13313 - }, + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19638, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13314 + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } }, { + "id": 19639, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13315 + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } }, { + "id": 19640, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13316 + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } }, { + "id": 19641, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13317 + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } }, { + "id": 19642, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13318 + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } }, { + "default": true, + "id": 19643, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13319 + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } }, { + "id": 19644, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13320 + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } }, { + "id": 19645, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13321 + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } }, { + "id": 19646, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13322 + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } }, { + "id": 19647, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13323 + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } }, { + "id": 19648, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13324 + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } }, { + "id": 19649, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13325 + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } }, { + "id": 19650, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13326 + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } }, { + "id": 19651, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13327 + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } }, { + "id": 19652, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13328 + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } }, { + "id": 19653, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13329 + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } }, { + "id": 19654, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13330 + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } }, { + "id": 19655, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13331 + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } }, { + "id": 19656, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13332 + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } }, { + "id": 19657, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13333 - }, + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11736, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13334 + "type": "top", + "waterlogged": "true" + } }, { + "id": 11737, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13335 + "type": "top", + "waterlogged": "false" + } }, { + "id": 11738, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13336 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 11739, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13337 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 11740, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13338 + "type": "double", + "waterlogged": "true" + } }, { + "id": 11741, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13339 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11510, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13340 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11511, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13341 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11512, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13342 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11513, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13343 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11514, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13344 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11515, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13345 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11516, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13346 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11517, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13347 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11518, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13348 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11519, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13349 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11520, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13350 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 11521, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13351 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11522, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13352 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11523, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13353 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11524, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13354 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11525, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13355 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11526, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13356 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11527, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13357 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11528, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13358 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11529, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13359 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11530, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13360 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11531, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13361 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11532, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13362 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11533, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13363 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11534, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13364 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11535, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13365 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11536, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13366 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11537, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13367 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11538, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13368 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11539, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13369 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11540, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13370 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11541, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13371 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11542, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13372 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11543, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13373 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11544, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13374 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11545, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13375 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11546, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13376 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11547, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13377 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11548, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13378 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11549, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13379 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11550, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13380 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11551, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13381 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11552, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13382 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11553, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13383 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11554, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13384 - } - ] - }, - "minecraft:andesite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, { + "id": 11555, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13385 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11556, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13386 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11557, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13387 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11558, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13388, - "default": true + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11559, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13389 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11560, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13390 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11561, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13391 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11562, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13392 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11563, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13393 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11564, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13394 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11565, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13395 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11566, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13396 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11567, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13397 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11568, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13398 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11569, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13399 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11570, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13400 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11571, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13401 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11572, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13402 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11573, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13403 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11574, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13404 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11575, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11576, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11577, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11578, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11579, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11580, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11581, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11582, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11583, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11584, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11585, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11586, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11587, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11588, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11589, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 4314, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 4315, + "properties": { + "axis": "y" + } + }, + { + "id": 4316, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "states": [ + { + "default": true, + "id": 17459 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17463, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 17464, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 17465, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17466, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 17467, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 17468, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17469, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17470, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17472, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17473, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17474, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17476, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17477, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17478, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17486, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17487, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17488, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17489, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17490, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17492, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17493, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17494, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17496, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17497, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17498, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17506, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17507, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17508, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17509, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17510, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17512, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17513, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17514, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17516, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17517, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17518, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17526, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17527, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17528, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17529, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17530, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17532, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17533, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17534, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17536, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17537, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17538, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17546, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17547, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17548, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17551, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17552, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17553, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17554, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17555, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17556, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17557, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17558, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17559, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17560, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17563, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17564, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17565, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17566, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17567, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17568, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17569, "properties": { "east": "none", "north": "none", @@ -133064,10 +134471,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13405 + } }, { + "id": 17570, "properties": { "east": "none", "north": "none", @@ -133075,10 +134482,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13406 + } }, { + "id": 17571, "properties": { "east": "none", "north": "none", @@ -133086,10 +134493,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13407 + } }, { + "id": 17572, "properties": { "east": "none", "north": "none", @@ -133097,10 +134504,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13408 + } }, { + "id": 17573, "properties": { "east": "none", "north": "none", @@ -133108,10 +134515,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13409 + } }, { + "id": 17574, "properties": { "east": "none", "north": "none", @@ -133119,10 +134526,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13410 + } }, { + "id": 17575, "properties": { "east": "none", "north": "none", @@ -133130,10 +134537,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13411 + } }, { + "id": 17576, "properties": { "east": "none", "north": "none", @@ -133141,10 +134548,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13412 + } }, { + "id": 17577, "properties": { "east": "none", "north": "none", @@ -133152,10 +134559,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13413 + } }, { + "id": 17578, "properties": { "east": "none", "north": "none", @@ -133163,10 +134570,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13414 + } }, { + "id": 17579, "properties": { "east": "none", "north": "none", @@ -133174,10 +134581,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13415 + } }, { + "id": 17580, "properties": { "east": "none", "north": "none", @@ -133185,10 +134592,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13416 + } }, { + "id": 17581, "properties": { "east": "none", "north": "none", @@ -133196,10 +134603,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13417 + } }, { + "id": 17582, "properties": { "east": "none", "north": "none", @@ -133207,10 +134614,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13418 + } }, { + "id": 17583, "properties": { "east": "none", "north": "none", @@ -133218,10 +134625,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13419 + } }, { + "id": 17584, "properties": { "east": "none", "north": "none", @@ -133229,10 +134636,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13420 + } }, { + "id": 17585, "properties": { "east": "none", "north": "low", @@ -133240,10 +134647,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13421 + } }, { + "id": 17586, "properties": { "east": "none", "north": "low", @@ -133251,10 +134658,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13422 + } }, { + "id": 17587, "properties": { "east": "none", "north": "low", @@ -133262,10 +134669,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13423 + } }, { + "id": 17588, "properties": { "east": "none", "north": "low", @@ -133273,10 +134680,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13424 + } }, { + "id": 17589, "properties": { "east": "none", "north": "low", @@ -133284,10 +134691,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13425 + } }, { + "id": 17590, "properties": { "east": "none", "north": "low", @@ -133295,10 +134702,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13426 + } }, { + "id": 17591, "properties": { "east": "none", "north": "low", @@ -133306,10 +134713,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13427 + } }, { + "id": 17592, "properties": { "east": "none", "north": "low", @@ -133317,10 +134724,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13428 + } }, { + "id": 17593, "properties": { "east": "none", "north": "low", @@ -133328,10 +134735,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13429 + } }, { + "id": 17594, "properties": { "east": "none", "north": "low", @@ -133339,10 +134746,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13430 + } }, { + "id": 17595, "properties": { "east": "none", "north": "low", @@ -133350,10 +134757,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13431 + } }, { + "id": 17596, "properties": { "east": "none", "north": "low", @@ -133361,10 +134768,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13432 + } }, { + "id": 17597, "properties": { "east": "none", "north": "low", @@ -133372,10 +134779,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13433 + } }, { + "id": 17598, "properties": { "east": "none", "north": "low", @@ -133383,10 +134790,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13434 + } }, { + "id": 17599, "properties": { "east": "none", "north": "low", @@ -133394,10 +134801,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13435 + } }, { + "id": 17600, "properties": { "east": "none", "north": "low", @@ -133405,10 +134812,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13436 + } }, { + "id": 17601, "properties": { "east": "none", "north": "low", @@ -133416,10 +134823,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13437 + } }, { + "id": 17602, "properties": { "east": "none", "north": "low", @@ -133427,10 +134834,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13438 + } }, { + "id": 17603, "properties": { "east": "none", "north": "low", @@ -133438,10 +134845,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13439 + } }, { + "id": 17604, "properties": { "east": "none", "north": "low", @@ -133449,10 +134856,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13440 + } }, { + "id": 17605, "properties": { "east": "none", "north": "low", @@ -133460,10 +134867,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13441 + } }, { + "id": 17606, "properties": { "east": "none", "north": "low", @@ -133471,10 +134878,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13442 + } }, { + "id": 17607, "properties": { "east": "none", "north": "low", @@ -133482,10 +134889,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13443 + } }, { + "id": 17608, "properties": { "east": "none", "north": "low", @@ -133493,10 +134900,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13444 + } }, { + "id": 17609, "properties": { "east": "none", "north": "low", @@ -133504,10 +134911,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13445 + } }, { + "id": 17610, "properties": { "east": "none", "north": "low", @@ -133515,10 +134922,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13446 + } }, { + "id": 17611, "properties": { "east": "none", "north": "low", @@ -133526,10 +134933,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13447 + } }, { + "id": 17612, "properties": { "east": "none", "north": "low", @@ -133537,10 +134944,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13448 + } }, { + "id": 17613, "properties": { "east": "none", "north": "low", @@ -133548,10 +134955,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13449 + } }, { + "id": 17614, "properties": { "east": "none", "north": "low", @@ -133559,10 +134966,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13450 + } }, { + "id": 17615, "properties": { "east": "none", "north": "low", @@ -133570,10 +134977,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13451 + } }, { + "id": 17616, "properties": { "east": "none", "north": "low", @@ -133581,10 +134988,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13452 + } }, { + "id": 17617, "properties": { "east": "none", "north": "low", @@ -133592,10 +134999,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13453 + } }, { + "id": 17618, "properties": { "east": "none", "north": "low", @@ -133603,10 +135010,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13454 + } }, { + "id": 17619, "properties": { "east": "none", "north": "low", @@ -133614,10 +135021,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13455 + } }, { + "id": 17620, "properties": { "east": "none", "north": "low", @@ -133625,10 +135032,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13456 + } }, { + "id": 17621, "properties": { "east": "none", "north": "tall", @@ -133636,10 +135043,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13457 + } }, { + "id": 17622, "properties": { "east": "none", "north": "tall", @@ -133647,10 +135054,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13458 + } }, { + "id": 17623, "properties": { "east": "none", "north": "tall", @@ -133658,10 +135065,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13459 + } }, { + "id": 17624, "properties": { "east": "none", "north": "tall", @@ -133669,10 +135076,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13460 + } }, { + "id": 17625, "properties": { "east": "none", "north": "tall", @@ -133680,10 +135087,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13461 + } }, { + "id": 17626, "properties": { "east": "none", "north": "tall", @@ -133691,10 +135098,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13462 + } }, { + "id": 17627, "properties": { "east": "none", "north": "tall", @@ -133702,10 +135109,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13463 + } }, { + "id": 17628, "properties": { "east": "none", "north": "tall", @@ -133713,10 +135120,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13464 + } }, { + "id": 17629, "properties": { "east": "none", "north": "tall", @@ -133724,10 +135131,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13465 + } }, { + "id": 17630, "properties": { "east": "none", "north": "tall", @@ -133735,10 +135142,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13466 + } }, { + "id": 17631, "properties": { "east": "none", "north": "tall", @@ -133746,10 +135153,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13467 + } }, { + "id": 17632, "properties": { "east": "none", "north": "tall", @@ -133757,10 +135164,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13468 + } }, { + "id": 17633, "properties": { "east": "none", "north": "tall", @@ -133768,10 +135175,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13469 + } }, { + "id": 17634, "properties": { "east": "none", "north": "tall", @@ -133779,10 +135186,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13470 + } }, { + "id": 17635, "properties": { "east": "none", "north": "tall", @@ -133790,10 +135197,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13471 + } }, { + "id": 17636, "properties": { "east": "none", "north": "tall", @@ -133801,10 +135208,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13472 + } }, { + "id": 17637, "properties": { "east": "none", "north": "tall", @@ -133812,10 +135219,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13473 + } }, { + "id": 17638, "properties": { "east": "none", "north": "tall", @@ -133823,10 +135230,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13474 + } }, { + "id": 17639, "properties": { "east": "none", "north": "tall", @@ -133834,10 +135241,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13475 + } }, { + "id": 17640, "properties": { "east": "none", "north": "tall", @@ -133845,10 +135252,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13476 + } }, { + "id": 17641, "properties": { "east": "none", "north": "tall", @@ -133856,10 +135263,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13477 + } }, { + "id": 17642, "properties": { "east": "none", "north": "tall", @@ -133867,10 +135274,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13478 + } }, { + "id": 17643, "properties": { "east": "none", "north": "tall", @@ -133878,10 +135285,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13479 + } }, { + "id": 17644, "properties": { "east": "none", "north": "tall", @@ -133889,10 +135296,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13480 + } }, { + "id": 17645, "properties": { "east": "none", "north": "tall", @@ -133900,10 +135307,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13481 + } }, { + "id": 17646, "properties": { "east": "none", "north": "tall", @@ -133911,10 +135318,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13482 + } }, { + "id": 17647, "properties": { "east": "none", "north": "tall", @@ -133922,10 +135329,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13483 + } }, { + "id": 17648, "properties": { "east": "none", "north": "tall", @@ -133933,10 +135340,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13484 + } }, { + "id": 17649, "properties": { "east": "none", "north": "tall", @@ -133944,10 +135351,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13485 + } }, { + "id": 17650, "properties": { "east": "none", "north": "tall", @@ -133955,10 +135362,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13486 + } }, { + "id": 17651, "properties": { "east": "none", "north": "tall", @@ -133966,10 +135373,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13487 + } }, { + "id": 17652, "properties": { "east": "none", "north": "tall", @@ -133977,10 +135384,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13488 + } }, { + "id": 17653, "properties": { "east": "none", "north": "tall", @@ -133988,10 +135395,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13489 + } }, { + "id": 17654, "properties": { "east": "none", "north": "tall", @@ -133999,10 +135406,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13490 + } }, { + "id": 17655, "properties": { "east": "none", "north": "tall", @@ -134010,10 +135417,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13491 + } }, { + "id": 17656, "properties": { "east": "none", "north": "tall", @@ -134021,10 +135428,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13492 + } }, { + "id": 17657, "properties": { "east": "low", "north": "none", @@ -134032,10 +135439,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13493 + } }, { + "id": 17658, "properties": { "east": "low", "north": "none", @@ -134043,10 +135450,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13494 + } }, { + "id": 17659, "properties": { "east": "low", "north": "none", @@ -134054,10 +135461,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13495 + } }, { + "id": 17660, "properties": { "east": "low", "north": "none", @@ -134065,10 +135472,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13496 + } }, { + "id": 17661, "properties": { "east": "low", "north": "none", @@ -134076,10 +135483,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13497 + } }, { + "id": 17662, "properties": { "east": "low", "north": "none", @@ -134087,10 +135494,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13498 + } }, { + "id": 17663, "properties": { "east": "low", "north": "none", @@ -134098,10 +135505,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13499 + } }, { + "id": 17664, "properties": { "east": "low", "north": "none", @@ -134109,10 +135516,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13500 + } }, { + "id": 17665, "properties": { "east": "low", "north": "none", @@ -134120,10 +135527,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13501 + } }, { + "id": 17666, "properties": { "east": "low", "north": "none", @@ -134131,10 +135538,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13502 + } }, { + "id": 17667, "properties": { "east": "low", "north": "none", @@ -134142,10 +135549,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13503 + } }, { + "id": 17668, "properties": { "east": "low", "north": "none", @@ -134153,10 +135560,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13504 + } }, { + "id": 17669, "properties": { "east": "low", "north": "none", @@ -134164,10 +135571,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13505 + } }, { + "id": 17670, "properties": { "east": "low", "north": "none", @@ -134175,10 +135582,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13506 + } }, { + "id": 17671, "properties": { "east": "low", "north": "none", @@ -134186,10 +135593,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13507 + } }, { + "id": 17672, "properties": { "east": "low", "north": "none", @@ -134197,10 +135604,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13508 + } }, { + "id": 17673, "properties": { "east": "low", "north": "none", @@ -134208,10 +135615,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13509 + } }, { + "id": 17674, "properties": { "east": "low", "north": "none", @@ -134219,10 +135626,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13510 + } }, { + "id": 17675, "properties": { "east": "low", "north": "none", @@ -134230,10 +135637,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13511 + } }, { + "id": 17676, "properties": { "east": "low", "north": "none", @@ -134241,10 +135648,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13512 + } }, { + "id": 17677, "properties": { "east": "low", "north": "none", @@ -134252,10 +135659,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13513 + } }, { + "id": 17678, "properties": { "east": "low", "north": "none", @@ -134263,10 +135670,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13514 + } }, { + "id": 17679, "properties": { "east": "low", "north": "none", @@ -134274,10 +135681,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13515 + } }, { + "id": 17680, "properties": { "east": "low", "north": "none", @@ -134285,10 +135692,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13516 + } }, { + "id": 17681, "properties": { "east": "low", "north": "none", @@ -134296,10 +135703,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13517 + } }, { + "id": 17682, "properties": { "east": "low", "north": "none", @@ -134307,10 +135714,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13518 + } }, { + "id": 17683, "properties": { "east": "low", "north": "none", @@ -134318,10 +135725,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13519 + } }, { + "id": 17684, "properties": { "east": "low", "north": "none", @@ -134329,10 +135736,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13520 + } }, { + "id": 17685, "properties": { "east": "low", "north": "none", @@ -134340,10 +135747,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13521 + } }, { + "id": 17686, "properties": { "east": "low", "north": "none", @@ -134351,10 +135758,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13522 + } }, { + "id": 17687, "properties": { "east": "low", "north": "none", @@ -134362,10 +135769,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13523 + } }, { + "id": 17688, "properties": { "east": "low", "north": "none", @@ -134373,10 +135780,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13524 + } }, { + "id": 17689, "properties": { "east": "low", "north": "none", @@ -134384,10 +135791,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13525 + } }, { + "id": 17690, "properties": { "east": "low", "north": "none", @@ -134395,10 +135802,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13526 + } }, { + "id": 17691, "properties": { "east": "low", "north": "none", @@ -134406,10 +135813,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13527 + } }, { + "id": 17692, "properties": { "east": "low", "north": "none", @@ -134417,10 +135824,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13528 + } }, { + "id": 17693, "properties": { "east": "low", "north": "low", @@ -134428,10 +135835,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13529 + } }, { + "id": 17694, "properties": { "east": "low", "north": "low", @@ -134439,10 +135846,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13530 + } }, { + "id": 17695, "properties": { "east": "low", "north": "low", @@ -134450,10 +135857,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13531 + } }, { + "id": 17696, "properties": { "east": "low", "north": "low", @@ -134461,10 +135868,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13532 + } }, { + "id": 17697, "properties": { "east": "low", "north": "low", @@ -134472,10 +135879,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13533 + } }, { + "id": 17698, "properties": { "east": "low", "north": "low", @@ -134483,10 +135890,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13534 + } }, { + "id": 17699, "properties": { "east": "low", "north": "low", @@ -134494,10 +135901,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13535 + } }, { + "id": 17700, "properties": { "east": "low", "north": "low", @@ -134505,10 +135912,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13536 + } }, { + "id": 17701, "properties": { "east": "low", "north": "low", @@ -134516,10 +135923,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13537 + } }, { + "id": 17702, "properties": { "east": "low", "north": "low", @@ -134527,10 +135934,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13538 + } }, { + "id": 17703, "properties": { "east": "low", "north": "low", @@ -134538,10 +135945,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13539 + } }, { + "id": 17704, "properties": { "east": "low", "north": "low", @@ -134549,10 +135956,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13540 + } }, { + "id": 17705, "properties": { "east": "low", "north": "low", @@ -134560,10 +135967,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13541 + } }, { + "id": 17706, "properties": { "east": "low", "north": "low", @@ -134571,10 +135978,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13542 + } }, { + "id": 17707, "properties": { "east": "low", "north": "low", @@ -134582,10 +135989,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13543 + } }, { + "id": 17708, "properties": { "east": "low", "north": "low", @@ -134593,10 +136000,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13544 + } }, { + "id": 17709, "properties": { "east": "low", "north": "low", @@ -134604,10 +136011,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13545 + } }, { + "id": 17710, "properties": { "east": "low", "north": "low", @@ -134615,10 +136022,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13546 + } }, { + "id": 17711, "properties": { "east": "low", "north": "low", @@ -134626,10 +136033,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13547 + } }, { + "id": 17712, "properties": { "east": "low", "north": "low", @@ -134637,10 +136044,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13548 + } }, { + "id": 17713, "properties": { "east": "low", "north": "low", @@ -134648,10 +136055,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13549 + } }, { + "id": 17714, "properties": { "east": "low", "north": "low", @@ -134659,10 +136066,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13550 + } }, { + "id": 17715, "properties": { "east": "low", "north": "low", @@ -134670,10 +136077,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13551 + } }, { + "id": 17716, "properties": { "east": "low", "north": "low", @@ -134681,10 +136088,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13552 + } }, { + "id": 17717, "properties": { "east": "low", "north": "low", @@ -134692,10 +136099,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13553 + } }, { + "id": 17718, "properties": { "east": "low", "north": "low", @@ -134703,10 +136110,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13554 + } }, { + "id": 17719, "properties": { "east": "low", "north": "low", @@ -134714,10 +136121,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13555 + } }, { + "id": 17720, "properties": { "east": "low", "north": "low", @@ -134725,10 +136132,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13556 + } }, { + "id": 17721, "properties": { "east": "low", "north": "low", @@ -134736,10 +136143,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13557 + } }, { + "id": 17722, "properties": { "east": "low", "north": "low", @@ -134747,10 +136154,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13558 + } }, { + "id": 17723, "properties": { "east": "low", "north": "low", @@ -134758,10 +136165,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13559 + } }, { + "id": 17724, "properties": { "east": "low", "north": "low", @@ -134769,10 +136176,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13560 + } }, { + "id": 17725, "properties": { "east": "low", "north": "low", @@ -134780,10 +136187,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13561 + } }, { + "id": 17726, "properties": { "east": "low", "north": "low", @@ -134791,10 +136198,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13562 + } }, { + "id": 17727, "properties": { "east": "low", "north": "low", @@ -134802,10 +136209,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13563 + } }, { + "id": 17728, "properties": { "east": "low", "north": "low", @@ -134813,10 +136220,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13564 + } }, { + "id": 17729, "properties": { "east": "low", "north": "tall", @@ -134824,10 +136231,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13565 + } }, { + "id": 17730, "properties": { "east": "low", "north": "tall", @@ -134835,10 +136242,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13566 + } }, { + "id": 17731, "properties": { "east": "low", "north": "tall", @@ -134846,10 +136253,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13567 + } }, { + "id": 17732, "properties": { "east": "low", "north": "tall", @@ -134857,10 +136264,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13568 + } }, { + "id": 17733, "properties": { "east": "low", "north": "tall", @@ -134868,10 +136275,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13569 + } }, { + "id": 17734, "properties": { "east": "low", "north": "tall", @@ -134879,10 +136286,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13570 + } }, { + "id": 17735, "properties": { "east": "low", "north": "tall", @@ -134890,10 +136297,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13571 + } }, { + "id": 17736, "properties": { "east": "low", "north": "tall", @@ -134901,10 +136308,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13572 + } }, { + "id": 17737, "properties": { "east": "low", "north": "tall", @@ -134912,10 +136319,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13573 + } }, { + "id": 17738, "properties": { "east": "low", "north": "tall", @@ -134923,10 +136330,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13574 + } }, { + "id": 17739, "properties": { "east": "low", "north": "tall", @@ -134934,10 +136341,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13575 + } }, { + "id": 17740, "properties": { "east": "low", "north": "tall", @@ -134945,10 +136352,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13576 + } }, { + "id": 17741, "properties": { "east": "low", "north": "tall", @@ -134956,10 +136363,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13577 + } }, { + "id": 17742, "properties": { "east": "low", "north": "tall", @@ -134967,10 +136374,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13578 + } }, { + "id": 17743, "properties": { "east": "low", "north": "tall", @@ -134978,10 +136385,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13579 + } }, { + "id": 17744, "properties": { "east": "low", "north": "tall", @@ -134989,10 +136396,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13580 + } }, { + "id": 17745, "properties": { "east": "low", "north": "tall", @@ -135000,10 +136407,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13581 + } }, { + "id": 17746, "properties": { "east": "low", "north": "tall", @@ -135011,10 +136418,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13582 + } }, { + "id": 17747, "properties": { "east": "low", "north": "tall", @@ -135022,10 +136429,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13583 + } }, { + "id": 17748, "properties": { "east": "low", "north": "tall", @@ -135033,10 +136440,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13584 + } }, { + "id": 17749, "properties": { "east": "low", "north": "tall", @@ -135044,10 +136451,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13585 + } }, { + "id": 17750, "properties": { "east": "low", "north": "tall", @@ -135055,10 +136462,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13586 + } }, { + "id": 17751, "properties": { "east": "low", "north": "tall", @@ -135066,10 +136473,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13587 + } }, { + "id": 17752, "properties": { "east": "low", "north": "tall", @@ -135077,10 +136484,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13588 + } }, { + "id": 17753, "properties": { "east": "low", "north": "tall", @@ -135088,10 +136495,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13589 + } }, { + "id": 17754, "properties": { "east": "low", "north": "tall", @@ -135099,10 +136506,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13590 + } }, { + "id": 17755, "properties": { "east": "low", "north": "tall", @@ -135110,10 +136517,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13591 + } }, { + "id": 17756, "properties": { "east": "low", "north": "tall", @@ -135121,10 +136528,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13592 + } }, { + "id": 17757, "properties": { "east": "low", "north": "tall", @@ -135132,10 +136539,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13593 + } }, { + "id": 17758, "properties": { "east": "low", "north": "tall", @@ -135143,10 +136550,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13594 + } }, { + "id": 17759, "properties": { "east": "low", "north": "tall", @@ -135154,10 +136561,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13595 + } }, { + "id": 17760, "properties": { "east": "low", "north": "tall", @@ -135165,10 +136572,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13596 + } }, { + "id": 17761, "properties": { "east": "low", "north": "tall", @@ -135176,10 +136583,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13597 + } }, { + "id": 17762, "properties": { "east": "low", "north": "tall", @@ -135187,10 +136594,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13598 + } }, { + "id": 17763, "properties": { "east": "low", "north": "tall", @@ -135198,10 +136605,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13599 + } }, { + "id": 17764, "properties": { "east": "low", "north": "tall", @@ -135209,10 +136616,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13600 + } }, { + "id": 17765, "properties": { "east": "tall", "north": "none", @@ -135220,10 +136627,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13601 + } }, { + "id": 17766, "properties": { "east": "tall", "north": "none", @@ -135231,10 +136638,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13602 + } }, { + "id": 17767, "properties": { "east": "tall", "north": "none", @@ -135242,10 +136649,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13603 + } }, { + "id": 17768, "properties": { "east": "tall", "north": "none", @@ -135253,10 +136660,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13604 + } }, { + "id": 17769, "properties": { "east": "tall", "north": "none", @@ -135264,10 +136671,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13605 + } }, { + "id": 17770, "properties": { "east": "tall", "north": "none", @@ -135275,10 +136682,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13606 + } }, { + "id": 17771, "properties": { "east": "tall", "north": "none", @@ -135286,10 +136693,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13607 + } }, { + "id": 17772, "properties": { "east": "tall", "north": "none", @@ -135297,10 +136704,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13608 + } }, { + "id": 17773, "properties": { "east": "tall", "north": "none", @@ -135308,10 +136715,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13609 + } }, { + "id": 17774, "properties": { "east": "tall", "north": "none", @@ -135319,10 +136726,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13610 + } }, { + "id": 17775, "properties": { "east": "tall", "north": "none", @@ -135330,10 +136737,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13611 + } }, { + "id": 17776, "properties": { "east": "tall", "north": "none", @@ -135341,10 +136748,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13612 + } }, { + "id": 17777, "properties": { "east": "tall", "north": "none", @@ -135352,10 +136759,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13613 + } }, { + "id": 17778, "properties": { "east": "tall", "north": "none", @@ -135363,10 +136770,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13614 + } }, { + "id": 17779, "properties": { "east": "tall", "north": "none", @@ -135374,10 +136781,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13615 + } }, { + "id": 17780, "properties": { "east": "tall", "north": "none", @@ -135385,10 +136792,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13616 + } }, { + "id": 17781, "properties": { "east": "tall", "north": "none", @@ -135396,10 +136803,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13617 + } }, { + "id": 17782, "properties": { "east": "tall", "north": "none", @@ -135407,10 +136814,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13618 + } }, { + "id": 17783, "properties": { "east": "tall", "north": "none", @@ -135418,10 +136825,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13619 + } }, { + "id": 17784, "properties": { "east": "tall", "north": "none", @@ -135429,10 +136836,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13620 + } }, { + "id": 17785, "properties": { "east": "tall", "north": "none", @@ -135440,10 +136847,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13621 + } }, { + "id": 17786, "properties": { "east": "tall", "north": "none", @@ -135451,10 +136858,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13622 + } }, { + "id": 17787, "properties": { "east": "tall", "north": "none", @@ -135462,10 +136869,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13623 + } }, { + "id": 17788, "properties": { "east": "tall", "north": "none", @@ -135473,10 +136880,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13624 + } }, { + "id": 17789, "properties": { "east": "tall", "north": "none", @@ -135484,10 +136891,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13625 + } }, { + "id": 17790, "properties": { "east": "tall", "north": "none", @@ -135495,10 +136902,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13626 + } }, { + "id": 17791, "properties": { "east": "tall", "north": "none", @@ -135506,10 +136913,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13627 + } }, { + "id": 17792, "properties": { "east": "tall", "north": "none", @@ -135517,10 +136924,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13628 + } }, { + "id": 17793, "properties": { "east": "tall", "north": "none", @@ -135528,10 +136935,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13629 + } }, { + "id": 17794, "properties": { "east": "tall", "north": "none", @@ -135539,10 +136946,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13630 + } }, { + "id": 17795, "properties": { "east": "tall", "north": "none", @@ -135550,10 +136957,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13631 + } }, { + "id": 17796, "properties": { "east": "tall", "north": "none", @@ -135561,10 +136968,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13632 + } }, { + "id": 17797, "properties": { "east": "tall", "north": "none", @@ -135572,10 +136979,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13633 + } }, { + "id": 17798, "properties": { "east": "tall", "north": "none", @@ -135583,10 +136990,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13634 + } }, { + "id": 17799, "properties": { "east": "tall", "north": "none", @@ -135594,10 +137001,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13635 + } }, { + "id": 17800, "properties": { "east": "tall", "north": "none", @@ -135605,10 +137012,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13636 + } }, { + "id": 17801, "properties": { "east": "tall", "north": "low", @@ -135616,10 +137023,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13637 + } }, { + "id": 17802, "properties": { "east": "tall", "north": "low", @@ -135627,10 +137034,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13638 + } }, { + "id": 17803, "properties": { "east": "tall", "north": "low", @@ -135638,10 +137045,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13639 + } }, { + "id": 17804, "properties": { "east": "tall", "north": "low", @@ -135649,10 +137056,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13640 + } }, { + "id": 17805, "properties": { "east": "tall", "north": "low", @@ -135660,10 +137067,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13641 + } }, { + "id": 17806, "properties": { "east": "tall", "north": "low", @@ -135671,10 +137078,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13642 + } }, { + "id": 17807, "properties": { "east": "tall", "north": "low", @@ -135682,10 +137089,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13643 + } }, { + "id": 17808, "properties": { "east": "tall", "north": "low", @@ -135693,10 +137100,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13644 + } }, { + "id": 17809, "properties": { "east": "tall", "north": "low", @@ -135704,10 +137111,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13645 + } }, { + "id": 17810, "properties": { "east": "tall", "north": "low", @@ -135715,10 +137122,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13646 + } }, { + "id": 17811, "properties": { "east": "tall", "north": "low", @@ -135726,10 +137133,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13647 + } }, { + "id": 17812, "properties": { "east": "tall", "north": "low", @@ -135737,10 +137144,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13648 + } }, { + "id": 17813, "properties": { "east": "tall", "north": "low", @@ -135748,10 +137155,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13649 + } }, { + "id": 17814, "properties": { "east": "tall", "north": "low", @@ -135759,10 +137166,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13650 + } }, { + "id": 17815, "properties": { "east": "tall", "north": "low", @@ -135770,10 +137177,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13651 + } }, { + "id": 17816, "properties": { "east": "tall", "north": "low", @@ -135781,10 +137188,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13652 + } }, { + "id": 17817, "properties": { "east": "tall", "north": "low", @@ -135792,10 +137199,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13653 + } }, { + "id": 17818, "properties": { "east": "tall", "north": "low", @@ -135803,10 +137210,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13654 + } }, { + "id": 17819, "properties": { "east": "tall", "north": "low", @@ -135814,10 +137221,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13655 + } }, { + "id": 17820, "properties": { "east": "tall", "north": "low", @@ -135825,10 +137232,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13656 + } }, { + "id": 17821, "properties": { "east": "tall", "north": "low", @@ -135836,10 +137243,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13657 + } }, { + "id": 17822, "properties": { "east": "tall", "north": "low", @@ -135847,10 +137254,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13658 + } }, { + "id": 17823, "properties": { "east": "tall", "north": "low", @@ -135858,10 +137265,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13659 + } }, { + "id": 17824, "properties": { "east": "tall", "north": "low", @@ -135869,10 +137276,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13660 + } }, { + "id": 17825, "properties": { "east": "tall", "north": "low", @@ -135880,10 +137287,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13661 + } }, { + "id": 17826, "properties": { "east": "tall", "north": "low", @@ -135891,10 +137298,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13662 + } }, { + "id": 17827, "properties": { "east": "tall", "north": "low", @@ -135902,10 +137309,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13663 + } }, { + "id": 17828, "properties": { "east": "tall", "north": "low", @@ -135913,10 +137320,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13664 + } }, { + "id": 17829, "properties": { "east": "tall", "north": "low", @@ -135924,10 +137331,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13665 + } }, { + "id": 17830, "properties": { "east": "tall", "north": "low", @@ -135935,10 +137342,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13666 + } }, { + "id": 17831, "properties": { "east": "tall", "north": "low", @@ -135946,10 +137353,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13667 + } }, { + "id": 17832, "properties": { "east": "tall", "north": "low", @@ -135957,10 +137364,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13668 + } }, { + "id": 17833, "properties": { "east": "tall", "north": "low", @@ -135968,10 +137375,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13669 + } }, { + "id": 17834, "properties": { "east": "tall", "north": "low", @@ -135979,10 +137386,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13670 + } }, { + "id": 17835, "properties": { "east": "tall", "north": "low", @@ -135990,10 +137397,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13671 + } }, { + "id": 17836, "properties": { "east": "tall", "north": "low", @@ -136001,10 +137408,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13672 + } }, { + "id": 17837, "properties": { "east": "tall", "north": "tall", @@ -136012,10 +137419,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13673 + } }, { + "id": 17838, "properties": { "east": "tall", "north": "tall", @@ -136023,10 +137430,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13674 + } }, { + "id": 17839, "properties": { "east": "tall", "north": "tall", @@ -136034,10 +137441,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13675 + } }, { + "id": 17840, "properties": { "east": "tall", "north": "tall", @@ -136045,10 +137452,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13676 + } }, { + "id": 17841, "properties": { "east": "tall", "north": "tall", @@ -136056,10 +137463,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13677 + } }, { + "id": 17842, "properties": { "east": "tall", "north": "tall", @@ -136067,10 +137474,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13678 + } }, { + "id": 17843, "properties": { "east": "tall", "north": "tall", @@ -136078,10 +137485,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13679 + } }, { + "id": 17844, "properties": { "east": "tall", "north": "tall", @@ -136089,10 +137496,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13680 + } }, { + "id": 17845, "properties": { "east": "tall", "north": "tall", @@ -136100,10 +137507,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13681 + } }, { + "id": 17846, "properties": { "east": "tall", "north": "tall", @@ -136111,10 +137518,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13682 + } }, { + "id": 17847, "properties": { "east": "tall", "north": "tall", @@ -136122,10 +137529,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13683 + } }, { + "id": 17848, "properties": { "east": "tall", "north": "tall", @@ -136133,10 +137540,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13684 + } }, { + "id": 17849, "properties": { "east": "tall", "north": "tall", @@ -136144,10 +137551,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13685 + } }, { + "id": 17850, "properties": { "east": "tall", "north": "tall", @@ -136155,10 +137562,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13686 + } }, { + "id": 17851, "properties": { "east": "tall", "north": "tall", @@ -136166,10 +137573,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13687 + } }, { + "id": 17852, "properties": { "east": "tall", "north": "tall", @@ -136177,10 +137584,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13688 + } }, { + "id": 17853, "properties": { "east": "tall", "north": "tall", @@ -136188,10 +137595,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13689 + } }, { + "id": 17854, "properties": { "east": "tall", "north": "tall", @@ -136199,10 +137606,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13690 + } }, { + "id": 17855, "properties": { "east": "tall", "north": "tall", @@ -136210,10 +137617,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13691 + } }, { + "id": 17856, "properties": { "east": "tall", "north": "tall", @@ -136221,10 +137628,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13692 + } }, { + "id": 17857, "properties": { "east": "tall", "north": "tall", @@ -136232,10 +137639,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13693 + } }, { + "id": 17858, "properties": { "east": "tall", "north": "tall", @@ -136243,10 +137650,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13694 + } }, { + "id": 17859, "properties": { "east": "tall", "north": "tall", @@ -136254,10 +137661,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13695 + } }, { + "id": 17860, "properties": { "east": "tall", "north": "tall", @@ -136265,10 +137672,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13696 + } }, { + "id": 17861, "properties": { "east": "tall", "north": "tall", @@ -136276,10 +137683,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13697 + } }, { + "id": 17862, "properties": { "east": "tall", "north": "tall", @@ -136287,10 +137694,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13698 + } }, { + "id": 17863, "properties": { "east": "tall", "north": "tall", @@ -136298,10 +137705,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13699 + } }, { + "id": 17864, "properties": { "east": "tall", "north": "tall", @@ -136309,10 +137716,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13700 + } }, { + "id": 17865, "properties": { "east": "tall", "north": "tall", @@ -136320,10 +137727,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13701 + } }, { + "id": 17866, "properties": { "east": "tall", "north": "tall", @@ -136331,10 +137738,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13702 + } }, { + "id": 17867, "properties": { "east": "tall", "north": "tall", @@ -136342,10 +137749,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13703 + } }, { + "id": 17868, "properties": { "east": "tall", "north": "tall", @@ -136353,10 +137760,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13704 + } }, { + "id": 17869, "properties": { "east": "tall", "north": "tall", @@ -136364,10 +137771,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13705 + } }, { + "id": 17870, "properties": { "east": "tall", "north": "tall", @@ -136375,10 +137782,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13706 + } }, { + "id": 17871, "properties": { "east": "tall", "north": "tall", @@ -136386,10 +137793,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13707 + } }, { + "id": 17872, "properties": { "east": "tall", "north": "tall", @@ -136397,12 +137804,1062 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13708 + } } ] }, - "minecraft:red_nether_brick_wall": { + "minecraft:polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 17460 + } + ] + }, + "minecraft:polished_blackstone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17962, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 17963, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17964, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17965, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17966, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17967, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17968, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17969, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 17970, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 17971, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17972, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17973, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17974, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17975, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17976, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17977, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 17978, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 17979, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 17980, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 17981, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 17982, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 17983, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 17984, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 17985, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17960, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 17961, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17954, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 17955, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 17956, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17957, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 17958, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 17959, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 17874, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17875, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17876, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17877, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17878, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17879, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17880, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17881, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17882, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17883, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 17885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17890, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17894, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17895, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17896, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17897, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17898, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17899, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17900, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17901, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17902, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17903, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17910, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17914, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17915, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17916, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17917, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17918, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17919, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17920, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17921, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17922, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17923, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17930, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17934, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17935, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17936, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17937, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17938, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17939, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17940, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17941, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17942, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17943, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 17944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 17945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 17946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 17947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 17948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 17949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 17950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 17951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 17952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 17953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { "properties": { "east": [ "none", @@ -136435,6 +138892,7 @@ }, "states": [ { + "id": 17986, "properties": { "east": "none", "north": "none", @@ -136442,10 +138900,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13709 + } }, { + "id": 17987, "properties": { "east": "none", "north": "none", @@ -136453,10 +138911,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13710 + } }, { + "id": 17988, "properties": { "east": "none", "north": "none", @@ -136464,10 +138922,11 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13711 + } }, { + "default": true, + "id": 17989, "properties": { "east": "none", "north": "none", @@ -136475,11 +138934,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13712, - "default": true + } }, { + "id": 17990, "properties": { "east": "none", "north": "none", @@ -136487,10 +138945,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13713 + } }, { + "id": 17991, "properties": { "east": "none", "north": "none", @@ -136498,10 +138956,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13714 + } }, { + "id": 17992, "properties": { "east": "none", "north": "none", @@ -136509,10 +138967,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13715 + } }, { + "id": 17993, "properties": { "east": "none", "north": "none", @@ -136520,10 +138978,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13716 + } }, { + "id": 17994, "properties": { "east": "none", "north": "none", @@ -136531,10 +138989,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13717 + } }, { + "id": 17995, "properties": { "east": "none", "north": "none", @@ -136542,10 +139000,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13718 + } }, { + "id": 17996, "properties": { "east": "none", "north": "none", @@ -136553,10 +139011,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13719 + } }, { + "id": 17997, "properties": { "east": "none", "north": "none", @@ -136564,10 +139022,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13720 + } }, { + "id": 17998, "properties": { "east": "none", "north": "none", @@ -136575,10 +139033,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13721 + } }, { + "id": 17999, "properties": { "east": "none", "north": "none", @@ -136586,10 +139044,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13722 + } }, { + "id": 18000, "properties": { "east": "none", "north": "none", @@ -136597,10 +139055,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13723 + } }, { + "id": 18001, "properties": { "east": "none", "north": "none", @@ -136608,10 +139066,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13724 + } }, { + "id": 18002, "properties": { "east": "none", "north": "none", @@ -136619,10 +139077,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13725 + } }, { + "id": 18003, "properties": { "east": "none", "north": "none", @@ -136630,10 +139088,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13726 + } }, { + "id": 18004, "properties": { "east": "none", "north": "none", @@ -136641,10 +139099,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13727 + } }, { + "id": 18005, "properties": { "east": "none", "north": "none", @@ -136652,10 +139110,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13728 + } }, { + "id": 18006, "properties": { "east": "none", "north": "none", @@ -136663,10 +139121,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13729 + } }, { + "id": 18007, "properties": { "east": "none", "north": "none", @@ -136674,10 +139132,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13730 + } }, { + "id": 18008, "properties": { "east": "none", "north": "none", @@ -136685,10 +139143,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13731 + } }, { + "id": 18009, "properties": { "east": "none", "north": "none", @@ -136696,10 +139154,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13732 + } }, { + "id": 18010, "properties": { "east": "none", "north": "none", @@ -136707,10 +139165,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13733 + } }, { + "id": 18011, "properties": { "east": "none", "north": "none", @@ -136718,10 +139176,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13734 + } }, { + "id": 18012, "properties": { "east": "none", "north": "none", @@ -136729,10 +139187,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13735 + } }, { + "id": 18013, "properties": { "east": "none", "north": "none", @@ -136740,10 +139198,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13736 + } }, { + "id": 18014, "properties": { "east": "none", "north": "none", @@ -136751,10 +139209,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13737 + } }, { + "id": 18015, "properties": { "east": "none", "north": "none", @@ -136762,10 +139220,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13738 + } }, { + "id": 18016, "properties": { "east": "none", "north": "none", @@ -136773,10 +139231,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13739 + } }, { + "id": 18017, "properties": { "east": "none", "north": "none", @@ -136784,10 +139242,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13740 + } }, { + "id": 18018, "properties": { "east": "none", "north": "none", @@ -136795,10 +139253,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13741 + } }, { + "id": 18019, "properties": { "east": "none", "north": "none", @@ -136806,10 +139264,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13742 + } }, { + "id": 18020, "properties": { "east": "none", "north": "none", @@ -136817,10 +139275,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13743 + } }, { + "id": 18021, "properties": { "east": "none", "north": "none", @@ -136828,10378 +139286,19999 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13744 + } + }, + { + "id": 18022, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18023, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18024, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18025, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18026, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 18027, "properties": { "east": "none", "north": "low", "south": "none", "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18029, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" - }, - "id": 13745 + } + }, + { + "id": 18032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 18033, "properties": { "east": "none", "north": "low", "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18034, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18035, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18036, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18037, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18038, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18039, + "properties": { + "east": "none", + "north": "low", + "south": "low", "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18041, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13746 + } + }, + { + "id": 18042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18046, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18047, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18048, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18049, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18050, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18053, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18058, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18059, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18060, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18061, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18062, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18065, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18070, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18071, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18072, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18073, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18074, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18077, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18082, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18083, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18084, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18085, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18086, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18094, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18095, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18096, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18097, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18098, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18101, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18106, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18107, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18108, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18109, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18110, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18113, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18118, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18119, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18120, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18121, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18122, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18125, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18130, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18131, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18132, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18133, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18134, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18137, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18142, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18143, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18144, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18145, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18146, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18149, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18154, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18155, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18156, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18157, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18158, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18161, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18166, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18167, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18168, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18169, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18170, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18173, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18178, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18179, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18180, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18181, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18182, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18185, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18190, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18191, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18192, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18193, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18194, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18202, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18203, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18204, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18205, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18206, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18209, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18214, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18215, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18216, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18217, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18218, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18221, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18226, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18227, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18228, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18229, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18230, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18238, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18239, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18240, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18241, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18242, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18245, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18250, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18251, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18252, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18253, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18254, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18257, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18262, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18263, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18264, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18265, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18266, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18274, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18275, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18276, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18277, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18278, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18281, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18286, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18287, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18288, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18289, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18290, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18298, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18299, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18300, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18301, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18302, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "states": [ + { + "default": true, + "id": 20192 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20273, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 20274, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 20275, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20276, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 20277, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 20278, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20193, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20194, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20195, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20196, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20197, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20198, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20199, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20200, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20201, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20202, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20203, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20204, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20205, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20209, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20210, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20211, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20213, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20214, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20215, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20216, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20217, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20218, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20219, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20220, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20221, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20222, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20223, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20224, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20225, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20230, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20233, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20234, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20235, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20236, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20237, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20238, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20239, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20240, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20241, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20242, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20243, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20244, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20245, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20249, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20250, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20251, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20253, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20254, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20255, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20256, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20257, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20258, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20259, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20260, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20261, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20262, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20263, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20269, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20270, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20271, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20279, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20280, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20281, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20282, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20283, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20284, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20285, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20286, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20287, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20288, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20289, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20290, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20291, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20292, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20293, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20294, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20295, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20296, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20297, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20298, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20299, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20300, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20301, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20302, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20303, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20304, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20305, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20306, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20307, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20308, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20309, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20310, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20311, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20312, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20313, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20314, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20315, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20316, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20317, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20318, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20319, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20320, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20321, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20322, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20323, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20324, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20325, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20326, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20327, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20328, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20329, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20330, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20331, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20332, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20333, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20334, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20335, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20336, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20337, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20338, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20339, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20340, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20341, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20342, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20343, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20344, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20345, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20346, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20347, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20348, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20349, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20350, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20351, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20352, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20353, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20354, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20355, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20356, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20357, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20358, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20359, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20360, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20361, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20362, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20363, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20364, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20365, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20366, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20367, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20368, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20369, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20370, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20371, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20372, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20373, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20374, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20375, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20376, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20377, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20378, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20379, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20380, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20381, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20382, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20383, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20384, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20385, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20386, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20387, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20388, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20389, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20390, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20391, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20392, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20393, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20394, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20395, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20396, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20397, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20398, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20399, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20400, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20401, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20402, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20403, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20404, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20405, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20406, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20407, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20408, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20409, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20410, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20411, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20412, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20413, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20414, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20415, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20416, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20417, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20418, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20419, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20420, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20421, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20422, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20423, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20424, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20425, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20426, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20427, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20428, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20429, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20430, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20431, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20432, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20433, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20434, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20435, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20436, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20437, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20438, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20439, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20440, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20441, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20442, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20443, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20444, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20445, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20446, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20447, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20448, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20449, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20450, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20451, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20452, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20453, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20454, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20455, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20456, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20457, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20458, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20459, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20460, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20461, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20462, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20463, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20464, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20465, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20466, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20467, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20468, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20469, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20470, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20471, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20472, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20473, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20474, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20475, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20476, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20477, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20478, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20479, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20480, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20481, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20482, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20483, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20484, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20485, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20486, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20487, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20488, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20489, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20490, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20491, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20492, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20493, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20494, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20495, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20496, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20497, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20498, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20499, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20500, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20501, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20502, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20503, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20504, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20505, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20506, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20507, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20508, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20509, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20510, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20511, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20512, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20513, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20514, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20515, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20516, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20517, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20518, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20519, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20520, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20521, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20522, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20523, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20524, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20525, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20526, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20527, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20528, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20529, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20530, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20531, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20532, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20533, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20534, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20535, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20536, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20537, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20538, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20539, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20540, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20541, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20542, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20543, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20544, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20545, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20546, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20547, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20548, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20549, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20550, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20551, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20552, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20553, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20554, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20555, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20556, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20557, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20558, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20559, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20560, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20561, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20562, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20563, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20564, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20565, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20566, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20567, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20568, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20569, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20570, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20571, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20572, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20573, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20574, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20575, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20576, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20577, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20578, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20579, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20580, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20581, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20582, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20583, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20584, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20585, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20586, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20587, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20588, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20589, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20590, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20591, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20592, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20593, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20594, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20595, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20596, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20597, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20598, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20599, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20600, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20601, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20602, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11688, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11689, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11690, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11691, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11692, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11693, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10790, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10791, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10792, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10793, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10794, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10795, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10796, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10797, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10798, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10799, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10800, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10801, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10802, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10803, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10804, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10805, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10806, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10807, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10808, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10810, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10811, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10812, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10813, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10814, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10815, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10816, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10817, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10818, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10819, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10820, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10821, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10822, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10823, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10824, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10825, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10826, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10827, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10828, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10830, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10831, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10832, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10833, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10834, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10835, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10836, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10837, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10838, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10839, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10840, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10841, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10842, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10843, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10844, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10845, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10846, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10847, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10848, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10849, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10850, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10851, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10852, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10853, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10854, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10855, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10856, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10857, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10858, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10859, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10860, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10861, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10862, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10863, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10864, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10865, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10866, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10867, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10868, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10869, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11670, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11671, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11672, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11673, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11674, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11675, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10550, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10551, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10552, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10553, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10554, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10555, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10556, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10557, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10558, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10559, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10566, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10567, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10568, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10569, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10570, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10571, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10572, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10573, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10574, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10575, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10576, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10577, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10578, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10579, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10586, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10587, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10588, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10589, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10590, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10591, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10592, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10593, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10594, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10595, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10596, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10597, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10598, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10599, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10606, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10607, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10608, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10609, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10610, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10611, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10612, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10613, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10614, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10615, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10616, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10617, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10618, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10619, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10626, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10627, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10628, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10629, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:poppy": { + "states": [ + { + "default": true, + "id": 1667 + } + ] + }, + "minecraft:potatoes": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6931, + "properties": { + "age": "0" + } + }, + { + "id": 6932, + "properties": { + "age": "1" + } + }, + { + "id": 6933, + "properties": { + "age": "2" + } + }, + { + "id": 6934, + "properties": { + "age": "3" + } + }, + { + "id": 6935, + "properties": { + "age": "4" + } + }, + { + "id": 6936, + "properties": { + "age": "5" + } + }, + { + "id": 6937, + "properties": { + "age": "6" + } + }, + { + "id": 6938, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "states": [ + { + "default": true, + "id": 6902 + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "default": true, + "id": 6909 + } + ] + }, + "minecraft:potted_azalea_bush": { + "states": [ + { + "default": true, + "id": 21435 + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "default": true, + "id": 6910 + } + ] + }, + "minecraft:potted_bamboo": { + "states": [ + { + "default": true, + "id": 10545 + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "default": true, + "id": 6900 + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "default": true, + "id": 6908 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "default": true, + "id": 6920 + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "default": true, + "id": 6922 + } + ] + }, + "minecraft:potted_cornflower": { + "states": [ + { + "default": true, + "id": 6916 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "states": [ + { + "default": true, + "id": 17043 + } + ] + }, + "minecraft:potted_crimson_roots": { + "states": [ + { + "default": true, + "id": 17045 + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "default": true, + "id": 6906 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "default": true, + "id": 6903 + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "default": true, + "id": 6921 + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "default": true, + "id": 6905 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "states": [ + { + "default": true, + "id": 21436 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "default": true, + "id": 6901 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 6917 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "states": [ + { + "default": true, + "id": 6904 + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "default": true, + "id": 6898 + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "default": true, + "id": 6912 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "default": true, + "id": 6915 + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "default": true, + "id": 6914 + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "default": true, + "id": 6907 + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "default": true, + "id": 6919 + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "default": true, + "id": 6911 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "default": true, + "id": 6899 + } + ] + }, + "minecraft:potted_warped_fungus": { + "states": [ + { + "default": true, + "id": 17044 + } + ] + }, + "minecraft:potted_warped_roots": { + "states": [ + { + "default": true, + "id": 17046 + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "default": true, + "id": 6913 + } + ] + }, + "minecraft:potted_wither_rose": { + "states": [ + { + "default": true, + "id": 6918 + } + ] + }, + "minecraft:powder_snow": { + "states": [ + { + "default": true, + "id": 18672 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 5733, + "properties": { + "level": "1" + } + }, + { + "id": 5734, + "properties": { + "level": "2" + } + }, + { + "id": 5735, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1535, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1536, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1537, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1538, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1539, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1540, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1541, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1542, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1543, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1544, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1545, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1546, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1547, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1548, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1549, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } }, { + "id": 1550, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13747 + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } }, { + "id": 1551, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13748 + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } }, { + "id": 1552, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13749 + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } }, { + "id": 1553, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13750 + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } }, { + "id": 1554, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13751 + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } }, { + "id": 1555, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13752 + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } }, { + "id": 1556, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13753 + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } }, { + "id": 1557, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13754 + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } }, { + "id": 1558, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13755 - }, + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "states": [ + { + "default": true, + "id": 8342 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8591, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13756 + "type": "top", + "waterlogged": "true" + } }, { + "id": 8592, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13757 + "type": "top", + "waterlogged": "false" + } }, { + "id": 8593, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13758 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 8594, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13759 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 8595, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13760 + "type": "double", + "waterlogged": "true" + } }, { + "id": 8596, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13761 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8425, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13762 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8426, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13763 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8427, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13764 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8428, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13765 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8429, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13766 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8430, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13767 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8431, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13768 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8432, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13769 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8433, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13770 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8434, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13771 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8435, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13772 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 8436, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13773 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8437, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13774 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8438, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13775 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8439, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13776 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8440, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13777 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8441, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13778 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8442, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13779 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8443, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13780 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8444, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13781 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8445, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13782 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8446, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13783 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8447, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13784 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8448, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13785 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8449, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13786 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8450, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13787 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8451, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13788 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8452, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13789 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8453, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13790 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8454, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13791 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8455, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13792 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8456, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13793 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8457, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13794 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8458, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13795 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8459, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13796 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8460, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13797 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8461, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13798 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8462, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13799 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8463, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13800 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8464, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13801 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8465, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13802 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8466, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13803 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8467, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13804 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8468, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13805 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8469, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13806 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8470, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13807 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8471, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13808 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8472, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13809 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8473, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13810 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8474, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13811 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8475, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13812 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8476, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13813 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8477, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13814 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8478, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13815 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8479, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13816 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8480, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13817 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8481, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13818 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8482, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13819 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8483, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13820 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8484, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13821 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8485, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13822 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8486, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13823 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8487, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13824 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8488, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13825 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8489, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13826 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8490, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13827 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8491, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13828 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8492, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13829 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8493, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13830 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8494, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13831 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8495, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13832 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8496, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13833 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8497, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13834 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8498, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13835 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8499, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13836 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8500, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13837 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8501, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13838 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8502, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13839 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8503, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13840 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8504, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13841 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "states": [ + { + "default": true, + "id": 8343 + } + ] + }, + "minecraft:prismarine_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8585, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 8586, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13842 + "type": "top", + "waterlogged": "false" + } }, { + "id": 8587, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13843 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 8588, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13844 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 8589, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13845 + "type": "double", + "waterlogged": "true" + } }, { + "id": 8590, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13846 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8345, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8346, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13847 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8347, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13848 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8348, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13849 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8349, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13850 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8350, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13851 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8351, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13852 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8352, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13853 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8353, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13854 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8354, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13855 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8355, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13856 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 8356, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13857 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8357, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13858 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8358, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13859 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8359, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13860 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8360, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13861 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8361, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13862 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8362, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13863 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8363, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13864 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8364, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13865 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8365, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13866 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8366, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13867 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8367, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13868 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8368, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13869 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8369, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13870 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8370, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13871 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8371, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13872 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8372, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13873 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8373, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13874 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8374, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13875 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8375, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13876 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8376, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13877 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8377, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13878 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8378, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13879 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8379, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13880 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8380, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13881 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8381, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13882 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8382, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13883 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8383, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13884 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8384, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13885 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8385, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13886 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8386, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13887 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8387, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13888 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8388, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13889 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8389, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13890 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8390, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13891 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8391, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13892 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8392, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13893 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8393, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13894 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8394, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13895 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8395, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13896 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8396, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13897 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8397, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13898 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8398, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13899 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8399, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13900 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8400, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13901 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8401, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13902 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8402, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13903 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8403, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13904 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8404, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13905 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8405, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13906 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8406, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13907 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8407, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13908 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8408, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13909 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8409, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13910 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8410, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13911 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8411, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13912 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8412, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 13913 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8413, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 13914 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8414, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 13915 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8415, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 13916 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8416, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 13917 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8417, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 13918 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8418, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 13919 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8419, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 13920 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8420, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 13921 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8421, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 13922 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8422, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 13923 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8423, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 13924 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8424, "properties": { - "east": "tall", + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 12072, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13925 + } }, { + "id": 12073, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13926 + } }, { + "id": 12074, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13927 + } }, { + "default": true, + "id": 12075, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13928 + } }, { + "id": 12076, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13929 + } }, { + "id": 12077, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13930 + } }, { + "id": 12078, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13931 + } }, { + "id": 12079, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13932 + } }, { + "id": 12080, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13933 + } }, { + "id": 12081, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13934 + } }, { + "id": 12082, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13935 + } }, { + "id": 12083, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13936 + } }, { + "id": 12084, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13937 + } }, { + "id": 12085, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13938 + } }, { + "id": 12086, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13939 + } }, { + "id": 12087, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13940 + } }, { + "id": 12088, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13941 + } }, { + "id": 12089, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13942 + } }, { + "id": 12090, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13943 + } }, { + "id": 12091, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13944 + } }, { + "id": 12092, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13945 + } }, { + "id": 12093, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13946 + } }, { + "id": 12094, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13947 + } }, { + "id": 12095, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13948 + } }, { + "id": 12096, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13949 + } }, { + "id": 12097, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13950 + } }, { + "id": 12098, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13951 + } }, { + "id": 12099, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13952 + } }, { + "id": 12100, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13953 + } }, { + "id": 12101, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13954 + } }, { + "id": 12102, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13955 + } }, { + "id": 12103, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13956 + } }, { + "id": 12104, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13957 + } }, { + "id": 12105, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13958 + } }, { + "id": 12106, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13959 + } }, { + "id": 12107, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13960 + } }, { + "id": 12108, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13961 + } }, { + "id": 12109, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13962 + } }, { + "id": 12110, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13963 + } }, { + "id": 12111, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13964 + } }, { + "id": 12112, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13965 + } }, { + "id": 12113, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13966 + } }, { + "id": 12114, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13967 + } }, { + "id": 12115, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13968 + } }, { + "id": 12116, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13969 + } }, { + "id": 12117, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13970 + } }, { + "id": 12118, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13971 + } }, { + "id": 12119, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13972 + } }, { + "id": 12120, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13973 + } }, { + "id": 12121, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13974 + } }, { + "id": 12122, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13975 + } }, { + "id": 12123, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13976 + } }, { + "id": 12124, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13977 + } }, { + "id": 12125, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13978 + } }, { + "id": 12126, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13979 + } }, { + "id": 12127, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13980 + } }, { + "id": 12128, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13981 + } }, { + "id": 12129, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13982 + } }, { + "id": 12130, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13983 + } }, { + "id": 12131, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13984 + } }, { + "id": 12132, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13985 + } }, { + "id": 12133, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13986 + } }, { + "id": 12134, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13987 + } }, { + "id": 12135, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 13988 + } }, { + "id": 12136, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 13989 + } }, { + "id": 12137, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 13990 + } }, { + "id": 12138, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 13991 + } }, { + "id": 12139, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 13992 + } }, { + "id": 12140, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 13993 + } }, { + "id": 12141, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 13994 + } }, { + "id": 12142, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 13995 + } }, { + "id": 12143, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 13996 + } }, { + "id": 12144, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 13997 + } }, { + "id": 12145, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 13998 + } }, { + "id": 12146, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 13999 + } }, { + "id": 12147, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14000 + } }, { + "id": 12148, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14001 + } }, { + "id": 12149, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14002 + } }, { + "id": 12150, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14003 + } }, { + "id": 12151, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14004 + } }, { + "id": 12152, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14005 + } }, { + "id": 12153, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14006 + } }, { + "id": 12154, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14007 + } }, { + "id": 12155, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14008 + } }, { + "id": 12156, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14009 + } }, { + "id": 12157, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14010 + } }, { + "id": 12158, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14011 + } }, { + "id": 12159, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14012 + } }, { + "id": 12160, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14013 + } }, { + "id": 12161, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14014 + } }, { + "id": 12162, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14015 + } }, { + "id": 12163, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14016 + } }, { + "id": 12164, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14017 + } }, { + "id": 12165, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14018 + } }, { + "id": 12166, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14019 + } }, { + "id": 12167, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14020 + } }, { + "id": 12168, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14021 + } }, { + "id": 12169, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14022 + } }, { + "id": 12170, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14023 + } }, { + "id": 12171, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14024 + } }, { + "id": 12172, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14025 + } }, { + "id": 12173, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14026 + } }, { + "id": 12174, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14027 + } }, { + "id": 12175, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14028 + } }, { + "id": 12176, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14029 + } }, { + "id": 12177, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14030 + } }, { + "id": 12178, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14031 + } }, { + "id": 12179, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14032 - } - ] - }, - "minecraft:sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + } + }, { + "id": 12180, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14033 + } }, { + "id": 12181, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14034 + } }, { + "id": 12182, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14035 + } }, { + "id": 12183, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14036, - "default": true + } }, { + "id": 12184, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14037 + } }, { + "id": 12185, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14038 + } }, { + "id": 12186, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14039 + } }, { + "id": 12187, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14040 + } }, { + "id": 12188, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14041 + } }, { + "id": 12189, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14042 + } }, { + "id": 12190, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14043 + } }, { + "id": 12191, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14044 + } }, { + "id": 12192, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14045 + } }, { + "id": 12193, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14046 + } }, { + "id": 12194, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14047 + } }, { + "id": 12195, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14048 + } }, { + "id": 12196, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14049 + } }, { + "id": 12197, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14050 + } }, { + "id": 12198, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14051 + } }, { + "id": 12199, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14052 + } }, { + "id": 12200, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14053 + } }, { + "id": 12201, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14054 + } }, { + "id": 12202, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14055 + } }, { + "id": 12203, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14056 + } }, { + "id": 12204, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14057 + } }, { + "id": 12205, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14058 + } }, { + "id": 12206, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14059 + } }, { + "id": 12207, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14060 + } }, { + "id": 12208, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14061 + } }, { + "id": 12209, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14062 + } }, { + "id": 12210, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14063 + } }, { + "id": 12211, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14064 + } }, { + "id": 12212, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14065 + } }, { + "id": 12213, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14066 + } }, { + "id": 12214, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14067 + } }, { + "id": 12215, "properties": { - "east": "none", + "east": "low", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14068 + } }, { + "id": 12216, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14069 + } }, { + "id": 12217, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14070 + } }, { + "id": 12218, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14071 + } }, { + "id": 12219, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14072 + } }, { + "id": 12220, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14073 + } }, { + "id": 12221, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14074 + } }, { + "id": 12222, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14075 + } }, { + "id": 12223, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14076 + } }, { + "id": 12224, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14077 + } }, { + "id": 12225, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14078 + } }, { + "id": 12226, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14079 + } }, { + "id": 12227, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14080 + } }, { + "id": 12228, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14081 + } }, { + "id": 12229, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14082 + } }, { + "id": 12230, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14083 + } }, { + "id": 12231, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14084 + } }, { + "id": 12232, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14085 + } }, { + "id": 12233, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14086 + } }, { + "id": 12234, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14087 + } }, { + "id": 12235, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14088 + } }, { + "id": 12236, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14089 + } }, { + "id": 12237, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14090 + } }, { + "id": 12238, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14091 + } }, { + "id": 12239, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14092 + } }, { + "id": 12240, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14093 + } }, { + "id": 12241, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14094 + } }, { + "id": 12242, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14095 + } }, { + "id": 12243, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14096 + } }, { + "id": 12244, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14097 + } }, { + "id": 12245, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14098 + } }, { + "id": 12246, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14099 + } }, { + "id": 12247, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14100 + } }, { + "id": 12248, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14101 + } }, { + "id": 12249, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14102 + } }, { + "id": 12250, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14103 + } }, { + "id": 12251, "properties": { - "east": "none", + "east": "low", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14104 + } }, { + "id": 12252, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14105 + } }, { + "id": 12253, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14106 + } }, { + "id": 12254, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14107 + } }, { + "id": 12255, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14108 + } }, { + "id": 12256, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14109 + } }, { + "id": 12257, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14110 + } }, { + "id": 12258, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14111 + } }, { + "id": 12259, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14112 + } }, { + "id": 12260, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14113 + } }, { + "id": 12261, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14114 + } }, { + "id": 12262, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14115 + } }, { + "id": 12263, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14116 + } }, { + "id": 12264, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14117 + } }, { + "id": 12265, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14118 + } }, { + "id": 12266, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14119 + } }, { + "id": 12267, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14120 + } }, { + "id": 12268, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14121 + } }, { + "id": 12269, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14122 + } }, { + "id": 12270, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14123 + } }, { + "id": 12271, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14124 + } }, { + "id": 12272, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14125 + } }, { + "id": 12273, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14126 + } }, { + "id": 12274, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14127 + } }, { + "id": 12275, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14128 + } }, { + "id": 12276, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14129 + } }, { + "id": 12277, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14130 + } }, { + "id": 12278, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14131 + } }, { + "id": 12279, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14132 + } }, { + "id": 12280, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14133 + } }, { + "id": 12281, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14134 + } }, { + "id": 12282, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14135 + } }, { + "id": 12283, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14136 + } }, { + "id": 12284, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14137 + } }, { + "id": 12285, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14138 + } }, { + "id": 12286, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14139 + } }, { + "id": 12287, "properties": { - "east": "none", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14140 + } }, { + "id": 12288, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14141 + } }, { + "id": 12289, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14142 + } }, { + "id": 12290, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14143 + } }, { + "id": 12291, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14144 + } }, { + "id": 12292, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14145 + } }, { + "id": 12293, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14146 + } }, { + "id": 12294, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14147 + } }, { + "id": 12295, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14148 + } }, { + "id": 12296, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14149 + } }, { + "id": 12297, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14150 + } }, { + "id": 12298, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14151 + } }, { + "id": 12299, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14152 + } }, { + "id": 12300, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14153 + } }, { + "id": 12301, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14154 + } }, { + "id": 12302, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14155 + } }, { + "id": 12303, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14156 + } }, { + "id": 12304, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14157 + } }, { + "id": 12305, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14158 + } }, { + "id": 12306, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14159 + } }, { + "id": 12307, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14160 + } }, { + "id": 12308, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14161 + } }, { + "id": 12309, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14162 + } }, { + "id": 12310, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14163 + } }, { + "id": 12311, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14164 + } }, { + "id": 12312, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14165 + } }, { + "id": 12313, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14166 + } }, { + "id": 12314, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14167 + } }, { + "id": 12315, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14168 + } }, { + "id": 12316, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14169 + } }, { + "id": 12317, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14170 + } }, { + "id": 12318, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14171 + } }, { + "id": 12319, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14172 + } }, { + "id": 12320, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14173 + } }, { + "id": 12321, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14174 + } }, { + "id": 12322, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14175 + } }, { + "id": 12323, "properties": { - "east": "low", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14176 + } }, { + "id": 12324, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14177 + } }, { + "id": 12325, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14178 + } }, { + "id": 12326, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14179 + } }, { + "id": 12327, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14180 + } }, { + "id": 12328, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14181 + } }, { + "id": 12329, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14182 + } }, { + "id": 12330, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14183 + } }, { + "id": 12331, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14184 + } }, { + "id": 12332, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14185 + } }, { + "id": 12333, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14186 + } }, { + "id": 12334, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14187 + } }, { + "id": 12335, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14188 + } }, { + "id": 12336, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14189 + } }, { + "id": 12337, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14190 + } }, { + "id": 12338, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14191 + } }, { + "id": 12339, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14192 + } }, { + "id": 12340, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14193 + } }, { + "id": 12341, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14194 + } }, { + "id": 12342, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14195 + } }, { + "id": 12343, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14196 + } }, { + "id": 12344, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14197 + } }, { + "id": 12345, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14198 + } }, { + "id": 12346, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14199 + } }, { + "id": 12347, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14200 + } }, { + "id": 12348, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14201 + } }, { + "id": 12349, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14202 + } }, { + "id": 12350, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14203 + } }, { + "id": 12351, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14204 + } }, { + "id": 12352, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14205 + } }, { + "id": 12353, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14206 + } }, { + "id": 12354, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14207 + } }, { + "id": 12355, "properties": { - "east": "low", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14208 + } }, { + "id": 12356, "properties": { - "east": "low", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12357, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12358, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12359, + "properties": { + "east": "tall", "north": "low", "south": "tall", "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12360, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12361, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12362, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12363, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12364, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12365, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12366, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12367, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12368, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12369, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12370, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12371, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12372, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12373, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12374, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12375, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12376, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12377, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12378, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12379, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12380, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12381, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12382, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12383, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12384, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12385, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12386, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12387, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12388, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12389, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12390, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 12391, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12392, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14209 + } + }, + { + "id": 12393, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12394, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12395, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "states": [ + { + "default": true, + "id": 4307 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5151, + "properties": { + "age": "0" + } + }, + { + "id": 5152, + "properties": { + "age": "1" + } + }, + { + "id": 5153, + "properties": { + "age": "2" + } + }, + { + "id": 5154, + "properties": { + "age": "3" + } + }, + { + "id": 5155, + "properties": { + "age": "4" + } + }, + { + "id": 5156, + "properties": { + "age": "5" + } + }, + { + "id": 5157, + "properties": { + "age": "6" + } + }, + { + "id": 5158, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8798, + "properties": { + "rotation": "0" + } + }, + { + "id": 8799, + "properties": { + "rotation": "1" + } + }, + { + "id": 8800, + "properties": { + "rotation": "2" + } + }, + { + "id": 8801, + "properties": { + "rotation": "3" + } + }, + { + "id": 8802, + "properties": { + "rotation": "4" + } + }, + { + "id": 8803, + "properties": { + "rotation": "5" + } + }, + { + "id": 8804, + "properties": { + "rotation": "6" + } + }, + { + "id": 8805, + "properties": { + "rotation": "7" + } + }, + { + "id": 8806, + "properties": { + "rotation": "8" + } + }, + { + "id": 8807, + "properties": { + "rotation": "9" + } + }, + { + "id": 8808, + "properties": { + "rotation": "10" + } + }, + { + "id": 8809, + "properties": { + "rotation": "11" + } + }, + { + "id": 8810, + "properties": { + "rotation": "12" + } + }, + { + "id": 8811, + "properties": { + "rotation": "13" + } + }, + { + "id": 8812, + "properties": { + "rotation": "14" + } + }, + { + "id": 8813, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1439, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1440, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1441, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1442, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14210 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1443, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14211 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1444, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14212 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1445, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14213 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1446, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14214 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1447, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14215 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1448, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14216 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1449, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14217 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1450, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14218 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1451, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14219 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1452, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14220 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1453, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14221 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1454, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14222 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18489, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14223 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18490, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14224 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18491, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14225 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18492, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14226 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18493, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14227 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18494, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14228 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18495, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14229 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18496, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14230 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18497, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14231 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18498, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14232 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18499, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14233 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18500, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14234 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18501, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14235 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18502, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14236 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18503, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14237 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18504, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14238 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18607, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14239 + "lit": "true" + } }, { + "default": true, + "id": 18608, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14240 - }, + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "states": [ + { + "default": true, + "id": 8617 + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "default": true, + "id": 10329 + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "default": true, + "id": 10345 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 10295, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14241 + "facing": "north" + } }, { + "id": 10296, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14242 + "facing": "south" + } }, { + "id": 10297, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14243 + "facing": "west" + } }, { + "id": 10298, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14244 - }, + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10219, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14245 + "facing": "north" + } }, { + "id": 10220, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14246 + "facing": "east" + } }, { + "id": 10221, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14247 + "facing": "south" + } }, { + "id": 10222, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14248 + "facing": "west" + } }, { + "default": true, + "id": 10223, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14249 + "facing": "up" + } }, { + "id": 10224, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14250 - }, + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ + { + "default": true, + "id": 4414 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7812, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 14251 + "west": "true" + } }, { + "id": 7813, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14252 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7814, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 14253 + "west": "true" + } }, { + "id": 7815, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 14254 + "west": "false" + } }, { + "id": 7816, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 14255 + "west": "true" + } }, { + "id": 7817, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 14256 + "west": "false" + } }, { + "id": 7818, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14257 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7819, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 14258 + "west": "false" + } }, { + "id": 7820, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14259 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7821, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14260 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7822, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14261 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7823, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14262 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7824, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 14263 + "west": "true" + } }, { + "id": 7825, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14264 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7826, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 14265 + "west": "true" + } }, { + "id": 7827, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 14266 + "west": "false" + } }, { + "id": 7828, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 14267 + "west": "true" + } }, { + "id": 7829, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 14268 + "west": "false" + } }, { + "id": 7830, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14269 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7831, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 14270 + "west": "false" + } }, { + "id": 7832, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14271 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7833, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14272 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7834, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14273 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7835, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14274 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7836, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 14275 + "west": "true" + } }, { + "id": 7837, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14276 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7838, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 14277 + "west": "true" + } }, { + "id": 7839, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 14278 + "west": "false" + } }, { + "id": 7840, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 14279 + "west": "true" + } }, { + "id": 7841, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 14280 + "west": "false" + } }, { + "id": 7842, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14281 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7843, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 14282 - }, + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ + { + "default": true, + "id": 7486 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8934, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14283 + "facing": "north" + } }, { + "id": 8935, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14284 + "facing": "south" + } }, { + "id": 8936, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14285 + "facing": "west" + } }, { + "id": 8937, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14286 - }, + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "states": [ + { + "default": true, + "id": 1648 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "default": true, + "id": 10015 + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 10016, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14287 + "axis": "x" + } }, { + "default": true, + "id": 10017, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14288 + "axis": "y" + } }, { + "id": 10018, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14289 + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9161, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 9162, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14290 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9163, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14291 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9164, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14292 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9165, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14293 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9166, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14294 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10019, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10020, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14295 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10021, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14296 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10022, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14297 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10023, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14298 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10024, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14299 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10025, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14300 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10026, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14301 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10027, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14302 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10028, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14303 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10029, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14304 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 10030, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14305 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10031, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14306 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10032, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14307 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10033, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14308 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10034, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14309 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10035, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14310 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10036, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14311 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10037, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14312 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10038, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14313 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10039, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14314 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10040, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14315 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10041, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14316 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10042, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14317 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10043, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14318 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10044, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14319 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10045, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14320 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10046, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14321 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10047, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14322 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10048, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14323 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10049, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14324 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10050, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14325 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10051, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14326 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10052, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14327 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10053, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14328 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10054, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14329 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10055, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14330 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10056, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14331 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10057, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14332 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10058, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14333 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10059, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14334 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10060, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14335 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10061, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14336 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10062, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14337 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10063, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14338 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10064, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14339 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10065, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14340 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10066, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14341 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10067, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14342 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10068, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14343 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10069, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14344 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10070, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14345 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10071, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14346 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10072, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14347 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10073, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14348 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10074, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14349 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10075, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14350 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10076, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14351 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10077, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14352 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10078, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14353 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10079, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14354 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10080, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14355 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10081, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14356 - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, { + "id": 10082, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14357 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10083, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14358 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10084, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14359 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10085, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14360, - "default": true + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10086, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14361 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10087, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14362 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10088, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14363 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 10089, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14364 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 10090, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14365 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 10091, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14366 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 10092, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14367 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 10093, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14368 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 10094, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14369 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 10095, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14370 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 10096, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14371 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 10097, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14372 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 10098, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14373 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "states": [ + { + "default": true, + "id": 7355 + } + ] + }, + "minecraft:quartz_bricks": { + "states": [ + { + "default": true, + "id": 18312 + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 7357, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14374 + "axis": "x" + } }, { + "default": true, + "id": 7358, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14375 + "axis": "y" + } }, { + "id": 7359, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14376 - }, + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9143, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14377 + "type": "top", + "waterlogged": "true" + } }, { + "id": 9144, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14378 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9145, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14379 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9146, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14380 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9147, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14381 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9148, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14382 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7360, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7361, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14383 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7362, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14384 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7363, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14385 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7364, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14386 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7365, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14387 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7366, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14388 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7367, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14389 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7368, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14390 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7369, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14391 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7370, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14392 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 7371, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14393 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7372, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14394 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7373, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14395 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7374, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14396 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7375, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14397 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7376, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14398 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7377, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14399 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7378, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14400 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7379, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14401 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7380, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14402 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7381, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14403 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7382, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14404 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7383, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14405 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7384, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14406 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7385, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14407 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7386, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14408 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7387, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14409 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7388, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14410 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7389, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14411 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7390, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14412 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7391, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14413 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7392, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14414 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7393, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14415 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7394, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14416 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7395, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14417 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7396, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14418 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7397, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14419 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7398, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14420 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7399, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14421 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7400, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14422 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7401, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14423 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7402, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14424 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7403, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14425 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7404, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14426 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7405, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14427 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7406, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14428 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7407, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14429 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7408, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14430 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7409, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14431 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7410, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14432 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7411, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14433 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7412, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14434 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7413, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14435 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7414, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14436 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7415, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14437 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7416, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14438 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7417, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14439 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7418, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14440 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7419, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14441 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7420, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14442 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7421, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14443 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7422, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14444 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7423, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14445 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7424, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14446 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7425, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14447 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7426, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14448 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7427, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14449 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7428, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14450 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7429, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14451 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 7430, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14452 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 7431, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14453 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 7432, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14454 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 7433, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14455 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 7434, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14456 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 7435, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14457 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 7436, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14458 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 7437, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14459 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 7438, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14460 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 7439, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14461 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 3932, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14462 + "shape": "north_south", + "waterlogged": "true" + } }, { + "default": true, + "id": 3933, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14463 + "shape": "north_south", + "waterlogged": "false" + } }, { + "id": 3934, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14464 + "shape": "east_west", + "waterlogged": "true" + } }, { + "id": 3935, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14465 + "shape": "east_west", + "waterlogged": "false" + } }, { + "id": 3936, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14466 + "shape": "ascending_east", + "waterlogged": "true" + } }, { + "id": 3937, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14467 + "shape": "ascending_east", + "waterlogged": "false" + } }, { + "id": 3938, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14468 + "shape": "ascending_west", + "waterlogged": "true" + } }, { + "id": 3939, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14469 + "shape": "ascending_west", + "waterlogged": "false" + } }, { + "id": 3940, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14470 + "shape": "ascending_north", + "waterlogged": "true" + } }, { + "id": 3941, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14471 + "shape": "ascending_north", + "waterlogged": "false" + } }, { + "id": 3942, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14472 + "shape": "ascending_south", + "waterlogged": "true" + } }, { + "id": 3943, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14473 + "shape": "ascending_south", + "waterlogged": "false" + } }, { + "id": 3944, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14474 + "shape": "south_east", + "waterlogged": "true" + } }, { + "id": 3945, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14475 + "shape": "south_east", + "waterlogged": "false" + } }, { + "id": 3946, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14476 + "shape": "south_west", + "waterlogged": "true" + } }, { + "id": 3947, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14477 + "shape": "south_west", + "waterlogged": "false" + } }, { + "id": 3948, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14478 + "shape": "north_west", + "waterlogged": "true" + } }, { + "id": 3949, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14479 + "shape": "north_west", + "waterlogged": "false" + } }, { + "id": 3950, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14480 + "shape": "north_east", + "waterlogged": "true" + } }, { + "id": 3951, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14481 - }, + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "states": [ + { + "default": true, + "id": 21433 + } + ] + }, + "minecraft:raw_gold_block": { + "states": [ + { + "default": true, + "id": 21434 + } + ] + }, + "minecraft:raw_iron_block": { + "states": [ + { + "default": true, + "id": 21432 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8862, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14482 + "rotation": "0" + } }, { + "id": 8863, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14483 + "rotation": "1" + } }, { + "id": 8864, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14484 + "rotation": "2" + } }, { + "id": 8865, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14485 + "rotation": "3" + } }, { + "id": 8866, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14486 + "rotation": "4" + } }, { + "id": 8867, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14487 + "rotation": "5" + } }, { + "id": 8868, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14488 + "rotation": "6" + } }, { + "id": 8869, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14489 + "rotation": "7" + } }, { + "id": 8870, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14490 + "rotation": "8" + } }, { + "id": 8871, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14491 + "rotation": "9" + } }, { + "id": 8872, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14492 + "rotation": "10" + } }, { + "id": 8873, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14493 + "rotation": "11" + } }, { + "id": 8874, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14494 + "rotation": "12" + } }, { + "id": 8875, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14495 + "rotation": "13" + } }, { + "id": 8876, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14496 + "rotation": "14" + } }, { + "id": 8877, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14497 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1503, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14498 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1504, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14499 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1505, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14500 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1506, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14501 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1507, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14502 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1508, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14503 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1509, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14504 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1510, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14505 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1511, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14506 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1512, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14507 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1513, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14508 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1514, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14509 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1515, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14510 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1516, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14511 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1517, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14512 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1518, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14513 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18553, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14514 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18554, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14515 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18555, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14516 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18556, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14517 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18557, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14518 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18558, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14519 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18559, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14520 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18560, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14521 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18561, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14522 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18562, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14523 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18563, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14524 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18564, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14525 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18565, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14526 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18566, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14527 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18567, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14528 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18568, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14529 + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18615, + "properties": { + "lit": "true" + } }, { + "default": true, + "id": 18616, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14530 + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "default": true, + "id": 8621 + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "default": true, + "id": 10333 + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "default": true, + "id": 10349 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10311, + "properties": { + "facing": "north" + } }, { + "id": 10312, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14531 + "facing": "south" + } }, { + "id": 10313, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14532 + "facing": "west" + } }, { + "id": 10314, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14533 + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "default": true, + "id": 1680 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 4944, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4945, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14534 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4946, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14535 + "west": "true" + } }, { + "id": 4947, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14536 + "west": "false" + } }, { + "id": 4948, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14537 + "west": "true" + } }, { + "id": 4949, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14538 + "west": "false" + } }, { + "id": 4950, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14539 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4951, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14540 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4952, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14541 + "west": "true" + } }, { + "id": 4953, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14542 + "west": "false" + } }, { + "id": 4954, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14543 + "west": "true" + } }, { + "id": 4955, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14544 + "west": "false" + } }, { + "id": 4956, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14545 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4957, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14546 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4958, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14547 + "west": "true" + } }, { + "id": 4959, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14548 + "west": "false" + } }, { + "id": 4960, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14549 + "west": "true" + } }, { + "id": 4961, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14550 + "west": "false" + } }, { + "id": 4962, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14551 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4963, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14552 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4964, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14553 + "west": "true" + } }, { + "id": 4965, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14554 + "west": "false" + } }, { + "id": 4966, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14555 + "west": "true" + } }, { + "id": 4967, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14556 + "west": "false" + } }, { + "id": 4968, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14557 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4969, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14558 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4970, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14559 + "west": "true" + } }, { + "id": 4971, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14560 + "west": "false" + } }, { + "id": 4972, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14561 + "west": "true" + } }, { + "id": 4973, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14562 + "west": "false" + } }, { + "id": 4974, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14563 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4975, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14564 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 4976, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14565 + "west": "true" + } }, { + "id": 4977, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14566 + "west": "false" + } }, { + "id": 4978, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14567 + "west": "true" + } }, { + "id": 4979, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14568 + "west": "false" + } }, { + "id": 4980, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14569 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 4981, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14570 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 4982, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14571 + "west": "true" + } }, { + "id": 4983, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14572 + "west": "false" + } }, { + "id": 4984, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14573 + "west": "true" + } }, { + "id": 4985, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14574 + "west": "false" + } }, { + "id": 4986, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14575 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 4987, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14576 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 4988, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14577 + "west": "true" + } }, { + "id": 4989, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14578 + "west": "false" + } }, { + "id": 4990, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14579 + "west": "true" + } }, { + "id": 4991, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14580 + "west": "false" + } }, { + "id": 4992, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14581 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 4993, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14582 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 4994, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14583 + "west": "true" + } }, { + "id": 4995, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14584 + "west": "false" + } }, { + "id": 4996, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14585 + "west": "true" + } }, { + "id": 4997, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14586 + "west": "false" + } }, { + "id": 4998, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14587 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 4999, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14588 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 5000, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14589 + "west": "true" + } }, { + "id": 5001, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14590 + "west": "false" + } }, { + "id": 5002, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14591 + "west": "true" + } }, { + "id": 5003, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14592 + "west": "false" + } }, { + "id": 5004, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14593 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 5005, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14594 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 5006, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14595 + "west": "true" + } }, { + "id": 5007, "properties": { - "east": "tall", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14596 + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11730, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 11731, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14597 + "type": "top", + "waterlogged": "false" + } }, { + "id": 11732, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14598 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 11733, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14599 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 11734, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14600 + "type": "double", + "waterlogged": "true" + } }, { + "id": 11735, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14601 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11430, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11431, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14602 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11432, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14603 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11433, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14604 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11434, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14605 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11435, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14606 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11436, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14607 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11437, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14608 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11438, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14609 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11439, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14610 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11440, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14611 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 11441, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14612 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11442, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14613 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11443, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14614 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11444, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14615 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11445, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14616 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11446, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14617 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11447, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14618 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11448, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14619 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11449, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14620 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11450, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14621 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11451, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14622 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11452, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14623 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11453, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14624 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11454, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14625 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11455, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14626 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11456, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14627 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11457, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14628 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11458, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14629 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11459, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14630 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11460, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14631 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11461, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14632 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11462, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14633 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11463, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14634 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11464, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14635 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11465, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14636 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11466, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14637 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11467, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14638 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11468, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14639 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11469, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14640 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11470, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14641 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11471, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14642 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11472, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14643 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11473, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14644 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11474, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14645 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11475, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14646 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11476, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14647 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11477, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14648 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11478, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14649 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11479, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14650 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11480, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14651 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11481, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14652 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11482, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14653 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11483, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14654 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11484, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14655 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11485, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14656 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11486, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14657 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11487, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14658 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11488, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14659 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11489, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14660 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11490, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14661 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11491, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14662 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11492, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14663 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11493, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14664 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11494, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14665 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11495, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14666 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11496, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14667 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11497, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14668 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11498, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 14669 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11499, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 14670 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11500, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 14671 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11501, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 14672 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11502, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 14673 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11503, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 14674 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11504, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 14675 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11505, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 14676 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11506, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 14677 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11507, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 14678 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11508, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 14679 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11509, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 14680 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } } ] }, - "minecraft:diorite_wall": { + "minecraft:red_nether_brick_wall": { "properties": { "east": [ "none", @@ -147232,6 +159311,7 @@ }, "states": [ { + "id": 14664, "properties": { "east": "none", "north": "none", @@ -147239,10 +159319,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14681 + } }, { + "id": 14665, "properties": { "east": "none", "north": "none", @@ -147250,10 +159330,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14682 + } }, { + "id": 14666, "properties": { "east": "none", "north": "none", @@ -147261,10 +159341,11 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14683 + } }, { + "default": true, + "id": 14667, "properties": { "east": "none", "north": "none", @@ -147272,11 +159353,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14684, - "default": true + } }, { + "id": 14668, "properties": { "east": "none", "north": "none", @@ -147284,10 +159364,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14685 + } }, { + "id": 14669, "properties": { "east": "none", "north": "none", @@ -147295,10 +159375,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14686 + } }, { + "id": 14670, "properties": { "east": "none", "north": "none", @@ -147306,10 +159386,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14687 + } }, { + "id": 14671, "properties": { "east": "none", "north": "none", @@ -147317,10 +159397,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14688 + } }, { + "id": 14672, "properties": { "east": "none", "north": "none", @@ -147328,10 +159408,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14689 + } }, { + "id": 14673, "properties": { "east": "none", "north": "none", @@ -147339,10 +159419,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14690 + } }, { + "id": 14674, "properties": { "east": "none", "north": "none", @@ -147350,10 +159430,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14691 + } }, { + "id": 14675, "properties": { "east": "none", "north": "none", @@ -147361,10 +159441,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14692 + } }, { + "id": 14676, "properties": { "east": "none", "north": "none", @@ -147372,10 +159452,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14693 + } }, { + "id": 14677, "properties": { "east": "none", "north": "none", @@ -147383,10 +159463,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14694 + } }, { + "id": 14678, "properties": { "east": "none", "north": "none", @@ -147394,10 +159474,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14695 + } }, { + "id": 14679, "properties": { "east": "none", "north": "none", @@ -147405,10 +159485,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14696 + } }, { + "id": 14680, "properties": { "east": "none", "north": "none", @@ -147416,10 +159496,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14697 + } }, { + "id": 14681, "properties": { "east": "none", "north": "none", @@ -147427,10 +159507,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14698 + } }, { + "id": 14682, "properties": { "east": "none", "north": "none", @@ -147438,10 +159518,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14699 + } }, { + "id": 14683, "properties": { "east": "none", "north": "none", @@ -147449,10 +159529,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14700 + } }, { + "id": 14684, "properties": { "east": "none", "north": "none", @@ -147460,10 +159540,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14701 + } }, { + "id": 14685, "properties": { "east": "none", "north": "none", @@ -147471,10 +159551,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14702 + } }, { + "id": 14686, "properties": { "east": "none", "north": "none", @@ -147482,10 +159562,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14703 + } }, { + "id": 14687, "properties": { "east": "none", "north": "none", @@ -147493,10 +159573,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14704 + } }, { + "id": 14688, "properties": { "east": "none", "north": "none", @@ -147504,10 +159584,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14705 + } }, { + "id": 14689, "properties": { "east": "none", "north": "none", @@ -147515,10 +159595,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14706 + } }, { + "id": 14690, "properties": { "east": "none", "north": "none", @@ -147526,10 +159606,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14707 + } }, { + "id": 14691, "properties": { "east": "none", "north": "none", @@ -147537,10 +159617,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14708 + } }, { + "id": 14692, "properties": { "east": "none", "north": "none", @@ -147548,10 +159628,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14709 + } }, { + "id": 14693, "properties": { "east": "none", "north": "none", @@ -147559,10 +159639,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14710 + } }, { + "id": 14694, "properties": { "east": "none", "north": "none", @@ -147570,10 +159650,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14711 + } }, { + "id": 14695, "properties": { "east": "none", "north": "none", @@ -147581,10 +159661,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14712 + } }, { + "id": 14696, "properties": { "east": "none", "north": "none", @@ -147592,10 +159672,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14713 + } }, { + "id": 14697, "properties": { "east": "none", "north": "none", @@ -147603,10 +159683,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14714 + } }, { + "id": 14698, "properties": { "east": "none", "north": "none", @@ -147614,10 +159694,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14715 + } }, { + "id": 14699, "properties": { "east": "none", "north": "none", @@ -147625,10 +159705,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14716 + } }, { + "id": 14700, "properties": { "east": "none", "north": "low", @@ -147636,10 +159716,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14717 + } }, { + "id": 14701, "properties": { "east": "none", "north": "low", @@ -147647,10 +159727,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14718 + } }, { + "id": 14702, "properties": { "east": "none", "north": "low", @@ -147658,10 +159738,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14719 + } }, { + "id": 14703, "properties": { "east": "none", "north": "low", @@ -147669,10 +159749,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14720 + } }, { + "id": 14704, "properties": { "east": "none", "north": "low", @@ -147680,10 +159760,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14721 + } }, { + "id": 14705, "properties": { "east": "none", "north": "low", @@ -147691,10 +159771,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14722 + } }, { + "id": 14706, "properties": { "east": "none", "north": "low", @@ -147702,10 +159782,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14723 + } }, { + "id": 14707, "properties": { "east": "none", "north": "low", @@ -147713,10 +159793,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14724 + } }, { + "id": 14708, "properties": { "east": "none", "north": "low", @@ -147724,10 +159804,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14725 + } }, { + "id": 14709, "properties": { "east": "none", "north": "low", @@ -147735,10 +159815,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14726 + } }, { + "id": 14710, "properties": { "east": "none", "north": "low", @@ -147746,10 +159826,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14727 + } }, { + "id": 14711, "properties": { "east": "none", "north": "low", @@ -147757,10 +159837,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14728 + } }, { + "id": 14712, "properties": { "east": "none", "north": "low", @@ -147768,10 +159848,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14729 + } }, { + "id": 14713, "properties": { "east": "none", "north": "low", @@ -147779,10 +159859,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14730 + } }, { + "id": 14714, "properties": { "east": "none", "north": "low", @@ -147790,10 +159870,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14731 + } }, { + "id": 14715, "properties": { "east": "none", "north": "low", @@ -147801,10 +159881,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14732 + } }, { + "id": 14716, "properties": { "east": "none", "north": "low", @@ -147812,10 +159892,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14733 + } }, { + "id": 14717, "properties": { "east": "none", "north": "low", @@ -147823,10 +159903,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14734 + } }, { + "id": 14718, "properties": { "east": "none", "north": "low", @@ -147834,10 +159914,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14735 + } }, { + "id": 14719, "properties": { "east": "none", "north": "low", @@ -147845,10 +159925,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14736 + } }, { + "id": 14720, "properties": { "east": "none", "north": "low", @@ -147856,10 +159936,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14737 + } }, { + "id": 14721, "properties": { "east": "none", "north": "low", @@ -147867,10 +159947,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14738 + } }, { + "id": 14722, "properties": { "east": "none", "north": "low", @@ -147878,10 +159958,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14739 + } }, { + "id": 14723, "properties": { "east": "none", "north": "low", @@ -147889,10 +159969,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14740 + } }, { + "id": 14724, "properties": { "east": "none", "north": "low", @@ -147900,10 +159980,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14741 + } }, { + "id": 14725, "properties": { "east": "none", "north": "low", @@ -147911,10 +159991,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14742 + } }, { + "id": 14726, "properties": { "east": "none", "north": "low", @@ -147922,10 +160002,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14743 + } }, { + "id": 14727, "properties": { "east": "none", "north": "low", @@ -147933,10 +160013,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14744 + } }, { + "id": 14728, "properties": { "east": "none", "north": "low", @@ -147944,10 +160024,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14745 + } }, { + "id": 14729, "properties": { "east": "none", "north": "low", @@ -147955,10 +160035,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14746 + } }, { + "id": 14730, "properties": { "east": "none", "north": "low", @@ -147966,10 +160046,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14747 + } }, { + "id": 14731, "properties": { "east": "none", "north": "low", @@ -147977,10 +160057,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14748 + } }, { + "id": 14732, "properties": { "east": "none", "north": "low", @@ -147988,10 +160068,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14749 + } }, { + "id": 14733, "properties": { "east": "none", "north": "low", @@ -147999,10 +160079,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14750 + } }, { + "id": 14734, "properties": { "east": "none", "north": "low", @@ -148010,10 +160090,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14751 + } }, { + "id": 14735, "properties": { "east": "none", "north": "low", @@ -148021,10 +160101,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14752 + } }, { + "id": 14736, "properties": { "east": "none", "north": "tall", @@ -148032,10 +160112,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14753 + } }, { + "id": 14737, "properties": { "east": "none", "north": "tall", @@ -148043,10 +160123,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14754 + } }, { + "id": 14738, "properties": { "east": "none", "north": "tall", @@ -148054,10 +160134,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14755 + } }, { + "id": 14739, "properties": { "east": "none", "north": "tall", @@ -148065,10 +160145,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14756 + } }, { + "id": 14740, "properties": { "east": "none", "north": "tall", @@ -148076,10 +160156,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14757 + } }, { + "id": 14741, "properties": { "east": "none", "north": "tall", @@ -148087,10 +160167,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14758 + } }, { + "id": 14742, "properties": { "east": "none", "north": "tall", @@ -148098,10 +160178,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14759 + } }, { + "id": 14743, "properties": { "east": "none", "north": "tall", @@ -148109,10 +160189,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14760 + } }, { + "id": 14744, "properties": { "east": "none", "north": "tall", @@ -148120,10 +160200,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14761 + } }, { + "id": 14745, "properties": { "east": "none", "north": "tall", @@ -148131,10 +160211,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14762 + } }, { + "id": 14746, "properties": { "east": "none", "north": "tall", @@ -148142,10 +160222,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14763 + } }, { + "id": 14747, "properties": { "east": "none", "north": "tall", @@ -148153,10 +160233,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14764 + } }, { + "id": 14748, "properties": { "east": "none", "north": "tall", @@ -148164,10 +160244,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14765 + } }, { + "id": 14749, "properties": { "east": "none", "north": "tall", @@ -148175,10 +160255,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14766 + } }, { + "id": 14750, "properties": { "east": "none", "north": "tall", @@ -148186,10 +160266,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14767 + } }, { + "id": 14751, "properties": { "east": "none", "north": "tall", @@ -148197,10 +160277,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14768 + } }, { + "id": 14752, "properties": { "east": "none", "north": "tall", @@ -148208,10 +160288,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14769 + } }, { + "id": 14753, "properties": { "east": "none", "north": "tall", @@ -148219,10 +160299,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14770 + } }, { + "id": 14754, "properties": { "east": "none", "north": "tall", @@ -148230,10 +160310,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14771 + } }, { + "id": 14755, "properties": { "east": "none", "north": "tall", @@ -148241,10 +160321,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14772 + } }, { + "id": 14756, "properties": { "east": "none", "north": "tall", @@ -148252,10 +160332,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14773 + } }, { + "id": 14757, "properties": { "east": "none", "north": "tall", @@ -148263,10 +160343,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14774 + } }, { + "id": 14758, "properties": { "east": "none", "north": "tall", @@ -148274,10 +160354,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14775 + } }, { + "id": 14759, "properties": { "east": "none", "north": "tall", @@ -148285,10 +160365,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14776 + } }, { + "id": 14760, "properties": { "east": "none", "north": "tall", @@ -148296,10 +160376,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14777 + } }, { + "id": 14761, "properties": { "east": "none", "north": "tall", @@ -148307,10 +160387,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14778 + } }, { + "id": 14762, "properties": { "east": "none", "north": "tall", @@ -148318,10 +160398,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14779 + } }, { + "id": 14763, "properties": { "east": "none", "north": "tall", @@ -148329,10 +160409,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14780 + } }, { + "id": 14764, "properties": { "east": "none", "north": "tall", @@ -148340,10 +160420,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14781 + } }, { + "id": 14765, "properties": { "east": "none", "north": "tall", @@ -148351,10 +160431,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14782 + } }, { + "id": 14766, "properties": { "east": "none", "north": "tall", @@ -148362,10 +160442,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14783 + } }, { + "id": 14767, "properties": { "east": "none", "north": "tall", @@ -148373,10 +160453,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14784 + } }, { + "id": 14768, "properties": { "east": "none", "north": "tall", @@ -148384,10 +160464,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14785 + } }, { + "id": 14769, "properties": { "east": "none", "north": "tall", @@ -148395,10 +160475,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14786 + } }, { + "id": 14770, "properties": { "east": "none", "north": "tall", @@ -148406,10 +160486,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14787 + } }, { + "id": 14771, "properties": { "east": "none", "north": "tall", @@ -148417,10 +160497,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14788 + } }, { + "id": 14772, "properties": { "east": "low", "north": "none", @@ -148428,10 +160508,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14789 + } }, { + "id": 14773, "properties": { "east": "low", "north": "none", @@ -148439,10 +160519,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14790 + } }, { + "id": 14774, "properties": { "east": "low", "north": "none", @@ -148450,10 +160530,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14791 + } }, { + "id": 14775, "properties": { "east": "low", "north": "none", @@ -148461,10 +160541,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14792 + } }, { + "id": 14776, "properties": { "east": "low", "north": "none", @@ -148472,10 +160552,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14793 + } }, { + "id": 14777, "properties": { "east": "low", "north": "none", @@ -148483,10 +160563,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14794 + } }, { + "id": 14778, "properties": { "east": "low", "north": "none", @@ -148494,10 +160574,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14795 + } }, { + "id": 14779, "properties": { "east": "low", "north": "none", @@ -148505,10 +160585,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14796 + } }, { + "id": 14780, "properties": { "east": "low", "north": "none", @@ -148516,10 +160596,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14797 + } }, { + "id": 14781, "properties": { "east": "low", "north": "none", @@ -148527,10 +160607,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14798 + } }, { + "id": 14782, "properties": { "east": "low", "north": "none", @@ -148538,10 +160618,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14799 + } }, { + "id": 14783, "properties": { "east": "low", "north": "none", @@ -148549,10 +160629,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14800 + } }, { + "id": 14784, "properties": { "east": "low", "north": "none", @@ -148560,10 +160640,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14801 + } }, { + "id": 14785, "properties": { "east": "low", "north": "none", @@ -148571,10 +160651,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14802 + } }, { + "id": 14786, "properties": { "east": "low", "north": "none", @@ -148582,10 +160662,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14803 + } }, { + "id": 14787, "properties": { "east": "low", "north": "none", @@ -148593,10 +160673,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14804 + } }, { + "id": 14788, "properties": { "east": "low", "north": "none", @@ -148604,10 +160684,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14805 + } }, { + "id": 14789, "properties": { "east": "low", "north": "none", @@ -148615,10 +160695,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14806 + } }, { + "id": 14790, "properties": { "east": "low", "north": "none", @@ -148626,10 +160706,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14807 + } }, { + "id": 14791, "properties": { "east": "low", "north": "none", @@ -148637,10 +160717,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14808 + } }, { + "id": 14792, "properties": { "east": "low", "north": "none", @@ -148648,10 +160728,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14809 + } }, { + "id": 14793, "properties": { "east": "low", "north": "none", @@ -148659,10 +160739,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14810 + } }, { + "id": 14794, "properties": { "east": "low", "north": "none", @@ -148670,10 +160750,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14811 + } }, { + "id": 14795, "properties": { "east": "low", "north": "none", @@ -148681,10 +160761,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14812 + } }, { + "id": 14796, "properties": { "east": "low", "north": "none", @@ -148692,10 +160772,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14813 + } }, { + "id": 14797, "properties": { "east": "low", "north": "none", @@ -148703,10 +160783,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14814 + } }, { + "id": 14798, "properties": { "east": "low", "north": "none", @@ -148714,10 +160794,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14815 + } }, { + "id": 14799, "properties": { "east": "low", "north": "none", @@ -148725,10 +160805,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14816 + } }, { + "id": 14800, "properties": { "east": "low", "north": "none", @@ -148736,10 +160816,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14817 + } }, { + "id": 14801, "properties": { "east": "low", "north": "none", @@ -148747,10 +160827,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14818 + } }, { + "id": 14802, "properties": { "east": "low", "north": "none", @@ -148758,10 +160838,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14819 + } }, { + "id": 14803, "properties": { "east": "low", "north": "none", @@ -148769,10 +160849,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14820 + } }, { + "id": 14804, "properties": { "east": "low", "north": "none", @@ -148780,10 +160860,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14821 + } }, { + "id": 14805, "properties": { "east": "low", "north": "none", @@ -148791,10 +160871,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14822 + } }, { + "id": 14806, "properties": { "east": "low", "north": "none", @@ -148802,10 +160882,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14823 + } }, { + "id": 14807, "properties": { "east": "low", "north": "none", @@ -148813,10 +160893,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14824 + } }, { + "id": 14808, "properties": { "east": "low", "north": "low", @@ -148824,10 +160904,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14825 + } }, { + "id": 14809, "properties": { "east": "low", "north": "low", @@ -148835,10 +160915,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14826 + } }, { + "id": 14810, "properties": { "east": "low", "north": "low", @@ -148846,10 +160926,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14827 + } }, { + "id": 14811, "properties": { "east": "low", "north": "low", @@ -148857,10 +160937,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14828 + } }, { + "id": 14812, "properties": { "east": "low", "north": "low", @@ -148868,10 +160948,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14829 + } }, { + "id": 14813, "properties": { "east": "low", "north": "low", @@ -148879,10 +160959,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14830 + } }, { + "id": 14814, "properties": { "east": "low", "north": "low", @@ -148890,10 +160970,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14831 + } }, { + "id": 14815, "properties": { "east": "low", "north": "low", @@ -148901,10 +160981,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14832 + } }, { + "id": 14816, "properties": { "east": "low", "north": "low", @@ -148912,10 +160992,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14833 + } }, { + "id": 14817, "properties": { "east": "low", "north": "low", @@ -148923,10 +161003,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14834 + } }, { + "id": 14818, "properties": { "east": "low", "north": "low", @@ -148934,10 +161014,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14835 + } }, { + "id": 14819, "properties": { "east": "low", "north": "low", @@ -148945,10 +161025,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14836 + } }, { + "id": 14820, "properties": { "east": "low", "north": "low", @@ -148956,10 +161036,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14837 + } }, { + "id": 14821, "properties": { "east": "low", "north": "low", @@ -148967,10 +161047,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14838 + } }, { + "id": 14822, "properties": { "east": "low", "north": "low", @@ -148978,10 +161058,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14839 + } }, { + "id": 14823, "properties": { "east": "low", "north": "low", @@ -148989,10 +161069,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14840 + } }, { + "id": 14824, "properties": { "east": "low", "north": "low", @@ -149000,10 +161080,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14841 + } }, { + "id": 14825, "properties": { "east": "low", "north": "low", @@ -149011,10 +161091,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14842 + } }, { + "id": 14826, "properties": { "east": "low", "north": "low", @@ -149022,10 +161102,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14843 + } }, { + "id": 14827, "properties": { "east": "low", "north": "low", @@ -149033,10 +161113,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14844 + } }, { + "id": 14828, "properties": { "east": "low", "north": "low", @@ -149044,10 +161124,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14845 + } }, { + "id": 14829, "properties": { "east": "low", "north": "low", @@ -149055,10 +161135,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14846 + } }, { + "id": 14830, "properties": { "east": "low", "north": "low", @@ -149066,10 +161146,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14847 + } }, { + "id": 14831, "properties": { "east": "low", "north": "low", @@ -149077,10 +161157,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14848 + } }, { + "id": 14832, "properties": { "east": "low", "north": "low", @@ -149088,10 +161168,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14849 + } }, { + "id": 14833, "properties": { "east": "low", "north": "low", @@ -149099,10 +161179,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14850 + } }, { + "id": 14834, "properties": { "east": "low", "north": "low", @@ -149110,10 +161190,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14851 + } }, { + "id": 14835, "properties": { "east": "low", "north": "low", @@ -149121,10 +161201,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14852 + } }, { + "id": 14836, "properties": { "east": "low", "north": "low", @@ -149132,10 +161212,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14853 + } }, { + "id": 14837, "properties": { "east": "low", "north": "low", @@ -149143,10 +161223,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14854 + } }, { + "id": 14838, "properties": { "east": "low", "north": "low", @@ -149154,10 +161234,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14855 + } }, { + "id": 14839, "properties": { "east": "low", "north": "low", @@ -149165,10 +161245,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14856 + } }, { + "id": 14840, "properties": { "east": "low", "north": "low", @@ -149176,10 +161256,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14857 + } }, { + "id": 14841, "properties": { "east": "low", "north": "low", @@ -149187,10 +161267,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14858 + } }, { + "id": 14842, "properties": { "east": "low", "north": "low", @@ -149198,10 +161278,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14859 + } }, { + "id": 14843, "properties": { "east": "low", "north": "low", @@ -149209,10 +161289,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14860 + } }, { + "id": 14844, "properties": { "east": "low", "north": "tall", @@ -149220,10 +161300,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14861 + } }, { + "id": 14845, "properties": { "east": "low", "north": "tall", @@ -149231,10 +161311,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14862 + } }, { + "id": 14846, "properties": { "east": "low", "north": "tall", @@ -149242,10 +161322,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14863 + } }, { + "id": 14847, "properties": { "east": "low", "north": "tall", @@ -149253,10 +161333,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14864 + } }, { + "id": 14848, "properties": { "east": "low", "north": "tall", @@ -149264,10 +161344,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14865 + } }, { + "id": 14849, "properties": { "east": "low", "north": "tall", @@ -149275,10 +161355,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14866 + } }, { + "id": 14850, "properties": { "east": "low", "north": "tall", @@ -149286,10 +161366,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14867 + } }, { + "id": 14851, "properties": { "east": "low", "north": "tall", @@ -149297,10 +161377,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14868 + } }, { + "id": 14852, "properties": { "east": "low", "north": "tall", @@ -149308,10 +161388,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14869 + } }, { + "id": 14853, "properties": { "east": "low", "north": "tall", @@ -149319,10 +161399,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14870 + } }, { + "id": 14854, "properties": { "east": "low", "north": "tall", @@ -149330,10 +161410,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14871 + } }, { + "id": 14855, "properties": { "east": "low", "north": "tall", @@ -149341,10 +161421,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14872 + } }, { + "id": 14856, "properties": { "east": "low", "north": "tall", @@ -149352,10 +161432,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14873 + } }, { + "id": 14857, "properties": { "east": "low", "north": "tall", @@ -149363,10 +161443,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14874 + } }, { + "id": 14858, "properties": { "east": "low", "north": "tall", @@ -149374,10 +161454,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14875 + } }, { + "id": 14859, "properties": { "east": "low", "north": "tall", @@ -149385,10 +161465,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14876 + } }, { + "id": 14860, "properties": { "east": "low", "north": "tall", @@ -149396,10 +161476,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14877 + } }, { + "id": 14861, "properties": { "east": "low", "north": "tall", @@ -149407,10 +161487,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14878 + } }, { + "id": 14862, "properties": { "east": "low", "north": "tall", @@ -149418,10 +161498,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14879 + } }, { + "id": 14863, "properties": { "east": "low", "north": "tall", @@ -149429,10 +161509,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14880 + } }, { + "id": 14864, "properties": { "east": "low", "north": "tall", @@ -149440,10 +161520,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14881 + } }, { + "id": 14865, "properties": { "east": "low", "north": "tall", @@ -149451,10 +161531,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14882 + } }, { + "id": 14866, "properties": { "east": "low", "north": "tall", @@ -149462,10 +161542,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14883 + } }, { + "id": 14867, "properties": { "east": "low", "north": "tall", @@ -149473,10 +161553,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14884 + } }, { + "id": 14868, "properties": { "east": "low", "north": "tall", @@ -149484,10 +161564,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14885 + } }, { + "id": 14869, "properties": { "east": "low", "north": "tall", @@ -149495,10 +161575,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14886 + } }, { + "id": 14870, "properties": { "east": "low", "north": "tall", @@ -149506,10 +161586,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14887 + } }, { + "id": 14871, "properties": { "east": "low", "north": "tall", @@ -149517,10 +161597,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14888 + } }, { + "id": 14872, "properties": { "east": "low", "north": "tall", @@ -149528,10 +161608,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14889 + } }, { + "id": 14873, "properties": { "east": "low", "north": "tall", @@ -149539,10 +161619,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14890 + } }, { + "id": 14874, "properties": { "east": "low", "north": "tall", @@ -149550,10 +161630,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14891 + } }, { + "id": 14875, "properties": { "east": "low", "north": "tall", @@ -149561,10 +161641,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14892 + } }, { + "id": 14876, "properties": { "east": "low", "north": "tall", @@ -149572,10 +161652,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14893 + } }, { + "id": 14877, "properties": { "east": "low", "north": "tall", @@ -149583,10 +161663,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14894 + } }, { + "id": 14878, "properties": { "east": "low", "north": "tall", @@ -149594,10 +161674,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14895 + } }, { + "id": 14879, "properties": { "east": "low", "north": "tall", @@ -149605,10 +161685,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14896 + } }, { + "id": 14880, "properties": { "east": "tall", "north": "none", @@ -149616,10 +161696,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14897 + } }, { + "id": 14881, "properties": { "east": "tall", "north": "none", @@ -149627,10 +161707,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14898 + } }, { + "id": 14882, "properties": { "east": "tall", "north": "none", @@ -149638,10 +161718,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14899 + } }, { + "id": 14883, "properties": { "east": "tall", "north": "none", @@ -149649,10 +161729,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14900 + } }, { + "id": 14884, "properties": { "east": "tall", "north": "none", @@ -149660,10 +161740,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14901 + } }, { + "id": 14885, "properties": { "east": "tall", "north": "none", @@ -149671,10 +161751,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14902 + } }, { + "id": 14886, "properties": { "east": "tall", "north": "none", @@ -149682,10 +161762,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14903 + } }, { + "id": 14887, "properties": { "east": "tall", "north": "none", @@ -149693,10 +161773,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14904 + } }, { + "id": 14888, "properties": { "east": "tall", "north": "none", @@ -149704,10 +161784,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14905 + } }, { + "id": 14889, "properties": { "east": "tall", "north": "none", @@ -149715,10 +161795,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14906 + } }, { + "id": 14890, "properties": { "east": "tall", "north": "none", @@ -149726,10 +161806,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14907 + } }, { + "id": 14891, "properties": { "east": "tall", "north": "none", @@ -149737,10 +161817,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14908 + } }, { + "id": 14892, "properties": { "east": "tall", "north": "none", @@ -149748,10 +161828,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14909 + } }, { + "id": 14893, "properties": { "east": "tall", "north": "none", @@ -149759,10 +161839,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14910 + } }, { + "id": 14894, "properties": { "east": "tall", "north": "none", @@ -149770,10 +161850,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14911 + } }, { + "id": 14895, "properties": { "east": "tall", "north": "none", @@ -149781,10 +161861,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14912 + } }, { + "id": 14896, "properties": { "east": "tall", "north": "none", @@ -149792,10 +161872,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14913 + } }, { + "id": 14897, "properties": { "east": "tall", "north": "none", @@ -149803,10 +161883,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14914 + } }, { + "id": 14898, "properties": { "east": "tall", "north": "none", @@ -149814,10 +161894,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14915 + } }, { + "id": 14899, "properties": { "east": "tall", "north": "none", @@ -149825,10 +161905,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14916 + } }, { + "id": 14900, "properties": { "east": "tall", "north": "none", @@ -149836,10 +161916,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14917 + } }, { + "id": 14901, "properties": { "east": "tall", "north": "none", @@ -149847,10 +161927,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14918 + } }, { + "id": 14902, "properties": { "east": "tall", "north": "none", @@ -149858,10 +161938,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14919 + } }, { + "id": 14903, "properties": { "east": "tall", "north": "none", @@ -149869,10 +161949,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14920 + } }, { + "id": 14904, "properties": { "east": "tall", "north": "none", @@ -149880,10 +161960,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14921 + } }, { + "id": 14905, "properties": { "east": "tall", "north": "none", @@ -149891,10 +161971,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14922 + } }, { + "id": 14906, "properties": { "east": "tall", "north": "none", @@ -149902,10 +161982,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14923 + } }, { + "id": 14907, "properties": { "east": "tall", "north": "none", @@ -149913,10 +161993,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14924 + } }, { + "id": 14908, "properties": { "east": "tall", "north": "none", @@ -149924,10 +162004,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14925 + } }, { + "id": 14909, "properties": { "east": "tall", "north": "none", @@ -149935,10 +162015,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14926 + } }, { + "id": 14910, "properties": { "east": "tall", "north": "none", @@ -149946,10 +162026,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14927 + } }, { + "id": 14911, "properties": { "east": "tall", "north": "none", @@ -149957,10 +162037,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14928 + } }, { + "id": 14912, "properties": { "east": "tall", "north": "none", @@ -149968,10 +162048,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14929 + } }, { + "id": 14913, "properties": { "east": "tall", "north": "none", @@ -149979,10 +162059,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14930 + } }, { + "id": 14914, "properties": { "east": "tall", "north": "none", @@ -149990,10 +162070,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14931 + } }, { + "id": 14915, "properties": { "east": "tall", "north": "none", @@ -150001,10 +162081,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14932 + } }, { + "id": 14916, "properties": { "east": "tall", "north": "low", @@ -150012,10 +162092,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14933 + } }, { + "id": 14917, "properties": { "east": "tall", "north": "low", @@ -150023,10 +162103,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14934 + } }, { + "id": 14918, "properties": { "east": "tall", "north": "low", @@ -150034,10 +162114,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14935 + } }, { + "id": 14919, "properties": { "east": "tall", "north": "low", @@ -150045,10 +162125,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14936 + } }, { + "id": 14920, "properties": { "east": "tall", "north": "low", @@ -150056,10 +162136,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14937 + } }, { + "id": 14921, "properties": { "east": "tall", "north": "low", @@ -150067,10 +162147,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14938 + } }, { + "id": 14922, "properties": { "east": "tall", "north": "low", @@ -150078,10 +162158,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14939 + } }, { + "id": 14923, "properties": { "east": "tall", "north": "low", @@ -150089,10 +162169,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14940 + } }, { + "id": 14924, "properties": { "east": "tall", "north": "low", @@ -150100,10 +162180,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14941 + } }, { + "id": 14925, "properties": { "east": "tall", "north": "low", @@ -150111,10 +162191,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14942 + } }, { + "id": 14926, "properties": { "east": "tall", "north": "low", @@ -150122,10 +162202,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14943 + } }, { + "id": 14927, "properties": { "east": "tall", "north": "low", @@ -150133,10 +162213,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14944 + } }, { + "id": 14928, "properties": { "east": "tall", "north": "low", @@ -150144,10 +162224,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14945 + } }, { + "id": 14929, "properties": { "east": "tall", "north": "low", @@ -150155,10 +162235,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14946 + } }, { + "id": 14930, "properties": { "east": "tall", "north": "low", @@ -150166,10 +162246,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14947 + } }, { + "id": 14931, "properties": { "east": "tall", "north": "low", @@ -150177,10 +162257,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14948 + } }, { + "id": 14932, "properties": { "east": "tall", "north": "low", @@ -150188,10 +162268,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14949 + } }, { + "id": 14933, "properties": { "east": "tall", "north": "low", @@ -150199,10 +162279,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14950 + } }, { + "id": 14934, "properties": { "east": "tall", "north": "low", @@ -150210,10 +162290,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14951 + } }, { + "id": 14935, "properties": { "east": "tall", "north": "low", @@ -150221,10 +162301,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14952 + } }, { + "id": 14936, "properties": { "east": "tall", "north": "low", @@ -150232,10 +162312,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14953 + } }, { + "id": 14937, "properties": { "east": "tall", "north": "low", @@ -150243,10 +162323,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14954 + } }, { + "id": 14938, "properties": { "east": "tall", "north": "low", @@ -150254,10 +162334,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14955 + } }, { + "id": 14939, "properties": { "east": "tall", "north": "low", @@ -150265,10 +162345,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14956 + } }, { + "id": 14940, "properties": { "east": "tall", "north": "low", @@ -150276,10 +162356,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14957 + } }, { + "id": 14941, "properties": { "east": "tall", "north": "low", @@ -150287,10 +162367,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14958 + } }, { + "id": 14942, "properties": { "east": "tall", "north": "low", @@ -150298,10 +162378,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14959 + } }, { + "id": 14943, "properties": { "east": "tall", "north": "low", @@ -150309,10 +162389,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14960 + } }, { + "id": 14944, "properties": { "east": "tall", "north": "low", @@ -150320,10 +162400,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14961 + } }, { + "id": 14945, "properties": { "east": "tall", "north": "low", @@ -150331,10 +162411,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14962 + } }, { + "id": 14946, "properties": { "east": "tall", "north": "low", @@ -150342,10 +162422,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14963 + } }, { + "id": 14947, "properties": { "east": "tall", "north": "low", @@ -150353,10 +162433,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14964 + } }, { + "id": 14948, "properties": { "east": "tall", "north": "low", @@ -150364,10 +162444,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14965 + } }, { + "id": 14949, "properties": { "east": "tall", "north": "low", @@ -150375,10 +162455,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14966 + } }, { + "id": 14950, "properties": { "east": "tall", "north": "low", @@ -150386,10 +162466,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14967 + } }, { + "id": 14951, "properties": { "east": "tall", "north": "low", @@ -150397,10 +162477,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14968 + } }, { + "id": 14952, "properties": { "east": "tall", "north": "tall", @@ -150408,10 +162488,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14969 + } }, { + "id": 14953, "properties": { "east": "tall", "north": "tall", @@ -150419,10 +162499,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14970 + } }, { + "id": 14954, "properties": { "east": "tall", "north": "tall", @@ -150430,10 +162510,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14971 + } }, { + "id": 14955, "properties": { "east": "tall", "north": "tall", @@ -150441,10 +162521,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14972 + } }, { + "id": 14956, "properties": { "east": "tall", "north": "tall", @@ -150452,10 +162532,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14973 + } }, { + "id": 14957, "properties": { "east": "tall", "north": "tall", @@ -150463,10 +162543,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14974 + } }, { + "id": 14958, "properties": { "east": "tall", "north": "tall", @@ -150474,10 +162554,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14975 + } }, { + "id": 14959, "properties": { "east": "tall", "north": "tall", @@ -150485,10 +162565,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14976 + } }, { + "id": 14960, "properties": { "east": "tall", "north": "tall", @@ -150496,10 +162576,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14977 + } }, { + "id": 14961, "properties": { "east": "tall", "north": "tall", @@ -150507,10 +162587,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14978 + } }, { + "id": 14962, "properties": { "east": "tall", "north": "tall", @@ -150518,10 +162598,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14979 + } }, { + "id": 14963, "properties": { "east": "tall", "north": "tall", @@ -150529,10 +162609,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14980 + } }, { + "id": 14964, "properties": { "east": "tall", "north": "tall", @@ -150540,10 +162620,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14981 + } }, { + "id": 14965, "properties": { "east": "tall", "north": "tall", @@ -150551,10 +162631,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14982 + } }, { + "id": 14966, "properties": { "east": "tall", "north": "tall", @@ -150562,10 +162642,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14983 + } }, { + "id": 14967, "properties": { "east": "tall", "north": "tall", @@ -150573,10 +162653,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14984 + } }, { + "id": 14968, "properties": { "east": "tall", "north": "tall", @@ -150584,10 +162664,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14985 + } }, { + "id": 14969, "properties": { "east": "tall", "north": "tall", @@ -150595,10 +162675,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14986 + } }, { + "id": 14970, "properties": { "east": "tall", "north": "tall", @@ -150606,10 +162686,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14987 + } }, { + "id": 14971, "properties": { "east": "tall", "north": "tall", @@ -150617,10 +162697,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 14988 + } }, { + "id": 14972, "properties": { "east": "tall", "north": "tall", @@ -150628,10 +162708,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 14989 + } }, { + "id": 14973, "properties": { "east": "tall", "north": "tall", @@ -150639,10 +162719,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 14990 + } }, { + "id": 14974, "properties": { "east": "tall", "north": "tall", @@ -150650,10 +162730,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 14991 + } }, { + "id": 14975, "properties": { "east": "tall", "north": "tall", @@ -150661,10 +162741,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 14992 + } }, { + "id": 14976, "properties": { "east": "tall", "north": "tall", @@ -150672,10 +162752,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 14993 + } }, { + "id": 14977, "properties": { "east": "tall", "north": "tall", @@ -150683,10 +162763,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 14994 + } }, { + "id": 14978, "properties": { "east": "tall", "north": "tall", @@ -150694,10 +162774,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 14995 + } }, { + "id": 14979, "properties": { "east": "tall", "north": "tall", @@ -150705,10 +162785,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 14996 + } }, { + "id": 14980, "properties": { "east": "tall", "north": "tall", @@ -150716,10 +162796,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 14997 + } }, { + "id": 14981, "properties": { "east": "tall", "north": "tall", @@ -150727,10 +162807,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 14998 + } }, { + "id": 14982, "properties": { "east": "tall", "north": "tall", @@ -150738,10 +162818,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 14999 + } }, { + "id": 14983, "properties": { "east": "tall", "north": "tall", @@ -150749,10 +162829,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 15000 + } }, { + "id": 14984, "properties": { "east": "tall", "north": "tall", @@ -150760,10 +162840,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 15001 + } }, { + "id": 14985, "properties": { "east": "tall", "north": "tall", @@ -150771,10 +162851,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 15002 + } }, { + "id": 14986, "properties": { "east": "tall", "north": "tall", @@ -150782,10 +162862,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 15003 + } }, { + "id": 14987, "properties": { "east": "tall", "north": "tall", @@ -150793,26 +162873,40 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 15004 + } } ] }, - "minecraft:scaffolding": { + "minecraft:red_nether_bricks": { + "states": [ + { + "default": true, + "id": 10136 + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "default": true, + "id": 108 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "default": true, + "id": 8958 + } + ] + }, + "minecraft:red_sandstone_slab": { "properties": { - "bottom": [ - "true", - "false" - ], - "distance": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", @@ -150821,19034 +162915,18883 @@ }, "states": [ { + "id": 9149, "properties": { - "bottom": "true", - "distance": "0", + "type": "top", "waterlogged": "true" - }, - "id": 15005 + } }, { + "id": 9150, "properties": { - "bottom": "true", - "distance": "0", + "type": "top", "waterlogged": "false" - }, - "id": 15006 + } }, { + "id": 9151, "properties": { - "bottom": "true", - "distance": "1", + "type": "bottom", "waterlogged": "true" - }, - "id": 15007 + } }, { + "default": true, + "id": 9152, "properties": { - "bottom": "true", - "distance": "1", + "type": "bottom", "waterlogged": "false" - }, - "id": 15008 + } }, { + "id": 9153, "properties": { - "bottom": "true", - "distance": "2", + "type": "double", "waterlogged": "true" - }, - "id": 15009 + } }, { + "id": 9154, "properties": { - "bottom": "true", - "distance": "2", + "type": "double", "waterlogged": "false" - }, - "id": 15010 - }, + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 8961, "properties": { - "bottom": "true", - "distance": "3", + "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15011 + } }, { + "id": 8962, "properties": { - "bottom": "true", - "distance": "3", + "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15012 + } }, { + "id": 8963, "properties": { - "bottom": "true", - "distance": "4", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15013 + } }, { + "id": 8964, "properties": { - "bottom": "true", - "distance": "4", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15014 + } }, { + "id": 8965, "properties": { - "bottom": "true", - "distance": "5", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15015 + } }, { + "id": 8966, "properties": { - "bottom": "true", - "distance": "5", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15016 + } }, { + "id": 8967, "properties": { - "bottom": "true", - "distance": "6", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15017 + } }, { + "id": 8968, "properties": { - "bottom": "true", - "distance": "6", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15018 + } }, { + "id": 8969, "properties": { - "bottom": "true", - "distance": "7", + "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15019 + } }, { + "id": 8970, "properties": { - "bottom": "true", - "distance": "7", + "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15020 + } }, { + "id": 8971, "properties": { - "bottom": "false", - "distance": "0", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 15021 + } }, { + "default": true, + "id": 8972, "properties": { - "bottom": "false", - "distance": "0", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 15022 + } }, { + "id": 8973, "properties": { - "bottom": "false", - "distance": "1", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15023 + } }, { + "id": 8974, "properties": { - "bottom": "false", - "distance": "1", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15024 + } }, { + "id": 8975, "properties": { - "bottom": "false", - "distance": "2", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15025 + } }, { + "id": 8976, "properties": { - "bottom": "false", - "distance": "2", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15026 + } }, { + "id": 8977, "properties": { - "bottom": "false", - "distance": "3", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15027 + } }, { + "id": 8978, "properties": { - "bottom": "false", - "distance": "3", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15028 + } }, { + "id": 8979, "properties": { - "bottom": "false", - "distance": "4", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15029 + } }, { + "id": 8980, "properties": { - "bottom": "false", - "distance": "4", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15030 + } }, { + "id": 8981, "properties": { - "bottom": "false", - "distance": "5", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15031 + } }, { + "id": 8982, "properties": { - "bottom": "false", - "distance": "5", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15032 + } }, { + "id": 8983, "properties": { - "bottom": "false", - "distance": "6", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15033 + } }, { + "id": 8984, "properties": { - "bottom": "false", - "distance": "6", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15034 + } }, { + "id": 8985, "properties": { - "bottom": "false", - "distance": "7", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15035 + } }, { + "id": 8986, "properties": { - "bottom": "false", - "distance": "7", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15036, - "default": true - } - ] - }, - "minecraft:loom": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 15037, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 15038 - }, - { - "properties": { - "facing": "west" - }, - "id": 15039 - }, - { - "properties": { - "facing": "east" - }, - "id": 15040 - } - ] - }, - "minecraft:barrel": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "open": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "open": "true" - }, - "id": 15041 - }, - { - "properties": { - "facing": "north", - "open": "false" - }, - "id": 15042, - "default": true - }, - { - "properties": { - "facing": "east", - "open": "true" - }, - "id": 15043 - }, - { - "properties": { - "facing": "east", - "open": "false" - }, - "id": 15044 + } }, { + "id": 8987, "properties": { "facing": "south", - "open": "true" - }, - "id": 15045 + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8988, "properties": { "facing": "south", - "open": "false" - }, - "id": 15046 - }, - { - "properties": { - "facing": "west", - "open": "true" - }, - "id": 15047 - }, - { - "properties": { - "facing": "west", - "open": "false" - }, - "id": 15048 - }, - { - "properties": { - "facing": "up", - "open": "true" - }, - "id": 15049 - }, - { - "properties": { - "facing": "up", - "open": "false" - }, - "id": 15050 - }, - { - "properties": { - "facing": "down", - "open": "true" - }, - "id": 15051 - }, - { - "properties": { - "facing": "down", - "open": "false" - }, - "id": 15052 - } - ] - }, - "minecraft:smoker": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 15053 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 15054, - "default": true + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8989, "properties": { "facing": "south", - "lit": "true" - }, - "id": 15055 + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 8990, "properties": { "facing": "south", - "lit": "false" - }, - "id": 15056 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 15057 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 15058 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 15059 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 15060 - } - ] - }, - "minecraft:blast_furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true" - }, - "id": 15061 - }, - { - "properties": { - "facing": "north", - "lit": "false" - }, - "id": 15062, - "default": true + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 8991, "properties": { "facing": "south", - "lit": "true" - }, - "id": 15063 + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 8992, "properties": { "facing": "south", - "lit": "false" - }, - "id": 15064 - }, - { - "properties": { - "facing": "west", - "lit": "true" - }, - "id": 15065 - }, - { - "properties": { - "facing": "west", - "lit": "false" - }, - "id": 15066 - }, - { - "properties": { - "facing": "east", - "lit": "true" - }, - "id": 15067 - }, - { - "properties": { - "facing": "east", - "lit": "false" - }, - "id": 15068 - } - ] - }, - "minecraft:cartography_table": { - "states": [ - { - "id": 15069, - "default": true - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "id": 15070, - "default": true - } - ] - }, - "minecraft:grindstone": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north" - }, - "id": 15071 - }, - { - "properties": { - "face": "floor", - "facing": "south" - }, - "id": 15072 - }, - { - "properties": { - "face": "floor", - "facing": "west" - }, - "id": 15073 - }, - { - "properties": { - "face": "floor", - "facing": "east" - }, - "id": 15074 - }, - { - "properties": { - "face": "wall", - "facing": "north" - }, - "id": 15075, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south" - }, - "id": 15076 - }, - { - "properties": { - "face": "wall", - "facing": "west" - }, - "id": 15077 - }, - { - "properties": { - "face": "wall", - "facing": "east" - }, - "id": 15078 - }, - { - "properties": { - "face": "ceiling", - "facing": "north" - }, - "id": 15079 - }, - { - "properties": { - "face": "ceiling", - "facing": "south" - }, - "id": 15080 - }, - { - "properties": { - "face": "ceiling", - "facing": "west" - }, - "id": 15081 - }, - { - "properties": { - "face": "ceiling", - "facing": "east" - }, - "id": 15082 - } - ] - }, - "minecraft:lectern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "has_book": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "true" - }, - "id": 15083 - }, - { - "properties": { - "facing": "north", - "has_book": "true", - "powered": "false" - }, - "id": 15084 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "true" - }, - "id": 15085 - }, - { - "properties": { - "facing": "north", - "has_book": "false", - "powered": "false" - }, - "id": 15086, - "default": true + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 8993, "properties": { "facing": "south", - "has_book": "true", - "powered": "true" - }, - "id": 15087 + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 8994, "properties": { "facing": "south", - "has_book": "true", - "powered": "false" - }, - "id": 15088 + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 8995, "properties": { "facing": "south", - "has_book": "false", - "powered": "true" - }, - "id": 15089 + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 8996, "properties": { "facing": "south", - "has_book": "false", - "powered": "false" - }, - "id": 15090 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" - }, - "id": 15091 - }, - { - "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" - }, - "id": 15092 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" - }, - "id": 15093 - }, - { - "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" - }, - "id": 15094 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "true" - }, - "id": 15095 - }, - { - "properties": { - "facing": "east", - "has_book": "true", - "powered": "false" - }, - "id": 15096 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "true" - }, - "id": 15097 - }, - { - "properties": { - "facing": "east", - "has_book": "false", - "powered": "false" - }, - "id": 15098 - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "id": 15099, - "default": true - } - ] - }, - "minecraft:stonecutter": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "properties": { - "facing": "north" - }, - "id": 15100, - "default": true - }, - { - "properties": { - "facing": "south" - }, - "id": 15101 - }, - { - "properties": { - "facing": "west" - }, - "id": 15102 - }, - { - "properties": { - "facing": "east" - }, - "id": 15103 - } - ] - }, - "minecraft:bell": { - "properties": { - "attachment": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "true" - }, - "id": 15104 - }, - { - "properties": { - "attachment": "floor", - "facing": "north", - "powered": "false" - }, - "id": 15105, - "default": true + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 8997, "properties": { - "attachment": "floor", "facing": "south", - "powered": "true" - }, - "id": 15106 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 8998, "properties": { - "attachment": "floor", "facing": "south", - "powered": "false" - }, - "id": 15107 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "true" - }, - "id": 15108 - }, - { - "properties": { - "attachment": "floor", - "facing": "west", - "powered": "false" - }, - "id": 15109 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "true" - }, - "id": 15110 - }, - { - "properties": { - "attachment": "floor", - "facing": "east", - "powered": "false" - }, - "id": 15111 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 15112 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 15113 + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 8999, "properties": { - "attachment": "ceiling", "facing": "south", - "powered": "true" - }, - "id": 15114 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 9000, "properties": { - "attachment": "ceiling", "facing": "south", - "powered": "false" - }, - "id": 15115 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 15116 + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 9001, "properties": { - "attachment": "ceiling", "facing": "west", - "powered": "false" - }, - "id": 15117 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 15118 - }, - { - "properties": { - "attachment": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 15119 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "true" - }, - "id": 15120 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "north", - "powered": "false" - }, - "id": 15121 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "true" - }, - "id": 15122 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "south", - "powered": "false" - }, - "id": 15123 + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 9002, "properties": { - "attachment": "single_wall", "facing": "west", - "powered": "true" - }, - "id": 15124 + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 9003, "properties": { - "attachment": "single_wall", "facing": "west", - "powered": "false" - }, - "id": 15125 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "true" - }, - "id": 15126 - }, - { - "properties": { - "attachment": "single_wall", - "facing": "east", - "powered": "false" - }, - "id": 15127 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "true" - }, - "id": 15128 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "north", - "powered": "false" - }, - "id": 15129 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "true" - }, - "id": 15130 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "south", - "powered": "false" - }, - "id": 15131 + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 9004, "properties": { - "attachment": "double_wall", "facing": "west", - "powered": "true" - }, - "id": 15132 + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 9005, "properties": { - "attachment": "double_wall", "facing": "west", - "powered": "false" - }, - "id": 15133 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "true" - }, - "id": 15134 - }, - { - "properties": { - "attachment": "double_wall", - "facing": "east", - "powered": "false" - }, - "id": 15135 - } - ] - }, - "minecraft:lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "hanging": "true", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15136 + } }, { + "id": 9006, "properties": { - "hanging": "true", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15137 - }, - { - "properties": { - "hanging": "false", - "waterlogged": "true" - }, - "id": 15138 + } }, { + "id": 9007, "properties": { - "hanging": "false", - "waterlogged": "false" - }, - "id": 15139, - "default": true - } - ] - }, - "minecraft:soul_lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "hanging": "true", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15140 + } }, { + "id": 9008, "properties": { - "hanging": "true", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15141 - }, - { - "properties": { - "hanging": "false", - "waterlogged": "true" - }, - "id": 15142 + } }, { + "id": 9009, "properties": { - "hanging": "false", - "waterlogged": "false" - }, - "id": 15143, - "default": true - } - ] - }, - "minecraft:campfire": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ], - "signal_fire": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15144 + } }, { + "id": 9010, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15145 + } }, { + "id": 9011, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 15146 + } }, { + "id": 9012, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 15147, - "default": true + } }, { + "id": 9013, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15148 + } }, { + "id": 9014, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15149 + } }, { + "id": 9015, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15150 + } }, { + "id": 9016, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15151 + } }, { + "id": 9017, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15152 + } }, { + "id": 9018, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15153 + } }, { + "id": 9019, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15154 + } }, { + "id": 9020, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15155 + } }, { + "id": 9021, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 15156 + } }, { + "id": 9022, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 15157 + } }, { + "id": 9023, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15158 + } }, { + "id": 9024, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15159 + } }, { + "id": 9025, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15160 + } }, { + "id": 9026, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15161 + } }, { + "id": 9027, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15162 + } }, { + "id": 9028, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15163 + } }, { + "id": 9029, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15164 + } }, { + "id": 9030, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15165 + } }, { + "id": 9031, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 15166 + } }, { + "id": 9032, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 15167 + } }, { + "id": 9033, "properties": { "facing": "east", - "lit": "true", - "signal_fire": "true", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 15168 + } }, { + "id": 9034, "properties": { "facing": "east", - "lit": "true", - "signal_fire": "true", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 15169 + } }, { + "id": 9035, "properties": { "facing": "east", - "lit": "true", - "signal_fire": "false", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 15170 + } }, { + "id": 9036, "properties": { "facing": "east", - "lit": "true", - "signal_fire": "false", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 15171 + } }, { + "id": 9037, "properties": { "facing": "east", - "lit": "false", - "signal_fire": "true", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 15172 + } }, { + "id": 9038, "properties": { "facing": "east", - "lit": "false", - "signal_fire": "true", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 15173 + } }, { + "id": 9039, "properties": { "facing": "east", - "lit": "false", - "signal_fire": "false", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 15174 + } }, { + "id": 9040, "properties": { "facing": "east", - "lit": "false", - "signal_fire": "false", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 15175 + } } ] }, - "minecraft:soul_campfire": { + "minecraft:red_sandstone_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "lit": [ - "true", - "false" + "north": [ + "none", + "low", + "tall" ], - "signal_fire": [ + "south": [ + "none", + "low", + "tall" + ], + "up": [ "true", "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 12396, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15176 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12397, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15177 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12398, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15178 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 12399, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15179, - "default": true + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12400, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15180 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12401, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15181 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12402, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15182 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12403, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15183 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12404, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15184 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12405, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15185 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12406, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15186 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12407, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15187 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12408, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15188 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12409, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15189 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12410, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15190 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12411, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15191 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12412, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15192 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12413, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15193 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12414, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15194 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12415, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15195 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12416, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15196 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12417, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15197 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12418, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15198 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12419, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15199 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12420, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15200 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12421, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15201 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12422, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15202 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12423, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15203 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12424, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" - }, - "id": 15204 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12425, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" - }, - "id": 15205 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12426, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" - }, - "id": 15206 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12427, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" - }, - "id": 15207 - } - ] - }, - "minecraft:sweet_berry_bush": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 12428, "properties": { - "age": "0" - }, - "id": 15208, - "default": true + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12429, "properties": { - "age": "1" - }, - "id": 15209 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12430, "properties": { - "age": "2" - }, - "id": 15210 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12431, "properties": { - "age": "3" - }, - "id": 15211 - } - ] - }, - "minecraft:warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 12432, "properties": { - "axis": "x" - }, - "id": 15212 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12433, "properties": { - "axis": "y" - }, - "id": 15213, - "default": true + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12434, "properties": { - "axis": "z" - }, - "id": 15214 - } - ] - }, - "minecraft:stripped_warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12435, "properties": { - "axis": "x" - }, - "id": 15215 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12436, "properties": { - "axis": "y" - }, - "id": 15216, - "default": true + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12437, "properties": { - "axis": "z" - }, - "id": 15217 - } - ] - }, - "minecraft:warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 12438, "properties": { - "axis": "x" - }, - "id": 15218 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12439, "properties": { - "axis": "y" - }, - "id": 15219, - "default": true + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12440, "properties": { - "axis": "z" - }, - "id": 15220 - } - ] - }, - "minecraft:stripped_warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12441, "properties": { - "axis": "x" - }, - "id": 15221 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12442, "properties": { - "axis": "y" - }, - "id": 15222, - "default": true + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12443, "properties": { - "axis": "z" - }, - "id": 15223 - } - ] - }, - "minecraft:warped_nylium": { - "states": [ + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 15224, - "default": true - } - ] - }, - "minecraft:warped_fungus": { - "states": [ + "id": 12444, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { - "id": 15225, - "default": true - } - ] - }, - "minecraft:warped_wart_block": { - "states": [ + "id": 12445, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { - "id": 15226, - "default": true - } - ] - }, - "minecraft:warped_roots": { - "states": [ + "id": 12446, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { - "id": 15227, - "default": true - } - ] - }, - "minecraft:nether_sprouts": { - "states": [ + "id": 12447, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { - "id": 15228, - "default": true - } - ] - }, - "minecraft:crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "id": 12448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 12449, "properties": { - "axis": "x" - }, - "id": 15229 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12450, "properties": { - "axis": "y" - }, - "id": 15230, - "default": true + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12451, "properties": { - "axis": "z" - }, - "id": 15231 - } - ] - }, - "minecraft:stripped_crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 12452, "properties": { - "axis": "x" - }, - "id": 15232 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12453, "properties": { - "axis": "y" - }, - "id": 15233, - "default": true + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12454, "properties": { - "axis": "z" - }, - "id": 15234 - } - ] - }, - "minecraft:crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 12455, "properties": { - "axis": "x" - }, - "id": 15235 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12456, "properties": { - "axis": "y" - }, - "id": 15236, - "default": true + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12457, "properties": { - "axis": "z" - }, - "id": 15237 - } - ] - }, - "minecraft:stripped_crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 12458, "properties": { - "axis": "x" - }, - "id": 15238 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12459, "properties": { - "axis": "y" - }, - "id": 15239, - "default": true + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12460, "properties": { - "axis": "z" - }, - "id": 15240 - } - ] - }, - "minecraft:crimson_nylium": { - "states": [ + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, { - "id": 15241, - "default": true - } - ] - }, - "minecraft:crimson_fungus": { - "states": [ + "id": 12461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 15242, - "default": true - } - ] - }, - "minecraft:shroomlight": { - "states": [ + "id": 12462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { - "id": 15243, - "default": true - } - ] - }, - "minecraft:weeping_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ + "id": 12463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 12464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 12466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 12467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12468, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 12469, "properties": { - "age": "0" - }, - "id": 15244, - "default": true + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12470, "properties": { - "age": "1" - }, - "id": 15245 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12471, "properties": { - "age": "2" - }, - "id": 15246 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12472, "properties": { - "age": "3" - }, - "id": 15247 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12473, "properties": { - "age": "4" - }, - "id": 15248 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12474, "properties": { - "age": "5" - }, - "id": 15249 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12475, "properties": { - "age": "6" - }, - "id": 15250 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12476, "properties": { - "age": "7" - }, - "id": 15251 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12477, "properties": { - "age": "8" - }, - "id": 15252 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12478, "properties": { - "age": "9" - }, - "id": 15253 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12479, "properties": { - "age": "10" - }, - "id": 15254 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12480, "properties": { - "age": "11" - }, - "id": 15255 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12481, "properties": { - "age": "12" - }, - "id": 15256 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12482, "properties": { - "age": "13" - }, - "id": 15257 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12483, "properties": { - "age": "14" - }, - "id": 15258 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12484, "properties": { - "age": "15" - }, - "id": 15259 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12485, "properties": { - "age": "16" - }, - "id": 15260 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12486, "properties": { - "age": "17" - }, - "id": 15261 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12487, "properties": { - "age": "18" - }, - "id": 15262 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12488, "properties": { - "age": "19" - }, - "id": 15263 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12489, "properties": { - "age": "20" - }, - "id": 15264 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12490, "properties": { - "age": "21" - }, - "id": 15265 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12491, "properties": { - "age": "22" - }, - "id": 15266 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12492, "properties": { - "age": "23" - }, - "id": 15267 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12493, "properties": { - "age": "24" - }, - "id": 15268 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12494, "properties": { - "age": "25" - }, - "id": 15269 - } - ] - }, - "minecraft:weeping_vines_plant": { - "states": [ - { - "id": 15270, - "default": true - } - ] - }, - "minecraft:twisting_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12495, "properties": { - "age": "0" - }, - "id": 15271, - "default": true + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12496, "properties": { - "age": "1" - }, - "id": 15272 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12497, "properties": { - "age": "2" - }, - "id": 15273 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12498, "properties": { - "age": "3" - }, - "id": 15274 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12499, "properties": { - "age": "4" - }, - "id": 15275 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12500, "properties": { - "age": "5" - }, - "id": 15276 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12501, "properties": { - "age": "6" - }, - "id": 15277 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12502, "properties": { - "age": "7" - }, - "id": 15278 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12503, "properties": { - "age": "8" - }, - "id": 15279 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12504, "properties": { - "age": "9" - }, - "id": 15280 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12505, "properties": { - "age": "10" - }, - "id": 15281 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12506, "properties": { - "age": "11" - }, - "id": 15282 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12507, "properties": { - "age": "12" - }, - "id": 15283 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12508, "properties": { - "age": "13" - }, - "id": 15284 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12509, "properties": { - "age": "14" - }, - "id": 15285 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12510, "properties": { - "age": "15" - }, - "id": 15286 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12511, "properties": { - "age": "16" - }, - "id": 15287 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12512, "properties": { - "age": "17" - }, - "id": 15288 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12513, "properties": { - "age": "18" - }, - "id": 15289 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12514, "properties": { - "age": "19" - }, - "id": 15290 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12515, "properties": { - "age": "20" - }, - "id": 15291 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12516, "properties": { - "age": "21" - }, - "id": 15292 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12517, "properties": { - "age": "22" - }, - "id": 15293 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12518, "properties": { - "age": "23" - }, - "id": 15294 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12519, "properties": { - "age": "24" - }, - "id": 15295 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12520, "properties": { - "age": "25" - }, - "id": 15296 - } - ] - }, - "minecraft:twisting_vines_plant": { - "states": [ + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, { - "id": 15297, - "default": true - } - ] - }, - "minecraft:crimson_roots": { - "states": [ + "id": 12521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 15298, - "default": true - } - ] - }, - "minecraft:crimson_planks": { - "states": [ + "id": 12522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { - "id": 15299, - "default": true - } - ] - }, - "minecraft:warped_planks": { - "states": [ + "id": 12523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { - "id": 15300, - "default": true - } - ] - }, - "minecraft:crimson_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 12524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12525, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 15301 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12526, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 15302 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12527, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 15303 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12528, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 15304, - "default": true + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12529, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 15305 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12530, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 15306 - } - ] - }, - "minecraft:warped_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12531, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 15307 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12532, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 15308 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12533, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 15309 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12534, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 15310, - "default": true + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12535, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 15311 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12536, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 15312 - } - ] - }, - "minecraft:crimson_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 12537, "properties": { - "powered": "true" - }, - "id": 15313 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12538, "properties": { - "powered": "false" - }, - "id": 15314, - "default": true - } - ] - }, - "minecraft:warped_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 12539, "properties": { - "powered": "true" - }, - "id": 15315 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12540, "properties": { - "powered": "false" - }, - "id": 15316, - "default": true - } - ] - }, - "minecraft:crimson_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 12541, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15317 + "west": "low" + } }, { + "id": 12542, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15318 + "west": "tall" + } }, { + "id": 12543, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 15319 + "west": "none" + } }, { + "id": 12544, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15320 + "west": "low" + } }, { + "id": 12545, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15321 + "west": "none" + } }, { + "id": 12547, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 15322 + "west": "low" + } }, { + "id": 12548, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15323 + "west": "none" + } }, { + "id": 12550, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15324 + "west": "low" + } }, { + "id": 12551, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12552, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15325 + "west": "none" + } }, { + "id": 12553, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15326 + "west": "low" + } }, { + "id": 12554, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12555, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 15327 + "west": "none" + } }, { + "id": 12556, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15328 + "west": "low" + } }, { + "id": 12557, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15329 + "west": "none" + } }, { + "id": 12559, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 15330 + "west": "low" + } }, { + "id": 12560, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15331 + "west": "none" + } }, { + "id": 12562, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15332 + "west": "low" + } }, { + "id": 12563, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12564, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15333 + "west": "none" + } }, { + "id": 12565, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15334 + "west": "low" + } }, { + "id": 12566, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12567, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 15335 + "west": "none" + } }, { + "id": 12568, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15336 + "west": "low" + } }, { + "id": 12569, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15337 + "west": "none" + } }, { + "id": 12571, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 15338 + "west": "low" + } }, { + "id": 12572, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15339 + "west": "none" + } }, { + "id": 12574, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15340 + "west": "low" + } }, { + "id": 12575, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 12576, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15341 + "west": "none" + } }, { + "id": 12577, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15342 + "west": "low" + } + }, + { + "id": 12578, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 12579, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12580, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 15343 + "west": "low" + } }, { + "id": 12581, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15344 + "west": "tall" + } }, { + "id": 12582, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15345 + "west": "none" + } }, { + "id": 12583, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 15346 + "west": "low" + } }, { + "id": 12584, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15347 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12585, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15348, - "default": true - } - ] - }, - "minecraft:warped_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15349 + "west": "none" + } }, { + "id": 12586, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15350 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12587, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15351 + "west": "tall" + } }, { + "id": 12588, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15352 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12589, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15353 + "west": "low" + } }, { + "id": 12590, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15354 + "west": "tall" + } }, { + "id": 12591, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" - }, - "id": 15355 + "west": "none" + } }, { + "id": 12592, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15356 + "west": "low" + } }, { + "id": 12593, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - }, - "id": 15357 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12594, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" - }, - "id": 15358 - }, - { - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15359 + "west": "none" + } }, { + "id": 12595, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - }, - "id": 15360 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12596, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15361 + "west": "tall" + } }, { + "id": 12597, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15362 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12598, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15363 + "west": "low" + } }, { + "id": 12599, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15364 + "west": "tall" + } }, { + "id": 12600, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15365 + "west": "none" + } }, { + "id": 12601, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15366 + "west": "low" + } }, { + "id": 12602, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - }, - "id": 15367 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12603, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15368 + "west": "none" + } }, { + "id": 12604, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - }, - "id": 15369 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12605, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - }, - "id": 15370 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12606, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15371 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12607, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - }, - "id": 15372 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12608, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" - }, - "id": 15373 + "west": "tall" + } }, { + "id": 12609, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - }, - "id": 15374 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12610, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "true" - }, - "id": 15375 + "west": "low" + } }, { + "id": 12611, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" - }, - "id": 15376 + "west": "tall" + } }, { + "id": 12612, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "true" - }, - "id": 15377 + "west": "none" + } }, { + "id": 12613, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "false" - }, - "id": 15378 + "west": "low" + } }, { + "id": 12614, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - }, - "id": 15379 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12615, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "false" - }, - "id": 15380, - "default": true - } - ] - }, - "minecraft:crimson_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "west": "none" + } + }, { + "id": 12616, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15381 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12617, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15382 + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12618, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15383 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12619, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15384 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12620, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15385 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12621, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15386 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12622, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15387 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12623, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15388 + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12624, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15389 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12625, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15390 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12626, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15391 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12627, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15392 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12628, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15393 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12629, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15394 + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12630, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15395 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12631, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15396, - "default": true + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12632, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15397 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12633, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15398 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12634, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15399 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12635, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15400 + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12636, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15401 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12637, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15402 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12638, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15403 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12639, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15404 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12640, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15405 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12641, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15406 + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12642, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15407 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12643, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15408 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12644, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15409 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12645, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15410 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12646, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15411 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12647, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15412 + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12648, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15413 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12649, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15414 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12650, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15415 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12651, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15416 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12652, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15417 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12653, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15418 + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12654, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15419 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12655, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15420 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12656, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15421 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12657, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15422 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12658, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15423 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12659, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15424 + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12660, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15425 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12661, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15426 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12662, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15427 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12663, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15428 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12664, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15429 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12665, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15430 + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12666, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15431 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12667, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15432 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12668, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15433 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12669, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15434 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12670, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15435 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12671, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15436 + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12672, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15437 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12673, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15438 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12674, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15439 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12675, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15440 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12676, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15441 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12677, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15442 + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12678, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15443 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12679, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15444 - } - ] - }, - "minecraft:warped_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 12680, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15445 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12681, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15446 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12682, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15447 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12683, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15448 + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12684, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15449 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12685, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15450 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12686, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15451 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12687, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15452 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12688, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15453 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12689, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15454 + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12690, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15455 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12691, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15456 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12692, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15457 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12693, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15458 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12694, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15459 + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12695, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15460, - "default": true + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12696, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15461 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12697, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15462 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12698, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15463 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12699, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15464 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12700, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15465 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12701, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15466 + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12702, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15467 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12703, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15468 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12704, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15469 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12705, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15470 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12706, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15471 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12707, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15472 + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12708, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15473 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12709, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15474 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12710, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15475 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12711, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15476 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12712, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15477 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12713, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15478 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 12714, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15479 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 12715, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15480 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 12716, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15481 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 12717, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15482 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 12718, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15483 + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 12719, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15484 - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10243, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15485 + "facing": "north" + } }, { + "id": 10244, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15486 + "facing": "east" + } }, { + "id": 10245, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15487 + "facing": "south" + } }, { + "id": 10246, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15488 + "facing": "west" + } }, { + "default": true, + "id": 10247, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15489 + "facing": "up" + } }, { + "id": 10248, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15490 - }, + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ { + "default": true, + "id": 4418 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7940, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15491 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7941, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15492 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7942, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15493 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7943, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15494 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7944, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15495 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7945, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15496 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7946, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15497 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7947, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15498 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7948, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15499 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7949, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15500 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7950, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" - }, - "id": 15501 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7951, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" - }, - "id": 15502 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7952, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" - }, - "id": 15503 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7953, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" - }, - "id": 15504 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7954, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - }, - "id": 15505 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7955, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" - }, - "id": 15506 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7956, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" - }, - "id": 15507 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7957, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - }, - "id": 15508 - } - ] - }, - "minecraft:crimson_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, { + "id": 7958, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15509 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7959, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15510 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7960, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15511 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7961, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15512 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7962, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15513 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7963, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15514 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7964, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15515 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7965, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15516, - "default": true + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7966, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15517 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7967, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15518 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7968, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15519 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7969, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15520 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7970, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15521 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7971, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "default": true, + "id": 7490 + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "default": true, + "id": 1671 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8950, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15522 + "facing": "north" + } }, { + "id": 8951, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15523 + "facing": "south" + } }, { + "id": 8952, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15524 + "facing": "west" + } }, { + "id": 8953, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15525 - }, + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "states": [ { - "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15526 - }, + "default": true, + "id": 1652 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "default": true, + "id": 7343 + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 5747, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15527 + "lit": "true" + } }, { + "default": true, + "id": 5748, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15528 - }, + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4192, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15529 + "lit": "true" + } }, { + "default": true, + "id": 4193, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15530 - }, + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 4196, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15531 + "lit": "true" + } }, { + "id": 4197, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15532 - }, + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 4198, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15533 + "facing": "north", + "lit": "true" + } }, { + "id": 4199, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15534 + "facing": "north", + "lit": "false" + } }, { + "id": 4200, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15535 + "facing": "south", + "lit": "true" + } }, { + "id": 4201, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15536 + "facing": "south", + "lit": "false" + } }, { + "id": 4202, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15537 + "facing": "west", + "lit": "true" + } }, { + "id": 4203, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15538 + "facing": "west", + "lit": "false" + } }, { + "id": 4204, "properties": { "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15539 + "lit": "true" + } }, { + "id": 4205, "properties": { "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15540 + "lit": "false" + } } ] }, - "minecraft:warped_fence_gate": { + "minecraft:redstone_wire": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "up", + "side", + "none" ], - "in_wall": [ - "true", - "false" + "north": [ + "up", + "side", + "none" ], - "open": [ - "true", - "false" + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "powered": [ - "true", - "false" + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" ] }, "states": [ { + "id": 2312, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15541 + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 2313, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15542 + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 2314, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15543 + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 2315, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15544 + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 2316, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15545 + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 2317, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15546 + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 2318, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15547 + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 2319, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15548, - "default": true + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 2320, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15549 + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 2321, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15550 + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 2322, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15551 + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 2323, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15552 + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } }, { + "id": 2324, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15553 + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 2325, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15554 + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 2326, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15555 + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 2327, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15556 + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 2328, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15557 + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 2329, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15558 + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 2330, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15559 + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 2331, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15560 + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 2332, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15561 + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 2333, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15562 + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 2334, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15563 + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 2335, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15564 + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 2336, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" - }, - "id": 15565 + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 2337, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" - }, - "id": 15566 + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 2338, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" - }, - "id": 15567 + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 2339, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" - }, - "id": 15568 + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 2340, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" - }, - "id": 15569 + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 2341, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" - }, - "id": 15570 + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 2342, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" - }, - "id": 15571 + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 2343, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" - }, - "id": 15572 - } - ] - }, - "minecraft:crimson_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, { + "id": 2344, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15573 + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 2345, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15574 + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 2346, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15575 + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 2347, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15576 + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 2348, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15577 + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 2349, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15578 + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 2350, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15579 + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 2351, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15580 + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 2352, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15581 + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 2353, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15582 + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 2354, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15583 + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 2355, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15584, - "default": true + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 2356, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15585 + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } }, { + "id": 2357, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15586 + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 2358, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15587 + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 2359, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15588 + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 2360, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15589 + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 2361, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15590 + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 2362, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15591 + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } }, { + "id": 2363, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15592 + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } }, { + "id": 2364, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15593 + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } }, { + "id": 2365, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15594 + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } }, { + "id": 2366, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15595 + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 2367, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15596 + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 2368, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15597 + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } }, { + "id": 2369, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15598 + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 2370, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15599 + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 2371, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15600 + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } }, { + "id": 2372, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15601 + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 2373, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15602 + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 2374, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15603 + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } }, { + "id": 2375, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15604 + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 2376, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15605 + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 2377, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15606 + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } }, { + "id": 2378, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15607 + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 2379, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15608 + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 2380, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15609 + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } }, { + "id": 2381, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15610 + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 2382, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15611 + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 2383, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15612 + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } }, { + "id": 2384, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15613 + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 2385, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15614 + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 2386, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15615 + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } }, { + "id": 2387, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15616 + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 2388, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15617 + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 2389, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15618 + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } }, { + "id": 2390, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15619 + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 2391, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15620 + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 2392, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15621 + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } }, { + "id": 2393, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15622 + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 2394, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15623 + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 2395, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15624 + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 2396, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 2397, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 2398, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15625 + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } }, { + "id": 2399, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15626 + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 2400, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15627 + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 2401, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15628 + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } }, { + "id": 2402, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15629 + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 2403, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15630 + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 2404, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15631 + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 2405, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15632 + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 2406, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15633 + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 2407, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15634 + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 2408, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15635 + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 2409, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15636 + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 2410, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15637 + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 2411, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15638 + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 2412, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15639 + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 2413, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15640 + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 2414, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15641 + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 2415, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15642 + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 2416, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15643 + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 2417, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15644 + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 2418, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15645 + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 2419, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15646 + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 2420, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15647 + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 2421, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15648 + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 2422, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15649 + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 2423, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15650 + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 2424, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15651 + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 2425, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15652 - } - ] - }, - "minecraft:warped_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, { + "id": 2426, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15653 + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 2427, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15654 + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 2428, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15655 + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 2429, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15656 + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 2430, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15657 + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 2431, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15658 + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 2432, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15659 + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 2433, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15660 + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 2434, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15661 + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 2435, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15662 + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 2436, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15663 + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 2437, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15664, - "default": true + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 2438, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15665 + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 2439, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15666 + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 2440, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15667 + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 2441, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15668 + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 2442, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15669 + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 2443, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15670 + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 2444, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15671 + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 2445, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15672 + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 2446, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15673 + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 2447, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15674 + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 2448, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15675 + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 2449, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15676 + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 2450, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15677 + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 2451, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15678 + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 2452, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15679 + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 2453, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15680 + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 2454, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15681 + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 2455, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15682 + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 2456, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15683 + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 2457, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15684 + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 2458, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15685 + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 2459, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15686 + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 2460, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15687 + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 2461, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15688 + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 2462, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15689 + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 2463, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15690 + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 2464, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15691 + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 2465, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15692 + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 2466, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15693 + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 2467, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15694 + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } }, { + "id": 2468, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15695 + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 2469, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15696 + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 2470, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15697 + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 2471, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15698 + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 2472, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15699 + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 2473, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15700 + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 2474, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15701 + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 2475, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15702 + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 2476, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15703 + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 2477, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15704 + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 2478, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15705 + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 2479, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15706 + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 2480, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15707 + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 2481, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15708 + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 2482, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15709 + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 2483, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15710 + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 2484, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15711 + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 2485, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15712 + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 2486, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15713 + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 2487, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15714 + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 2488, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15715 + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 2489, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15716 + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 2490, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15717 + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 2491, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15718 + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 2492, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15719 + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 2493, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15720 + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 2494, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15721 + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 2495, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15722 + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 2496, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 15723 + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 2497, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 15724 + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 2498, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 15725 + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 2499, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 15726 + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 2500, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 15727 + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } }, { + "id": 2501, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 15728 + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 2502, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 15729 + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 2503, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 15730 + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 2504, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 15731 + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 2505, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 15732 - } - ] - }, - "minecraft:crimson_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, { + "id": 2506, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 15733 + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } }, { + "id": 2507, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 15734 + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } }, { + "id": 2508, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 15735 + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } }, { + "id": 2509, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 15736 + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } }, { + "id": 2510, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 15737 + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 2511, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 15738 + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 2512, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 15739 + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } }, { + "id": 2513, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 15740 + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 2514, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 15741 + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 2515, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 15742, - "default": true + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } }, { + "id": 2516, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 15743 + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 2517, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 15744 + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 2518, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 15745 + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } }, { + "id": 2519, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 15746 + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 2520, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 15747 + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 2521, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 15748 + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } }, { + "id": 2522, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 15749 + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 2523, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 15750 + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 2524, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 15751 + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } }, { + "id": 2525, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 15752 + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 2526, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 15753 + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 2527, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 15754 + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } }, { + "id": 2528, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 15755 + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 2529, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 15756 - } - ] - }, - "minecraft:warped_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, { + "id": 2530, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 15757 + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } }, { + "id": 2531, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 15758 + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 2532, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 15759 + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 2533, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 15760 + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } }, { + "id": 2534, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 15761 + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 2535, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 15762 + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 2536, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 15763 + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } }, { + "id": 2537, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 15764 + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 2538, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 15765 + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 2539, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 15766, - "default": true + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } }, { + "id": 2540, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 15767 + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 2541, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 15768 + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 2542, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 15769 + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } }, { + "id": 2543, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 15770 + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 2544, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 15771 + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 2545, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 15772 + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } }, { + "id": 2546, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 15773 + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 2547, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 15774 + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 2548, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 15775 + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 2549, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 15776 + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 2550, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 15777 + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 2551, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 15778 + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 2552, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 15779 + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 2553, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 15780 - } - ] - }, - "minecraft:crimson_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, { + "id": 2554, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15781 + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 2555, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15782 + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 2556, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15783 + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 2557, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15784 + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 2558, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15785 + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 2559, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15786 + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 2560, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15787 + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 2561, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15788 + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 2562, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15789 + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 2563, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15790 + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 2564, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15791 + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 2565, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15792, - "default": true + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 2566, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15793 + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 2567, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15794 + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 2568, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15795 + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 2569, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15796 + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } }, { + "id": 2570, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15797 + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 2571, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15798 + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 2572, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15799 + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 2573, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15800 + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 2574, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15801 + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 2575, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15802 + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 2576, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15803 + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 2577, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15804 + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 2578, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15805 + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 2579, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15806 + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 2580, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15807 + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 2581, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15808 + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 2582, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15809 + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 2583, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15810 + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 2584, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15811 + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 2585, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15812 + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 2586, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15813 + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 2587, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15814 + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 2588, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15815 + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 2589, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15816 + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 2590, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15817 + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 2591, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15818 + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 2592, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15819 + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 2593, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15820 + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 2594, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15821 + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 2595, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15822 + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 2596, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15823 + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 2597, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15824 + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 2598, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15825 + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 2599, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15826 + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 2600, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15827 + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 2601, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15828 + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 2602, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15829 + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 2603, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15830 + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 2604, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15831 + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 2605, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15832 + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 2606, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15833 + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 2607, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15834 + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 2608, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15835 + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 2609, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15836 + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 2610, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15837 + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 2611, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 2612, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 2613, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15838 + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 2614, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15839 + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 2615, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15840 + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 2616, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15841 + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 2617, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15842 + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 2618, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15843 + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 2619, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15844 - } - ] - }, - "minecraft:warped_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, { + "id": 2620, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15845 + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 2621, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15846 + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 2622, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15847 + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 2623, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15848 + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 2624, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15849 + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 2625, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15850 + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 2626, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15851 + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 2627, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15852 + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 2628, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15853 + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 2629, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15854 + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 2630, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15855 + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 2631, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15856, - "default": true + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 2632, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15857 + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 2633, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15858 + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 2634, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15859 + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 2635, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15860 + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 2636, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15861 + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 2637, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15862 + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 2638, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15863 + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 2639, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15864 + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 2640, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15865 + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 2641, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15866 + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 2642, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15867 + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 2643, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15868 + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 2644, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15869 + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } }, { + "id": 2645, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15870 + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 2646, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15871 + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 2647, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15872 + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 2648, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15873 + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 2649, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15874 + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 2650, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15875 + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } }, { + "id": 2651, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15876 + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } }, { + "id": 2652, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15877 + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } }, { + "id": 2653, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15878 + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } }, { + "id": 2654, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15879 + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 2655, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15880 + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 2656, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15881 + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } }, { + "id": 2657, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15882 + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 2658, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15883 + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 2659, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15884 + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } }, { + "id": 2660, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15885 + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 2661, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15886 + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 2662, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15887 + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } }, { + "id": 2663, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15888 + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 2664, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15889 + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 2665, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15890 + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } }, { + "id": 2666, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15891 + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 2667, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15892 + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 2668, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15893 + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } }, { + "id": 2669, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15894 + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 2670, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15895 + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 2671, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15896 + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } }, { + "id": 2672, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15897 + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 2673, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15898 + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 2674, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15899 + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } }, { + "id": 2675, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15900 + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 2676, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" - }, - "id": 15901 + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 2677, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" - }, - "id": 15902 + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } }, { + "id": 2678, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" - }, - "id": 15903 + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 2679, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" - }, - "id": 15904 + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 2680, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" - }, - "id": 15905 + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } }, { + "id": 2681, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" - }, - "id": 15906 + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 2682, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" - }, - "id": 15907 + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 2683, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" - }, - "id": 15908 - } - ] - }, - "minecraft:crimson_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, { + "id": 2684, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 15909 + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 2685, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 15910, - "default": true + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 2686, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 15911 + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } }, { + "id": 2687, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 15912 + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 2688, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 15913 + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 2689, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 15914 + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } }, { + "id": 2690, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 15915 + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 2691, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 15916 + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 2692, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 15917 + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 2693, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 15918 + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 2694, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 15919 + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 2695, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 15920 + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 2696, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 15921 + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 2697, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 15922 + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 2698, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 15923 + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 2699, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 15924 + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 2700, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 15925 + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 2701, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 15926 + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 2702, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 15927 + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 2703, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 15928 + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 2704, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 15929 + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 2705, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 15930 + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 2706, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 15931 + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 2707, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 15932 + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 2708, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 15933 + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 2709, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 15934 + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 2710, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 15935 + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 2711, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 15936 + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 2712, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 15937 + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 2713, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 15938 + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } }, { + "id": 2714, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 15939 + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 2715, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 15940 - } - ] - }, - "minecraft:warped_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, { + "id": 2716, "properties": { - "rotation": "0", - "waterlogged": "true" - }, - "id": 15941 + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 2717, "properties": { - "rotation": "0", - "waterlogged": "false" - }, - "id": 15942, - "default": true + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 2718, "properties": { - "rotation": "1", - "waterlogged": "true" - }, - "id": 15943 + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 2719, "properties": { - "rotation": "1", - "waterlogged": "false" - }, - "id": 15944 + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 2720, "properties": { - "rotation": "2", - "waterlogged": "true" - }, - "id": 15945 + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 2721, "properties": { - "rotation": "2", - "waterlogged": "false" - }, - "id": 15946 + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 2722, "properties": { - "rotation": "3", - "waterlogged": "true" - }, - "id": 15947 + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 2723, "properties": { - "rotation": "3", - "waterlogged": "false" - }, - "id": 15948 + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 2724, "properties": { - "rotation": "4", - "waterlogged": "true" - }, - "id": 15949 + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 2725, "properties": { - "rotation": "4", - "waterlogged": "false" - }, - "id": 15950 + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 2726, "properties": { - "rotation": "5", - "waterlogged": "true" - }, - "id": 15951 + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 2727, "properties": { - "rotation": "5", - "waterlogged": "false" - }, - "id": 15952 + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 2728, "properties": { - "rotation": "6", - "waterlogged": "true" - }, - "id": 15953 + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 2729, "properties": { - "rotation": "6", - "waterlogged": "false" - }, - "id": 15954 + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 2730, "properties": { - "rotation": "7", - "waterlogged": "true" - }, - "id": 15955 + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 2731, "properties": { - "rotation": "7", - "waterlogged": "false" - }, - "id": 15956 + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 2732, "properties": { - "rotation": "8", - "waterlogged": "true" - }, - "id": 15957 + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 2733, "properties": { - "rotation": "8", - "waterlogged": "false" - }, - "id": 15958 + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 2734, "properties": { - "rotation": "9", - "waterlogged": "true" - }, - "id": 15959 + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 2735, "properties": { - "rotation": "9", - "waterlogged": "false" - }, - "id": 15960 + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 2736, "properties": { - "rotation": "10", - "waterlogged": "true" - }, - "id": 15961 + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 2737, "properties": { - "rotation": "10", - "waterlogged": "false" - }, - "id": 15962 + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 2738, "properties": { - "rotation": "11", - "waterlogged": "true" - }, - "id": 15963 + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 2739, "properties": { - "rotation": "11", - "waterlogged": "false" - }, - "id": 15964 + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 2740, "properties": { - "rotation": "12", - "waterlogged": "true" - }, - "id": 15965 + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 2741, "properties": { - "rotation": "12", - "waterlogged": "false" - }, - "id": 15966 + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 2742, "properties": { - "rotation": "13", - "waterlogged": "true" - }, - "id": 15967 + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 2743, "properties": { - "rotation": "13", - "waterlogged": "false" - }, - "id": 15968 + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 2744, "properties": { - "rotation": "14", - "waterlogged": "true" - }, - "id": 15969 + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 2745, "properties": { - "rotation": "14", - "waterlogged": "false" - }, - "id": 15970 + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 2746, "properties": { - "rotation": "15", - "waterlogged": "true" - }, - "id": 15971 + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 2747, "properties": { - "rotation": "15", - "waterlogged": "false" - }, - "id": 15972 - } - ] - }, - "minecraft:crimson_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, { + "id": 2748, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 15973 + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 2749, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 15974, - "default": true + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 2750, "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 15975 + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 2751, "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 15976 + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 2752, "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 15977 + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 2753, "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 15978 + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 2754, "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 15979 + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 2755, "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 15980 - } - ] - }, - "minecraft:warped_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, { + "id": 2756, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 15981 + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 2757, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 15982, - "default": true + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 2758, "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 15983 + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 2759, "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 15984 + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 2760, "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 15985 + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 2761, "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 15986 + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 2762, "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 15987 + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 2763, "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 15988 - } - ] - }, - "minecraft:structure_block": { - "properties": { - "mode": [ - "save", - "load", - "corner", - "data" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, { + "id": 2764, "properties": { - "mode": "save" - }, - "id": 15989 + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 2765, "properties": { - "mode": "load" - }, - "id": 15990, - "default": true + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 2766, "properties": { - "mode": "corner" - }, - "id": 15991 + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 2767, "properties": { - "mode": "data" - }, - "id": 15992 - } - ] - }, - "minecraft:jigsaw": { - "properties": { - "orientation": [ - "down_east", - "down_north", - "down_south", - "down_west", - "up_east", - "up_north", - "up_south", - "up_west", - "west_up", - "east_up", - "north_up", - "south_up" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, { + "id": 2768, "properties": { - "orientation": "down_east" - }, - "id": 15993 + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 2769, "properties": { - "orientation": "down_north" - }, - "id": 15994 + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 2770, "properties": { - "orientation": "down_south" - }, - "id": 15995 + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 2771, "properties": { - "orientation": "down_west" - }, - "id": 15996 + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 2772, "properties": { - "orientation": "up_east" - }, - "id": 15997 + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 2773, "properties": { - "orientation": "up_north" - }, - "id": 15998 + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 2774, "properties": { - "orientation": "up_south" - }, - "id": 15999 + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 2775, "properties": { - "orientation": "up_west" - }, - "id": 16000 + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 2776, "properties": { - "orientation": "west_up" - }, - "id": 16001 + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 2777, "properties": { - "orientation": "east_up" - }, - "id": 16002 + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 2778, "properties": { - "orientation": "north_up" - }, - "id": 16003, - "default": true + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 2779, "properties": { - "orientation": "south_up" - }, - "id": 16004 - } - ] - }, - "minecraft:composter": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, { + "id": 2780, "properties": { - "level": "0" - }, - "id": 16005, - "default": true + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 2781, "properties": { - "level": "1" - }, - "id": 16006 + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 2782, "properties": { - "level": "2" - }, - "id": 16007 + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 2783, "properties": { - "level": "3" - }, - "id": 16008 + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 2784, "properties": { - "level": "4" - }, - "id": 16009 + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 2785, "properties": { - "level": "5" - }, - "id": 16010 + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 2786, "properties": { - "level": "6" - }, - "id": 16011 + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 2787, "properties": { - "level": "7" - }, - "id": 16012 + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 2788, "properties": { - "level": "8" - }, - "id": 16013 - } - ] - }, - "minecraft:target": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, { + "id": 2789, "properties": { - "power": "0" - }, - "id": 16014, - "default": true + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 2790, "properties": { - "power": "1" - }, - "id": 16015 + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 2791, "properties": { - "power": "2" - }, - "id": 16016 + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 2792, "properties": { - "power": "3" - }, - "id": 16017 + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 2793, "properties": { - "power": "4" - }, - "id": 16018 + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 2794, "properties": { - "power": "5" - }, - "id": 16019 + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } }, { + "id": 2795, "properties": { - "power": "6" - }, - "id": 16020 + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } }, { + "id": 2796, "properties": { - "power": "7" - }, - "id": 16021 + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } }, { + "id": 2797, "properties": { - "power": "8" - }, - "id": 16022 + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } }, { + "id": 2798, "properties": { - "power": "9" - }, - "id": 16023 + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 2799, "properties": { - "power": "10" - }, - "id": 16024 + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 2800, "properties": { - "power": "11" - }, - "id": 16025 + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } }, { + "id": 2801, "properties": { - "power": "12" - }, - "id": 16026 + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 2802, "properties": { - "power": "13" - }, - "id": 16027 + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 2803, "properties": { - "power": "14" - }, - "id": 16028 + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } }, { + "id": 2804, "properties": { - "power": "15" - }, - "id": 16029 - } - ] - }, - "minecraft:bee_nest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, { + "id": 2805, "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 16030, - "default": true + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 2806, "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 16031 + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } }, { + "id": 2807, "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 16032 + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 2808, "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 16033 + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 2809, "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 16034 + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } }, { + "id": 2810, "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 16035 + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 2811, "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 16036 + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 2812, "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 16037 + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } }, { + "id": 2813, "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 16038 + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 2814, "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 16039 + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 2815, "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 16040 + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } }, { + "id": 2816, "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 16041 + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 2817, "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 16042 + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 2818, "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 16043 + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } }, { + "id": 2819, "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 16044 + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 2820, "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 16045 + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 2821, "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 16046 + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } }, { + "id": 2822, "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 16047 + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 2823, "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 16048 + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 2824, "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 16049 + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } }, { + "id": 2825, "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 16050 + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 2826, "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 16051 + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 2827, "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 16052 + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } }, { + "id": 2828, "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 16053 - } - ] - }, - "minecraft:beehive": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "honey_level": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, { + "id": 2829, "properties": { - "facing": "north", - "honey_level": "0" - }, - "id": 16054, - "default": true + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 2830, "properties": { - "facing": "north", - "honey_level": "1" - }, - "id": 16055 + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } }, { + "id": 2831, "properties": { - "facing": "north", - "honey_level": "2" - }, - "id": 16056 + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 2832, "properties": { - "facing": "north", - "honey_level": "3" - }, - "id": 16057 + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 2833, "properties": { - "facing": "north", - "honey_level": "4" - }, - "id": 16058 + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } }, { + "id": 2834, "properties": { - "facing": "north", - "honey_level": "5" - }, - "id": 16059 + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 2835, "properties": { - "facing": "south", - "honey_level": "0" - }, - "id": 16060 + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 2836, "properties": { - "facing": "south", - "honey_level": "1" - }, - "id": 16061 + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 2837, "properties": { - "facing": "south", - "honey_level": "2" - }, - "id": 16062 + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 2838, "properties": { - "facing": "south", - "honey_level": "3" - }, - "id": 16063 + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 2839, "properties": { - "facing": "south", - "honey_level": "4" - }, - "id": 16064 + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 2840, "properties": { - "facing": "south", - "honey_level": "5" - }, - "id": 16065 + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 2841, "properties": { - "facing": "west", - "honey_level": "0" - }, - "id": 16066 + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 2842, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } }, { + "id": 2843, "properties": { - "facing": "west", - "honey_level": "1" - }, - "id": 16067 + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 2844, "properties": { - "facing": "west", - "honey_level": "2" - }, - "id": 16068 + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 2845, "properties": { - "facing": "west", - "honey_level": "3" - }, - "id": 16069 + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 2846, "properties": { - "facing": "west", - "honey_level": "4" - }, - "id": 16070 + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 2847, "properties": { - "facing": "west", - "honey_level": "5" - }, - "id": 16071 + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 2848, "properties": { - "facing": "east", - "honey_level": "0" - }, - "id": 16072 + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } }, { + "id": 2849, "properties": { - "facing": "east", - "honey_level": "1" - }, - "id": 16073 + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 2850, "properties": { - "facing": "east", - "honey_level": "2" - }, - "id": 16074 + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 2851, "properties": { - "facing": "east", - "honey_level": "3" - }, - "id": 16075 + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 2852, "properties": { - "facing": "east", - "honey_level": "4" - }, - "id": 16076 + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 2853, "properties": { - "facing": "east", - "honey_level": "5" - }, - "id": 16077 - } - ] - }, - "minecraft:honey_block": { - "states": [ - { - "id": 16078, - "default": true - } - ] - }, - "minecraft:honeycomb_block": { - "states": [ - { - "id": 16079, - "default": true - } - ] - }, - "minecraft:netherite_block": { - "states": [ - { - "id": 16080, - "default": true - } - ] - }, - "minecraft:ancient_debris": { - "states": [ - { - "id": 16081, - "default": true - } - ] - }, - "minecraft:crying_obsidian": { - "states": [ - { - "id": 16082, - "default": true - } - ] - }, - "minecraft:respawn_anchor": { - "properties": { - "charges": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - "states": [ - { - "properties": { - "charges": "0" - }, - "id": 16083, - "default": true + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 2854, "properties": { - "charges": "1" - }, - "id": 16084 + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 2855, "properties": { - "charges": "2" - }, - "id": 16085 + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 2856, "properties": { - "charges": "3" - }, - "id": 16086 + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 2857, "properties": { - "charges": "4" - }, - "id": 16087 - } - ] - }, - "minecraft:potted_crimson_fungus": { - "states": [ - { - "id": 16088, - "default": true - } - ] - }, - "minecraft:potted_warped_fungus": { - "states": [ - { - "id": 16089, - "default": true - } - ] - }, - "minecraft:potted_crimson_roots": { - "states": [ - { - "id": 16090, - "default": true - } - ] - }, - "minecraft:potted_warped_roots": { - "states": [ - { - "id": 16091, - "default": true - } - ] - }, - "minecraft:lodestone": { - "states": [ - { - "id": 16092, - "default": true - } - ] - }, - "minecraft:blackstone": { - "states": [ - { - "id": 16093, - "default": true - } - ] - }, - "minecraft:blackstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, { + "id": 2858, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16094 + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 2859, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16095 + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 2860, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16096 + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 2861, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16097 + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 2862, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16098 + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 2863, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16099 + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 2864, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16100 + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 2865, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16101 + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 2866, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16102 + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 2867, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16103 + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 2868, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16104 + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 2869, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16105, - "default": true + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 2870, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16106 + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 2871, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16107 + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 2872, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16108 + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 2873, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16109 + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 2874, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16110 + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 2875, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16111 + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 2876, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16112 + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 2877, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16113 + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 2878, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16114 + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 2879, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16115 + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 2880, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16116 + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 2881, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16117 + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 2882, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16118 + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 2883, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16119 + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 2884, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16120 + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 2885, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16121 + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 2886, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16122 + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 2887, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16123 + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 2888, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16124 + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 2889, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16125 + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 2890, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16126 + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 2891, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16127 + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 2892, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16128 + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 2893, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16129 + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 2894, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16130 + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 2895, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16131 + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 2896, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16132 + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 2897, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16133 + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 2898, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16134 + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 2899, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16135 + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } }, { + "id": 2900, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16136 + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 2901, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16137 + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 2902, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16138 + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 2903, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16139 + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 2904, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16140 + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 2905, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16141 + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 2906, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16142 + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 2907, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16143 + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 2908, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16144 + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 2909, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16145 + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 2910, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16146 + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 2911, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16147 + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 2912, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16148 + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 2913, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16149 + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 2914, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16150 + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 2915, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16151 + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 2916, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16152 + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 2917, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16153 + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 2918, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16154 + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 2919, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16155 + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 2920, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16156 + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 2921, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16157 + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 2922, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16158 + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 2923, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16159 + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 2924, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16160 + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 2925, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16161 + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 2926, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16162 + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 2927, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16163 + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 2928, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16164 + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 2929, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16165 + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } }, { + "id": 2930, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16166 + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 2931, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16167 + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 2932, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16168 + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } }, { + "id": 2933, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16169 + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 2934, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16170 + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 2935, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16171 + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } }, { + "id": 2936, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16172 + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 2937, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16173 - } - ] - }, - "minecraft:blackstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, { + "id": 2938, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "5", + "south": "side", "west": "none" - }, - "id": 16174 + } }, { + "id": 2939, "properties": { - "east": "none", - "north": "none", + "east": "side", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16175 + "west": "up" + } }, { + "id": 2940, "properties": { - "east": "none", - "north": "none", + "east": "side", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16176 + "west": "side" + } }, { + "id": 2941, "properties": { - "east": "none", - "north": "none", + "east": "side", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16177, - "default": true + } }, { + "id": 2942, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16178 + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 2943, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16179 + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 2944, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "6", + "south": "up", "west": "none" - }, - "id": 16180 + } }, { + "id": 2945, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16181 + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 2946, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16182 + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 2947, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "6", + "south": "side", "west": "none" - }, - "id": 16183 + } }, { + "id": 2948, "properties": { - "east": "none", - "north": "none", + "east": "side", + "north": "side", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16184 + "west": "up" + } }, { + "id": 2949, "properties": { - "east": "none", - "north": "none", + "east": "side", + "north": "side", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16185 + "west": "side" + } }, { + "id": 2950, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "6", + "south": "none", "west": "none" - }, - "id": 16186 + } }, { + "id": 2951, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16187 + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 2952, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16188 + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 2953, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "7", + "south": "up", "west": "none" - }, - "id": 16189 + } }, { + "id": 2954, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16190 + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 2955, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16191 + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 2956, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "7", + "south": "side", "west": "none" - }, - "id": 16192 + } }, { + "id": 2957, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16193 + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 2958, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16194 + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 2959, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "7", + "south": "none", "west": "none" - }, - "id": 16195 + } }, { + "id": 2960, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16196 + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 2961, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16197 + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 2962, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "8", + "south": "up", "west": "none" - }, - "id": 16198 + } }, { + "id": 2963, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16199 + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 2964, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16200 + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 2965, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "8", + "south": "side", "west": "none" - }, - "id": 16201 + } }, { + "id": 2966, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16202 + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 2967, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16203 + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 2968, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "8", + "south": "none", "west": "none" - }, - "id": 16204 + } }, { + "id": 2969, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16205 + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 2970, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16206 + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 2971, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "9", + "south": "up", "west": "none" - }, - "id": 16207 + } }, { + "id": 2972, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16208 + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 2973, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16209 + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 2974, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "9", + "south": "side", "west": "none" - }, - "id": 16210 + } }, { + "id": 2975, "properties": { - "east": "none", - "north": "low", + "east": "side", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16211 + "west": "up" + } }, { + "id": 2976, "properties": { - "east": "none", - "north": "low", + "east": "side", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16212 + "west": "side" + } }, { + "id": 2977, "properties": { - "east": "none", - "north": "low", + "east": "side", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16213 + } }, { + "id": 2978, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16214 + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 2979, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16215 + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 2980, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "10", + "south": "up", "west": "none" - }, - "id": 16216 + } }, { + "id": 2981, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16217 + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 2982, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16218 + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 2983, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "10", + "south": "side", "west": "none" - }, - "id": 16219 + } }, { + "id": 2984, "properties": { - "east": "none", - "north": "low", + "east": "side", + "north": "side", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16220 + "west": "up" + } }, { + "id": 2985, "properties": { - "east": "none", - "north": "low", + "east": "side", + "north": "side", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16221 + "west": "side" + } }, { + "id": 2986, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "10", + "south": "none", "west": "none" - }, - "id": 16222 + } }, { + "id": 2987, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16223 + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 2988, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16224 + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 2989, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "11", + "south": "up", "west": "none" - }, - "id": 16225 + } }, { + "id": 2990, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16226 + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 2991, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16227 + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 2992, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "11", + "south": "side", "west": "none" - }, - "id": 16228 + } }, { + "id": 2993, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16229 + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 2994, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16230 + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 2995, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "11", + "south": "none", "west": "none" - }, - "id": 16231 + } }, { + "id": 2996, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16232 + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 2997, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16233 + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 2998, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "12", + "south": "up", "west": "none" - }, - "id": 16234 + } }, { + "id": 2999, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16235 + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3000, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16236 + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3001, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "12", + "south": "side", "west": "none" - }, - "id": 16237 + } }, { + "id": 3002, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16238 + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3003, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16239 + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3004, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "12", + "south": "none", "west": "none" - }, - "id": 16240 + } }, { + "id": 3005, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16241 + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3006, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16242 + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3007, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "13", + "south": "up", "west": "none" - }, - "id": 16243 + } }, { + "id": 3008, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16244 + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3009, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16245 + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3010, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "13", + "south": "side", "west": "none" - }, - "id": 16246 + } }, { + "id": 3011, "properties": { - "east": "none", - "north": "tall", + "east": "side", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16247 + "west": "up" + } }, { + "id": 3012, "properties": { - "east": "none", - "north": "tall", + "east": "side", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16248 + "west": "side" + } }, { + "id": 3013, "properties": { - "east": "none", - "north": "tall", + "east": "side", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16249 + } }, { + "id": 3014, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16250 + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3015, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16251 + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3016, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "14", + "south": "up", "west": "none" - }, - "id": 16252 + } }, { + "id": 3017, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16253 + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3018, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16254 + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3019, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "14", + "south": "side", "west": "none" - }, - "id": 16255 + } }, { + "id": 3020, "properties": { - "east": "none", - "north": "tall", + "east": "side", + "north": "side", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16256 + "west": "up" + } }, { + "id": 3021, "properties": { - "east": "none", - "north": "tall", + "east": "side", + "north": "side", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16257 + "west": "side" + } }, { + "id": 3022, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "14", + "south": "none", "west": "none" - }, - "id": 16258 + } }, { + "id": 3023, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16259 + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3024, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16260 + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3025, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "15", + "south": "up", "west": "none" - }, - "id": 16261 + } }, { + "id": 3026, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16262 + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3027, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16263 + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3028, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "side", + "power": "15", + "south": "side", "west": "none" - }, - "id": 16264 + } }, { + "id": 3029, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16265 + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3030, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16266 + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3031, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "side", + "power": "15", + "south": "none", "west": "none" - }, - "id": 16267 + } }, { + "id": 3032, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16268 + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 3033, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16269 + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 3034, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "0", + "south": "up", "west": "none" - }, - "id": 16270 + } }, { + "id": 3035, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16271 + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 3036, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16272 + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 3037, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "0", + "south": "side", "west": "none" - }, - "id": 16273 + } }, { + "id": 3038, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16274 + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 3039, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16275 + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 3040, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "0", + "south": "none", "west": "none" - }, - "id": 16276 + } }, { + "id": 3041, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16277 + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 3042, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16278 + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 3043, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "1", + "south": "up", "west": "none" - }, - "id": 16279 + } }, { + "id": 3044, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16280 + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 3045, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16281 + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 3046, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "power": "1", + "south": "side", "west": "none" - }, - "id": 16282 + } }, { + "id": 3047, "properties": { - "east": "low", + "east": "side", "north": "none", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16283 + "west": "up" + } }, { + "id": 3048, "properties": { - "east": "low", + "east": "side", "north": "none", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16284 + "west": "side" + } }, { + "id": 3049, "properties": { - "east": "low", + "east": "side", "north": "none", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16285 + } }, { + "id": 3050, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16286 + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 3051, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16287 + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 3052, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "power": "2", + "south": "up", "west": "none" - }, - "id": 16288 + } }, { + "id": 3053, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16289 + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 3054, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16290 + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 3055, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "power": "2", + "south": "side", "west": "none" - }, - "id": 16291 + } }, { + "id": 3056, "properties": { - "east": "low", + "east": "side", "north": "none", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16292 + "west": "up" + } }, { + "id": 3057, "properties": { - "east": "low", + "east": "side", "north": "none", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16293 + "west": "side" + } }, { + "id": 3058, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "power": "2", + "south": "none", "west": "none" - }, - "id": 16294 + } }, { + "id": 3059, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16295 + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 3060, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16296 + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 3061, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "power": "3", + "south": "up", "west": "none" - }, - "id": 16297 + } }, { + "id": 3062, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16298 + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 3063, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16299 + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 3064, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "power": "3", + "south": "side", "west": "none" - }, - "id": 16300 + } }, { + "id": 3065, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16301 + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 3066, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16302 + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 3067, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "power": "3", + "south": "none", "west": "none" - }, - "id": 16303 + } }, { + "id": 3068, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16304 + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 3069, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16305 + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 3070, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "power": "4", + "south": "up", "west": "none" - }, - "id": 16306 + } }, { + "id": 3071, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16307 + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 3072, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16308 + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 3073, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "power": "4", + "south": "side", "west": "none" - }, - "id": 16309 + } }, { + "id": 3074, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16310 + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 3075, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16311 + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 3076, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "power": "4", + "south": "none", "west": "none" - }, - "id": 16312 + } }, { + "id": 3077, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16313 + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 3078, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16314 + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 3079, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "power": "5", + "south": "up", "west": "none" - }, - "id": 16315 + } }, { + "id": 3080, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16316 + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 3081, "properties": { - "east": "low", + "east": "side", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16317 + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 3082, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "5", + "south": "side", "west": "none" - }, - "id": 16318 + } }, { + "id": 3083, "properties": { - "east": "low", - "north": "low", + "east": "side", + "north": "none", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16319 + "west": "up" + } }, { + "id": 3084, "properties": { - "east": "low", - "north": "low", + "east": "side", + "north": "none", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16320 + "west": "side" + } }, { + "id": 3085, "properties": { - "east": "low", - "north": "low", + "east": "side", + "north": "none", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16321 + } }, { + "id": 3086, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16322 + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 3087, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16323 + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 3088, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "6", + "south": "up", "west": "none" - }, - "id": 16324 + } }, { + "id": 3089, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16325 + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 3090, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16326 + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 3091, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "6", + "south": "side", "west": "none" - }, - "id": 16327 + } }, { + "id": 3092, "properties": { - "east": "low", - "north": "low", + "east": "side", + "north": "none", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16328 + "west": "up" + } }, { + "id": 3093, "properties": { - "east": "low", - "north": "low", + "east": "side", + "north": "none", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16329 + "west": "side" + } }, { + "id": 3094, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "6", + "south": "none", "west": "none" - }, - "id": 16330 + } }, { + "id": 3095, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16331 + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 3096, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16332 + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 3097, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "7", + "south": "up", "west": "none" - }, - "id": 16333 + } }, { + "id": 3098, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16334 + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 3099, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16335 + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 3100, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "7", + "south": "side", "west": "none" - }, - "id": 16336 + } }, { + "id": 3101, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16337 + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 3102, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16338 + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 3103, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "7", + "south": "none", "west": "none" - }, - "id": 16339 + } }, { + "id": 3104, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16340 + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 3105, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16341 + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 3106, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "8", + "south": "up", "west": "none" - }, - "id": 16342 + } }, { + "id": 3107, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16343 + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 3108, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16344 + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 3109, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "8", + "south": "side", "west": "none" - }, - "id": 16345 + } }, { + "id": 3110, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16346 + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 3111, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16347 + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 3112, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "8", + "south": "none", "west": "none" - }, - "id": 16348 + } }, { + "id": 3113, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16349 + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 3114, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16350 + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 3115, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "9", + "south": "up", "west": "none" - }, - "id": 16351 + } }, { + "id": 3116, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16352 + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 3117, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16353 + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 3118, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "9", + "south": "side", "west": "none" - }, - "id": 16354 + } }, { + "id": 3119, "properties": { - "east": "low", - "north": "tall", + "east": "side", + "north": "none", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16355 + "west": "up" + } }, { + "id": 3120, "properties": { - "east": "low", - "north": "tall", + "east": "side", + "north": "none", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16356 + "west": "side" + } }, { + "id": 3121, "properties": { - "east": "low", - "north": "tall", + "east": "side", + "north": "none", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16357 + } }, { + "id": 3122, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16358 + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 3123, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16359 + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 3124, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "10", + "south": "up", "west": "none" - }, - "id": 16360 + } }, { + "id": 3125, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16361 + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 3126, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16362 + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3127, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "10", + "south": "side", "west": "none" - }, - "id": 16363 + } }, { + "id": 3128, "properties": { - "east": "low", - "north": "tall", + "east": "side", + "north": "none", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16364 + "west": "up" + } }, { + "id": 3129, "properties": { - "east": "low", - "north": "tall", + "east": "side", + "north": "none", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16365 + "west": "side" + } }, { + "id": 3130, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "10", + "south": "none", "west": "none" - }, - "id": 16366 + } }, { + "id": 3131, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16367 + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3132, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16368 + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3133, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "11", + "south": "up", "west": "none" - }, - "id": 16369 + } }, { + "id": 3134, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16370 + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 3135, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16371 + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3136, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "11", + "south": "side", "west": "none" - }, - "id": 16372 + } }, { + "id": 3137, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16373 + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3138, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16374 + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3139, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "11", + "south": "none", "west": "none" - }, - "id": 16375 + } }, { + "id": 3140, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16376 + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3141, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16377 + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3142, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "12", + "south": "up", "west": "none" - }, - "id": 16378 + } }, { + "id": 3143, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16379 + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3144, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16380 + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3145, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "12", + "south": "side", "west": "none" - }, - "id": 16381 + } }, { + "id": 3146, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16382 + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3147, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16383 + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3148, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "side", + "north": "none", + "power": "12", + "south": "none", "west": "none" - }, - "id": 16384 + } }, { + "id": 3149, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16385 + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3150, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16386 + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3151, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "side", + "north": "none", + "power": "13", + "south": "up", "west": "none" - }, - "id": 16387 + } }, { + "id": 3152, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16388 + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3153, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16389 + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3154, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "power": "13", + "south": "side", "west": "none" - }, - "id": 16390 + } }, { + "id": 3155, "properties": { - "east": "tall", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16391 + "west": "up" + } }, { + "id": 3156, "properties": { - "east": "tall", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16392 + "west": "side" + } }, { + "id": 3157, "properties": { - "east": "tall", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16393 + } }, { + "id": 3158, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16394 + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3159, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16395 + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3160, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "power": "14", + "south": "up", "west": "none" - }, - "id": 16396 + } }, { + "id": 3161, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16397 + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3162, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16398 + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3163, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "power": "14", + "south": "side", "west": "none" - }, - "id": 16399 + } }, { + "id": 3164, "properties": { - "east": "tall", + "east": "side", "north": "none", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16400 + "west": "up" + } }, { + "id": 3165, "properties": { - "east": "tall", + "east": "side", "north": "none", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16401 + "west": "side" + } }, { + "id": 3166, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "power": "14", + "south": "none", "west": "none" - }, - "id": 16402 + } }, { + "id": 3167, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16403 + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3168, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16404 + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3169, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "power": "15", + "south": "up", "west": "none" - }, - "id": 16405 + } }, { + "id": 3170, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16406 + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3171, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16407 + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3172, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "power": "15", + "south": "side", "west": "none" - }, - "id": 16408 + } }, { + "id": 3173, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16409 + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3174, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16410 + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3175, "properties": { - "east": "tall", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "power": "15", + "south": "none", "west": "none" - }, - "id": 16411 + } }, { + "id": 3176, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16412 + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 3177, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16413 + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 3178, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "0", + "south": "up", "west": "none" - }, - "id": 16414 + } }, { + "id": 3179, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16415 + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 3180, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16416 + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 3181, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "0", + "south": "side", "west": "none" - }, - "id": 16417 + } }, { + "id": 3182, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16418 + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 3183, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16419 + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 3184, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "0", + "south": "none", "west": "none" - }, - "id": 16420 + } }, { + "id": 3185, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16421 + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 3186, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16422 + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 3187, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "1", + "south": "up", "west": "none" - }, - "id": 16423 + } }, { + "id": 3188, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16424 + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 3189, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16425 + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 3190, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "1", + "south": "side", "west": "none" - }, - "id": 16426 + } }, { + "id": 3191, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16427 + "west": "up" + } }, { + "id": 3192, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16428 + "west": "side" + } }, { + "id": 3193, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16429 + } }, { + "id": 3194, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16430 + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 3195, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16431 + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 3196, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "2", + "south": "up", "west": "none" - }, - "id": 16432 + } }, { + "id": 3197, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16433 + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 3198, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16434 + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 3199, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "2", + "south": "side", "west": "none" - }, - "id": 16435 + } }, { + "id": 3200, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "up", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16436 + "west": "up" + } }, { + "id": 3201, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "up", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16437 + "west": "side" + } }, { + "id": 3202, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "2", + "south": "none", "west": "none" - }, - "id": 16438 + } }, { + "id": 3203, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16439 + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 3204, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16440 + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 3205, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "3", + "south": "up", "west": "none" - }, - "id": 16441 + } }, { + "id": 3206, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16442 + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 3207, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16443 + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 3208, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "3", + "south": "side", "west": "none" - }, - "id": 16444 + } }, { + "id": 3209, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16445 + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 3210, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16446 + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 3211, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "3", + "south": "none", "west": "none" - }, - "id": 16447 + } }, { + "id": 3212, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16448 + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 3213, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16449 + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 3214, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "4", + "south": "up", "west": "none" - }, - "id": 16450 + } }, { + "id": 3215, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16451 + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 3216, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16452 + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 3217, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "4", + "south": "side", "west": "none" - }, - "id": 16453 + } }, { + "id": 3218, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16454 + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 3219, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16455 + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 3220, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "4", + "south": "none", "west": "none" - }, - "id": 16456 + } }, { + "id": 3221, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16457 + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 3222, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16458 + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 3223, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "5", + "south": "up", "west": "none" - }, - "id": 16459 + } }, { + "id": 3224, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16460 + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 3225, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16461 + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 3226, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "5", + "south": "side", "west": "none" - }, - "id": 16462 + } }, { + "id": 3227, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16463 + "west": "up" + } }, { + "id": 3228, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16464 + "west": "side" + } }, { + "id": 3229, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16465 + } }, { + "id": 3230, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16466 + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 3231, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16467 + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 3232, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "6", + "south": "up", "west": "none" - }, - "id": 16468 + } }, { + "id": 3233, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3234, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3235, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3236, + "properties": { + "east": "none", + "north": "up", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16469 + "west": "up" + } }, { + "id": 3237, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16470 + "west": "side" + } }, { + "id": 3238, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "up", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", "west": "none" - }, - "id": 16471 + } }, { + "id": 3239, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16472 + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 3240, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16473 + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 3241, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "7", + "south": "up", "west": "none" - }, - "id": 16474 + } }, { + "id": 3242, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16475 + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 3243, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16476 + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 3244, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "7", + "south": "side", "west": "none" - }, - "id": 16477 + } }, { + "id": 3245, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16478 + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 3246, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16479 + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 3247, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "7", + "south": "none", "west": "none" - }, - "id": 16480 + } }, { + "id": 3248, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16481 + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 3249, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16482 + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 3250, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "8", + "south": "up", "west": "none" - }, - "id": 16483 + } }, { + "id": 3251, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16484 + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 3252, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16485 + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 3253, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "8", + "south": "side", "west": "none" - }, - "id": 16486 + } }, { + "id": 3254, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16487 + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 3255, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16488 + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 3256, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3257, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3258, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3259, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", "west": "none" - }, - "id": 16489 + } }, { + "id": 3260, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16490 + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 3261, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16491 + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 3262, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "9", + "south": "side", "west": "none" - }, - "id": 16492 + } }, { + "id": 3263, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16493 + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } }, { + "id": 3264, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16494 + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } }, { + "id": 3265, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "9", + "south": "none", "west": "none" - }, - "id": 16495 + } }, { + "id": 3266, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16496 + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 3267, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16497 - } - ] - }, - "minecraft:blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, { + "id": 3268, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16498 + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } }, { + "id": 3269, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 16499 + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 3270, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 16500 + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3271, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 16501, - "default": true + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } }, { + "id": 3272, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 16502 + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 3273, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 16503 - } - ] - }, - "minecraft:polished_blackstone": { - "states": [ - { - "id": 16504, - "default": true - } - ] - }, - "minecraft:polished_blackstone_bricks": { - "states": [ - { - "id": 16505, - "default": true - } - ] - }, - "minecraft:cracked_polished_blackstone_bricks": { - "states": [ - { - "id": 16506, - "default": true - } - ] - }, - "minecraft:chiseled_polished_blackstone": { - "states": [ + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, { - "id": 16507, - "default": true - } - ] - }, - "minecraft:polished_blackstone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 3274, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, { + "id": 3275, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16508 + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3276, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 16509 + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3277, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 16510 + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } }, { + "id": 3278, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 16511, - "default": true + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 3279, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 16512 + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3280, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 16513 - } - ] - }, - "minecraft:polished_blackstone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, { + "id": 3281, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16514 + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3282, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16515 + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3283, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16516 + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } }, { + "id": 3284, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16517 + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3285, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16518 + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3286, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16519 + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } }, { + "id": 3287, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16520 + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3288, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16521 + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3289, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16522 + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } }, { + "id": 3290, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16523 + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3291, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16524 + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3292, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16525, - "default": true + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } }, { + "id": 3293, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16526 + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3294, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16527 + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3295, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16528 + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } }, { + "id": 3296, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16529 + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3297, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16530 + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3298, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16531 + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } }, { + "id": 3299, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16532 + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } }, { + "id": 3300, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16533 + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } }, { + "id": 3301, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16534 + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } }, { + "id": 3302, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16535 + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3303, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16536 + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3304, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16537 + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } }, { + "id": 3305, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16538 + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3306, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16539 + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3307, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16540 + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } }, { + "id": 3308, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16541 + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 3309, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16542 + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 3310, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16543 + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } }, { + "id": 3311, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16544 + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3312, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16545 + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3313, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16546 + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } }, { + "id": 3314, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16547 + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3315, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16548 + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3316, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16549 + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } }, { + "id": 3317, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16550 + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3318, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16551 + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3319, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16552 + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } }, { + "id": 3320, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16553 + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 3321, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16554 + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 3322, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16555 + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } }, { + "id": 3323, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16556 + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 3324, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16557 + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 3325, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16558 + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } }, { + "id": 3326, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16559 + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } }, { + "id": 3327, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16560 + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } }, { + "id": 3328, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16561 + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } }, { + "id": 3329, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16562 + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 3330, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16563 + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 3331, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16564 + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } }, { + "id": 3332, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16565 + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } }, { + "id": 3333, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16566 + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } }, { + "id": 3334, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16567 + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } }, { + "id": 3335, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16568 + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } }, { + "id": 3336, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16569 + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } }, { + "id": 3337, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16570 + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } }, { + "id": 3338, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16571 + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 3339, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16572 + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 3340, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16573 + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } }, { + "id": 3341, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16574 + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 3342, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16575 + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 3343, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16576 + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } }, { + "id": 3344, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16577 + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 3345, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16578 + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 3346, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16579 + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } }, { + "id": 3347, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16580 + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 3348, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16581 + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 3349, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16582 + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } }, { + "id": 3350, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16583 + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 3351, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 16584 + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 3352, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 16585 + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } }, { + "id": 3353, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 16586 + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 3354, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 16587 + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 3355, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 16588 + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } }, { + "id": 3356, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 16589 + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 3357, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 16590 + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 3358, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 16591 + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } }, { + "id": 3359, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 16592 + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 3360, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 16593 - } - ] - }, - "minecraft:polished_blackstone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, { + "id": 3361, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "4", + "south": "side", "west": "none" - }, - "id": 16594 + } }, { + "id": 3362, "properties": { "east": "none", - "north": "none", + "north": "side", + "power": "4", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16595 + "west": "up" + } }, { + "id": 3363, "properties": { "east": "none", - "north": "none", + "north": "side", + "power": "4", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16596 + "west": "side" + } }, { + "id": 3364, "properties": { "east": "none", - "north": "none", + "north": "side", + "power": "4", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16597, - "default": true + } }, { + "id": 3365, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16598 + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 3366, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16599 + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 3367, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "5", + "south": "up", "west": "none" - }, - "id": 16600 + } }, { + "id": 3368, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16601 + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 3369, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16602 + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 3370, "properties": { "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "5", + "south": "side", "west": "none" - }, - "id": 16603 + } }, { + "id": 3371, "properties": { "east": "none", - "north": "none", + "north": "side", + "power": "5", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16604 + "west": "up" + } }, { + "id": 3372, "properties": { "east": "none", - "north": "none", + "north": "side", + "power": "5", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16605 + "west": "side" + } }, { + "id": 3373, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "5", + "south": "none", "west": "none" - }, - "id": 16606 + } }, { + "id": 3374, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16607 + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 3375, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16608 + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 3376, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "6", + "south": "up", "west": "none" - }, - "id": 16609 + } }, { + "id": 3377, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16610 + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 3378, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16611 + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 3379, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "6", + "south": "side", "west": "none" - }, - "id": 16612 + } }, { + "id": 3380, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16613 + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 3381, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16614 + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 3382, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "6", + "south": "none", "west": "none" - }, - "id": 16615 + } }, { + "id": 3383, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16616 + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 3384, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16617 + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 3385, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "7", + "south": "up", "west": "none" - }, - "id": 16618 + } }, { + "id": 3386, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16619 + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 3387, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16620 + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 3388, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "7", + "south": "side", "west": "none" - }, - "id": 16621 + } }, { + "id": 3389, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16622 + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 3390, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16623 + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 3391, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "7", + "south": "none", "west": "none" - }, - "id": 16624 + } }, { + "id": 3392, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16625 + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 3393, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16626 + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 3394, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "8", + "south": "up", "west": "none" - }, - "id": 16627 + } }, { + "id": 3395, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16628 + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 3396, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16629 + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 3397, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "8", + "south": "side", "west": "none" - }, - "id": 16630 + } }, { + "id": 3398, "properties": { "east": "none", - "north": "low", + "north": "side", + "power": "8", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16631 + "west": "up" + } }, { + "id": 3399, "properties": { "east": "none", - "north": "low", + "north": "side", + "power": "8", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16632 + "west": "side" + } }, { + "id": 3400, "properties": { "east": "none", - "north": "low", + "north": "side", + "power": "8", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16633 + } }, { + "id": 3401, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16634 + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 3402, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16635 + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 3403, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "9", + "south": "up", "west": "none" - }, - "id": 16636 + } }, { + "id": 3404, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16637 + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 3405, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16638 + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 3406, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "9", + "south": "side", "west": "none" - }, - "id": 16639 + } }, { + "id": 3407, "properties": { "east": "none", - "north": "low", + "north": "side", + "power": "9", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16640 + "west": "up" + } }, { + "id": 3408, "properties": { "east": "none", - "north": "low", + "north": "side", + "power": "9", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16641 + "west": "side" + } }, { + "id": 3409, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "9", + "south": "none", "west": "none" - }, - "id": 16642 + } }, { + "id": 3410, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16643 + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 3411, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16644 + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 3412, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "10", + "south": "up", "west": "none" - }, - "id": 16645 + } }, { + "id": 3413, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16646 + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 3414, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16647 + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3415, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "10", + "south": "side", "west": "none" - }, - "id": 16648 + } }, { + "id": 3416, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16649 + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 3417, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16650 + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 3418, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "10", + "south": "none", "west": "none" - }, - "id": 16651 + } }, { + "id": 3419, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16652 + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3420, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16653 + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3421, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "11", + "south": "up", "west": "none" - }, - "id": 16654 + } }, { + "id": 3422, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16655 + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 3423, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16656 + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3424, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "11", + "south": "side", "west": "none" - }, - "id": 16657 + } }, { + "id": 3425, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16658 + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3426, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16659 + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3427, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "11", + "south": "none", "west": "none" - }, - "id": 16660 + } }, { + "id": 3428, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16661 + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3429, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16662 + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3430, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "12", + "south": "up", "west": "none" - }, - "id": 16663 + } }, { + "id": 3431, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16664 + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3432, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16665 + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3433, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "12", + "south": "side", "west": "none" - }, - "id": 16666 + } }, { + "id": 3434, "properties": { "east": "none", - "north": "tall", + "north": "side", + "power": "12", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16667 + "west": "up" + } }, { + "id": 3435, "properties": { "east": "none", - "north": "tall", + "north": "side", + "power": "12", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16668 + "west": "side" + } }, { + "id": 3436, "properties": { "east": "none", - "north": "tall", + "north": "side", + "power": "12", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16669 + } }, { + "id": 3437, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16670 + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3438, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16671 + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3439, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "13", + "south": "up", "west": "none" - }, - "id": 16672 + } }, { + "id": 3440, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16673 + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3441, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16674 + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3442, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "13", + "south": "side", "west": "none" - }, - "id": 16675 + } }, { + "id": 3443, "properties": { "east": "none", - "north": "tall", + "north": "side", + "power": "13", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16676 + "west": "up" + } }, { + "id": 3444, "properties": { "east": "none", - "north": "tall", + "north": "side", + "power": "13", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16677 + "west": "side" + } }, { + "id": 3445, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "13", + "south": "none", "west": "none" - }, - "id": 16678 + } }, { + "id": 3446, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16679 + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3447, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16680 + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3448, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "14", + "south": "up", "west": "none" - }, - "id": 16681 + } }, { + "id": 3449, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16682 + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3450, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16683 + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3451, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "14", + "south": "side", "west": "none" - }, - "id": 16684 + } }, { + "id": 3452, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16685 + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 3453, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16686 + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 3454, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "north": "side", + "power": "14", + "south": "none", "west": "none" - }, - "id": 16687 + } }, { + "id": 3455, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16688 + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3456, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16689 + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3457, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "side", + "power": "15", + "south": "up", "west": "none" - }, - "id": 16690 + } }, { + "id": 3458, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16691 + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3459, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16692 + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3460, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "side", + "power": "15", + "south": "side", "west": "none" - }, - "id": 16693 + } }, { + "id": 3461, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16694 + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3462, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16695 + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3463, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "side", + "power": "15", + "south": "none", "west": "none" - }, - "id": 16696 + } }, { + "id": 3464, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16697 + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } }, { + "id": 3465, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16698 + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } }, { + "id": 3466, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "none", + "power": "0", + "south": "up", "west": "none" - }, - "id": 16699 + } }, { + "id": 3467, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16700 + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } }, { + "id": 3468, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16701 + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } }, { + "id": 3469, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "power": "0", + "south": "side", "west": "none" - }, - "id": 16702 + } }, { + "id": 3470, "properties": { - "east": "low", + "east": "none", "north": "none", + "power": "0", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16703 + "west": "up" + } }, { + "id": 3471, "properties": { - "east": "low", + "east": "none", "north": "none", + "power": "0", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16704 + "west": "side" + } }, { + "default": true, + "id": 3472, "properties": { - "east": "low", + "east": "none", "north": "none", + "power": "0", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" - }, - "id": 16705 + } }, { + "id": 3473, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16706 + "power": "1", + "south": "up", + "west": "up" + } }, { + "id": 3474, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16707 + "power": "1", + "south": "up", + "west": "side" + } }, { + "id": 3475, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "power": "1", + "south": "up", "west": "none" - }, - "id": 16708 + } }, { + "id": 3476, "properties": { - "east": "low", + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3477, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3478, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3479, + "properties": { + "east": "none", "north": "none", + "power": "1", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16709 + "west": "up" + } }, { + "id": 3480, "properties": { - "east": "low", + "east": "none", "north": "none", + "power": "1", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16710 + "west": "side" + } }, { + "id": 3481, "properties": { - "east": "low", + "east": "none", "north": "none", + "power": "1", "south": "none", - "up": "false", - "waterlogged": "false", "west": "none" - }, - "id": 16711 + } }, { + "id": 3482, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16712 + "power": "2", + "south": "up", + "west": "up" + } }, { + "id": 3483, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16713 + "power": "2", + "south": "up", + "west": "side" + } }, { + "id": 3484, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "power": "2", + "south": "up", "west": "none" - }, - "id": 16714 + } }, { + "id": 3485, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16715 + "power": "2", + "south": "side", + "west": "up" + } }, { + "id": 3486, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16716 + "power": "2", + "south": "side", + "west": "side" + } }, { + "id": 3487, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "power": "2", + "south": "side", "west": "none" - }, - "id": 16717 + } }, { + "id": 3488, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16718 + "power": "2", + "south": "none", + "west": "up" + } }, { + "id": 3489, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16719 + "power": "2", + "south": "none", + "west": "side" + } }, { + "id": 3490, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "power": "2", + "south": "none", "west": "none" - }, - "id": 16720 + } }, { + "id": 3491, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16721 + "power": "3", + "south": "up", + "west": "up" + } }, { + "id": 3492, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16722 + "power": "3", + "south": "up", + "west": "side" + } }, { + "id": 3493, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "power": "3", + "south": "up", "west": "none" - }, - "id": 16723 + } }, { + "id": 3494, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16724 + "power": "3", + "south": "side", + "west": "up" + } }, { + "id": 3495, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16725 + "power": "3", + "south": "side", + "west": "side" + } }, { + "id": 3496, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "power": "3", + "south": "side", "west": "none" - }, - "id": 16726 + } }, { + "id": 3497, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16727 + "power": "3", + "south": "none", + "west": "up" + } }, { + "id": 3498, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16728 + "power": "3", + "south": "none", + "west": "side" + } }, { + "id": 3499, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "power": "3", + "south": "none", "west": "none" - }, - "id": 16729 + } }, { + "id": 3500, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16730 + "power": "4", + "south": "up", + "west": "up" + } }, { + "id": 3501, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16731 + "power": "4", + "south": "up", + "west": "side" + } }, { + "id": 3502, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "power": "4", + "south": "up", "west": "none" - }, - "id": 16732 + } }, { + "id": 3503, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16733 + "power": "4", + "south": "side", + "west": "up" + } }, { + "id": 3504, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16734 + "power": "4", + "south": "side", + "west": "side" + } }, { + "id": 3505, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "power": "4", + "south": "side", "west": "none" - }, - "id": 16735 + } }, { + "id": 3506, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16736 + "power": "4", + "south": "none", + "west": "up" + } }, { + "id": 3507, "properties": { - "east": "low", + "east": "none", "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16737 + "power": "4", + "south": "none", + "west": "side" + } }, { + "id": 3508, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "none", + "power": "4", "south": "none", - "up": "true", - "waterlogged": "true", "west": "none" - }, - "id": 16738 + } }, { + "id": 3509, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16739 + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } }, { + "id": 3510, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16740 + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } }, { + "id": 3511, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "5", + "south": "up", "west": "none" - }, - "id": 16741 + } }, { + "id": 3512, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16742 + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } }, { + "id": 3513, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16743 + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } }, { + "id": 3514, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "5", + "south": "side", "west": "none" - }, - "id": 16744 + } }, { + "id": 3515, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "none", + "power": "5", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16745 + "west": "up" + } }, { + "id": 3516, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "none", + "power": "5", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16746 + "west": "side" + } }, { + "id": 3517, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "none", + "power": "5", "south": "none", - "up": "false", - "waterlogged": "false", "west": "none" - }, - "id": 16747 + } }, { + "id": 3518, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16748 + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } }, { + "id": 3519, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16749 + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } }, { + "id": 3520, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "6", + "south": "up", "west": "none" - }, - "id": 16750 + } }, { + "id": 3521, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16751 + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } }, { + "id": 3522, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16752 + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } }, { + "id": 3523, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "6", + "south": "side", "west": "none" - }, - "id": 16753 + } }, { + "id": 3524, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16754 + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } }, { + "id": 3525, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16755 + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } }, { + "id": 3526, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "6", + "south": "none", "west": "none" - }, - "id": 16756 + } }, { + "id": 3527, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16757 + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } }, { + "id": 3528, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16758 + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } }, { + "id": 3529, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "7", + "south": "up", "west": "none" - }, - "id": 16759 + } }, { + "id": 3530, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16760 + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } }, { + "id": 3531, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16761 + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } }, { + "id": 3532, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "7", + "south": "side", "west": "none" - }, - "id": 16762 + } }, { + "id": 3533, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16763 + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } }, { + "id": 3534, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16764 + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } }, { + "id": 3535, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "7", + "south": "none", "west": "none" - }, - "id": 16765 + } }, { + "id": 3536, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16766 + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } }, { + "id": 3537, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16767 + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } }, { + "id": 3538, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "8", + "south": "up", "west": "none" - }, - "id": 16768 + } }, { + "id": 3539, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16769 + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } }, { + "id": 3540, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16770 + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } }, { + "id": 3541, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "8", + "south": "side", "west": "none" - }, - "id": 16771 + } }, { + "id": 3542, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16772 + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } }, { + "id": 3543, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16773 + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } }, { + "id": 3544, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", + "power": "8", "south": "none", - "up": "true", - "waterlogged": "true", "west": "none" - }, - "id": 16774 + } }, { + "id": 3545, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16775 + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } }, { + "id": 3546, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16776 + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } }, { + "id": 3547, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "9", + "south": "up", "west": "none" - }, - "id": 16777 + } }, { + "id": 3548, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16778 + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } }, { + "id": 3549, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16779 + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } }, { + "id": 3550, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "9", + "south": "side", "west": "none" - }, - "id": 16780 + } }, { + "id": 3551, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", + "power": "9", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16781 + "west": "up" + } }, { + "id": 3552, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", + "power": "9", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16782 + "west": "side" + } }, { + "id": 3553, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", + "power": "9", "south": "none", - "up": "false", - "waterlogged": "false", "west": "none" - }, - "id": 16783 + } }, { + "id": 3554, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16784 + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } }, { + "id": 3555, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16785 + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } }, { + "id": 3556, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "10", + "south": "up", "west": "none" - }, - "id": 16786 + } }, { + "id": 3557, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16787 + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } }, { + "id": 3558, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16788 + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } }, { + "id": 3559, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "10", + "south": "side", "west": "none" - }, - "id": 16789 + } }, { + "id": 3560, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16790 + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } }, { + "id": 3561, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16791 + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } }, { + "id": 3562, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "10", + "south": "none", "west": "none" - }, - "id": 16792 + } }, { + "id": 3563, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16793 + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } }, { + "id": 3564, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16794 + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } }, { + "id": 3565, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "11", + "south": "up", "west": "none" - }, - "id": 16795 + } }, { + "id": 3566, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16796 + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } }, { + "id": 3567, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16797 + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } }, { + "id": 3568, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "11", + "south": "side", "west": "none" - }, - "id": 16798 + } }, { + "id": 3569, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16799 + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } }, { + "id": 3570, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16800 + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } }, { + "id": 3571, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "11", + "south": "none", "west": "none" - }, - "id": 16801 + } }, { + "id": 3572, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16802 + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } }, { + "id": 3573, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16803 + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } }, { + "id": 3574, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "12", + "south": "up", "west": "none" - }, - "id": 16804 + } }, { + "id": 3575, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16805 + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } }, { + "id": 3576, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16806 + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } }, { + "id": 3577, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "12", + "south": "side", "west": "none" - }, - "id": 16807 + } }, { + "id": 3578, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16808 + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } }, { + "id": 3579, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16809 + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } }, { + "id": 3580, "properties": { - "east": "tall", + "east": "none", "north": "none", + "power": "12", "south": "none", - "up": "true", - "waterlogged": "true", "west": "none" - }, - "id": 16810 + } }, { + "id": 3581, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16811 + "power": "13", + "south": "up", + "west": "up" + } }, { + "id": 3582, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16812 + "power": "13", + "south": "up", + "west": "side" + } }, { + "id": 3583, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", + "power": "13", + "south": "up", "west": "none" - }, - "id": 16813 + } }, { + "id": 3584, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16814 + "power": "13", + "south": "side", + "west": "up" + } }, { + "id": 3585, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16815 + "power": "13", + "south": "side", + "west": "side" + } }, { + "id": 3586, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "power": "13", + "south": "side", "west": "none" - }, - "id": 16816 + } }, { + "id": 3587, "properties": { - "east": "tall", + "east": "none", "north": "none", + "power": "13", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16817 + "west": "up" + } }, { + "id": 3588, "properties": { - "east": "tall", + "east": "none", "north": "none", + "power": "13", "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16818 + "west": "side" + } }, { + "id": 3589, "properties": { - "east": "tall", + "east": "none", "north": "none", + "power": "13", "south": "none", - "up": "false", - "waterlogged": "false", "west": "none" - }, - "id": 16819 + } }, { + "id": 3590, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16820 + "power": "14", + "south": "up", + "west": "up" + } }, { + "id": 3591, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16821 + "power": "14", + "south": "up", + "west": "side" + } }, { + "id": 3592, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "power": "14", + "south": "up", "west": "none" - }, - "id": 16822 + } }, { + "id": 3593, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16823 + "power": "14", + "south": "side", + "west": "up" + } }, { + "id": 3594, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16824 + "power": "14", + "south": "side", + "west": "side" + } }, { + "id": 3595, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "power": "14", + "south": "side", "west": "none" - }, - "id": 16825 + } }, { + "id": 3596, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16826 + "power": "14", + "south": "none", + "west": "up" + } }, { + "id": 3597, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16827 + "power": "14", + "south": "none", + "west": "side" + } }, { + "id": 3598, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "power": "14", + "south": "none", "west": "none" - }, - "id": 16828 + } }, { + "id": 3599, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16829 + "power": "15", + "south": "up", + "west": "up" + } }, { + "id": 3600, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16830 + "power": "15", + "south": "up", + "west": "side" + } }, { + "id": 3601, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "power": "15", + "south": "up", "west": "none" - }, - "id": 16831 + } }, { + "id": 3602, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16832 + "power": "15", + "south": "side", + "west": "up" + } }, { + "id": 3603, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16833 + "power": "15", + "south": "side", + "west": "side" + } }, { + "id": 3604, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "power": "15", + "south": "side", "west": "none" - }, - "id": 16834 + } }, { + "id": 3605, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16835 + "power": "15", + "south": "none", + "west": "up" + } }, { + "id": 3606, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16836 + "power": "15", + "south": "none", + "west": "side" + } }, { + "id": 3607, "properties": { - "east": "tall", + "east": "none", "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "power": "15", + "south": "none", "west": "none" - }, - "id": 16837 - }, + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "states": [ + { + "default": true, + "id": 21447 + } + ] + }, + "minecraft:repeater": { + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4340, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16838 + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } }, { + "id": 4341, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16839 + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } }, { + "id": 4342, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16840 + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } }, { + "default": true, + "id": 4343, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16841 + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } }, { + "id": 4344, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16842 + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } }, { + "id": 4345, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16843 + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } }, { + "id": 4346, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16844 + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } }, { + "id": 4347, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16845 + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } }, { + "id": 4348, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16846 + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } }, { + "id": 4349, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16847 + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } }, { + "id": 4350, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16848 + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } }, { + "id": 4351, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16849 + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } }, { + "id": 4352, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16850 + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } }, { + "id": 4353, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16851 + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } }, { + "id": 4354, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16852 + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } }, { + "id": 4355, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16853 + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } }, { + "id": 4356, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16854 + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } }, { + "id": 4357, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16855 + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } }, { + "id": 4358, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16856 + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } }, { + "id": 4359, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16857 + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } }, { + "id": 4360, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16858 + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } }, { + "id": 4361, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16859 + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } }, { + "id": 4362, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16860 + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } }, { + "id": 4363, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16861 + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } }, { + "id": 4364, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16862 + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } }, { + "id": 4365, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16863 + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } }, { + "id": 4366, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16864 + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } }, { + "id": 4367, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16865 + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } }, { + "id": 4368, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16866 + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } }, { + "id": 4369, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16867 + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } }, { + "id": 4370, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16868 + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } }, { + "id": 4371, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16869 + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } }, { + "id": 4372, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16870 + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } }, { + "id": 4373, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16871 + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } }, { + "id": 4374, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16872 + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } }, { + "id": 4375, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16873 + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } }, { + "id": 4376, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16874 + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } }, { + "id": 4377, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16875 + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } }, { + "id": 4378, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16876 + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } }, { + "id": 4379, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16877 + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } }, { + "id": 4380, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16878 + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } }, { + "id": 4381, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16879 + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } }, { + "id": 4382, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16880 + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } }, { + "id": 4383, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16881 + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } }, { + "id": 4384, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16882 + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } }, { + "id": 4385, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16883 + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } }, { + "id": 4386, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16884 + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } }, { + "id": 4387, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16885 + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } }, { + "id": 4388, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16886 + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } }, { + "id": 4389, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16887 + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } }, { + "id": 4390, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16888 + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } }, { + "id": 4391, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16889 + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } }, { + "id": 4392, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16890 + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } }, { + "id": 4393, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16891 + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } }, { + "id": 4394, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16892 + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } }, { + "id": 4395, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16893 + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } }, { + "id": 4396, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16894 + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } }, { + "id": 4397, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16895 + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } }, { + "id": 4398, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16896 + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } }, { + "id": 4399, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16897 + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } }, { + "id": 4400, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16898 + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } }, { + "id": 4401, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16899 + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } }, { + "id": 4402, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16900 + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } }, { + "id": 4403, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16901 + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10106, + "properties": { + "conditional": "true", + "facing": "north" + } }, { + "id": 10107, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16902 + "conditional": "true", + "facing": "east" + } }, { + "id": 10108, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16903 + "conditional": "true", + "facing": "south" + } }, { + "id": 10109, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16904 + "conditional": "true", + "facing": "west" + } }, { + "id": 10110, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16905 + "conditional": "true", + "facing": "up" + } }, { + "id": 10111, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 16906 + "conditional": "true", + "facing": "down" + } }, { + "default": true, + "id": 10112, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 16907 + "conditional": "false", + "facing": "north" + } }, { + "id": 10113, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 16908 + "conditional": "false", + "facing": "east" + } }, { + "id": 10114, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 16909 + "conditional": "false", + "facing": "south" + } }, { + "id": 10115, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 16910 + "conditional": "false", + "facing": "west" + } }, { + "id": 10116, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 16911 + "conditional": "false", + "facing": "up" + } }, { + "id": 10117, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 16912 + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:respawn_anchor": { + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 17038, + "properties": { + "charges": "0" + } }, { + "id": 17039, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 16913 + "charges": "1" + } }, { + "id": 17040, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 16914 + "charges": "2" + } }, { + "id": 17041, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 16915 + "charges": "3" + } }, { + "id": 17042, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 16916 + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "states": [ + { + "default": true, + "id": 19776 + } + ] + }, + "minecraft:rose_bush": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 8630, + "properties": { + "half": "upper" + } }, { + "default": true, + "id": 8631, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 16917 + "half": "lower" + } } ] }, - "minecraft:gilded_blackstone": { + "minecraft:sand": { "states": [ { - "id": 16918, - "default": true + "default": true, + "id": 107 } ] }, - "minecraft:polished_blackstone_stairs": { + "minecraft:sandstone": { + "states": [ + { + "default": true, + "id": 476 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9095, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9096, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9097, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9098, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9099, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9100, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { "properties": { "facing": [ "north", @@ -169874,1024 +181817,729 @@ }, "states": [ { + "id": 5761, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 16919 + } }, { + "id": 5762, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 16920 + } }, { + "id": 5763, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16921 + } }, { + "id": 5764, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16922 + } }, { + "id": 5765, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16923 + } }, { + "id": 5766, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16924 + } }, { + "id": 5767, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16925 + } }, { + "id": 5768, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16926 + } }, { + "id": 5769, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16927 + } }, { + "id": 5770, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16928 + } }, { + "id": 5771, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 16929 + } }, { + "default": true, + "id": 5772, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 16930, - "default": true + } }, { + "id": 5773, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16931 + } }, { + "id": 5774, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16932 + } }, { + "id": 5775, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16933 + } }, { + "id": 5776, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16934 + } }, { + "id": 5777, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16935 + } }, { + "id": 5778, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16936 + } }, { + "id": 5779, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16937 + } }, { + "id": 5780, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16938 + } }, { + "id": 5781, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 16939 + } }, { + "id": 5782, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 16940 + } }, { + "id": 5783, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16941 + } }, { + "id": 5784, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16942 + } }, { + "id": 5785, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16943 + } }, { + "id": 5786, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16944 + } }, { + "id": 5787, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16945 + } }, { + "id": 5788, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16946 + } }, { + "id": 5789, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16947 + } }, { + "id": 5790, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16948 + } }, { + "id": 5791, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 16949 + } }, { + "id": 5792, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 16950 + } }, { + "id": 5793, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16951 + } }, { + "id": 5794, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16952 + } }, { + "id": 5795, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16953 + } }, { + "id": 5796, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16954 + } }, { + "id": 5797, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16955 + } }, { + "id": 5798, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16956 + } }, { + "id": 5799, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16957 + } }, { + "id": 5800, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16958 + } }, { + "id": 5801, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 16959 + } }, { + "id": 5802, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 16960 + } }, { + "id": 5803, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16961 + } }, { + "id": 5804, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16962 + } }, { + "id": 5805, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16963 + } }, { + "id": 5806, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16964 + } }, { + "id": 5807, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16965 + } }, { + "id": 5808, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16966 + } }, { + "id": 5809, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16967 + } }, { + "id": 5810, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16968 + } }, { + "id": 5811, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 16969 + } }, { + "id": 5812, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 16970 + } }, { + "id": 5813, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16971 + } }, { + "id": 5814, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16972 + } }, { + "id": 5815, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16973 + } }, { + "id": 5816, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16974 + } }, { + "id": 5817, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16975 + } }, { + "id": 5818, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16976 + } }, { + "id": 5819, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16977 + } }, { + "id": 5820, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16978 + } }, { + "id": 5821, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 16979 + } }, { + "id": 5822, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 16980 + } }, { + "id": 5823, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16981 + } }, { + "id": 5824, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16982 + } }, { + "id": 5825, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16983 + } }, { + "id": 5826, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16984 + } }, { + "id": 5827, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16985 + } }, { + "id": 5828, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16986 + } }, { + "id": 5829, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16987 + } }, { + "id": 5830, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16988 + } }, { + "id": 5831, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 16989 + } }, { + "id": 5832, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 16990 + } }, { + "id": 5833, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 16991 + } }, { + "id": 5834, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 16992 + } }, { + "id": 5835, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 16993 + } }, { + "id": 5836, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 16994 + } }, { + "id": 5837, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 16995 + } }, { + "id": 5838, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 16996 + } }, { + "id": 5839, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 16997 + } }, { + "id": 5840, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 16998 + } } ] }, - "minecraft:polished_blackstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 16999 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 17000 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 17001 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 17002, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 17003 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 17004 - } - ] - }, - "minecraft:polished_blackstone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "powered": "true" - }, - "id": 17005 - }, - { - "properties": { - "powered": "false" - }, - "id": 17006, - "default": true - } - ] - }, - "minecraft:polished_blackstone_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - }, - "id": 17007 - }, - { - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - }, - "id": 17008 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - }, - "id": 17009 - }, - { - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - }, - "id": 17010 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - }, - "id": 17011 - }, - { - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - }, - "id": 17012 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "true" - }, - "id": 17013 - }, - { - "properties": { - "face": "floor", - "facing": "east", - "powered": "false" - }, - "id": 17014 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "true" - }, - "id": 17015 - }, - { - "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - }, - "id": 17016, - "default": true - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - }, - "id": 17017 - }, - { - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - }, - "id": 17018 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - }, - "id": 17019 - }, - { - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - }, - "id": 17020 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - }, - "id": 17021 - }, - { - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - }, - "id": 17022 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - }, - "id": 17023 - }, - { - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - }, - "id": 17024 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - }, - "id": 17025 - }, - { - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - }, - "id": 17026 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - }, - "id": 17027 - }, - { - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - }, - "id": 17028 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - }, - "id": 17029 - }, - { - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" - }, - "id": 17030 - } - ] - }, - "minecraft:polished_blackstone_wall": { + "minecraft:sandstone_wall": { "properties": { "east": [ "none", @@ -170924,6 +182572,7 @@ }, "states": [ { + "id": 14988, "properties": { "east": "none", "north": "none", @@ -170931,10 +182580,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17031 + } }, { + "id": 14989, "properties": { "east": "none", "north": "none", @@ -170942,10 +182591,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17032 + } }, { + "id": 14990, "properties": { "east": "none", "north": "none", @@ -170953,10 +182602,11 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17033 + } }, { + "default": true, + "id": 14991, "properties": { "east": "none", "north": "none", @@ -170964,11 +182614,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17034, - "default": true + } }, { + "id": 14992, "properties": { "east": "none", "north": "none", @@ -170976,10 +182625,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17035 + } }, { + "id": 14993, "properties": { "east": "none", "north": "none", @@ -170987,10 +182636,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17036 + } }, { + "id": 14994, "properties": { "east": "none", "north": "none", @@ -170998,10 +182647,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17037 + } }, { + "id": 14995, "properties": { "east": "none", "north": "none", @@ -171009,10 +182658,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17038 + } }, { + "id": 14996, "properties": { "east": "none", "north": "none", @@ -171020,10 +182669,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17039 + } }, { + "id": 14997, "properties": { "east": "none", "north": "none", @@ -171031,10 +182680,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17040 + } }, { + "id": 14998, "properties": { "east": "none", "north": "none", @@ -171042,10 +182691,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17041 + } }, { + "id": 14999, "properties": { "east": "none", "north": "none", @@ -171053,10 +182702,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17042 + } }, { + "id": 15000, "properties": { "east": "none", "north": "none", @@ -171064,10 +182713,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17043 + } }, { + "id": 15001, "properties": { "east": "none", "north": "none", @@ -171075,10 +182724,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17044 + } }, { + "id": 15002, "properties": { "east": "none", "north": "none", @@ -171086,10 +182735,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17045 + } }, { + "id": 15003, "properties": { "east": "none", "north": "none", @@ -171097,10 +182746,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17046 + } }, { + "id": 15004, "properties": { "east": "none", "north": "none", @@ -171108,10 +182757,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17047 + } }, { + "id": 15005, "properties": { "east": "none", "north": "none", @@ -171119,10 +182768,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17048 + } }, { + "id": 15006, "properties": { "east": "none", "north": "none", @@ -171130,10 +182779,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17049 + } }, { + "id": 15007, "properties": { "east": "none", "north": "none", @@ -171141,10 +182790,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17050 + } }, { + "id": 15008, "properties": { "east": "none", "north": "none", @@ -171152,10 +182801,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17051 + } }, { + "id": 15009, "properties": { "east": "none", "north": "none", @@ -171163,10 +182812,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17052 + } }, { + "id": 15010, "properties": { "east": "none", "north": "none", @@ -171174,10 +182823,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17053 + } }, { + "id": 15011, "properties": { "east": "none", "north": "none", @@ -171185,10 +182834,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17054 + } }, { + "id": 15012, "properties": { "east": "none", "north": "none", @@ -171196,10 +182845,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17055 + } }, { + "id": 15013, "properties": { "east": "none", "north": "none", @@ -171207,10 +182856,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17056 + } }, { + "id": 15014, "properties": { "east": "none", "north": "none", @@ -171218,10 +182867,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17057 + } }, { + "id": 15015, "properties": { "east": "none", "north": "none", @@ -171229,10 +182878,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17058 + } }, { + "id": 15016, "properties": { "east": "none", "north": "none", @@ -171240,10 +182889,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17059 + } }, { + "id": 15017, "properties": { "east": "none", "north": "none", @@ -171251,10 +182900,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17060 + } }, { + "id": 15018, "properties": { "east": "none", "north": "none", @@ -171262,10 +182911,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17061 + } }, { + "id": 15019, "properties": { "east": "none", "north": "none", @@ -171273,10 +182922,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17062 + } }, { + "id": 15020, "properties": { "east": "none", "north": "none", @@ -171284,10 +182933,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17063 + } }, { + "id": 15021, "properties": { "east": "none", "north": "none", @@ -171295,10 +182944,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17064 + } }, { + "id": 15022, "properties": { "east": "none", "north": "none", @@ -171306,10 +182955,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17065 + } }, { + "id": 15023, "properties": { "east": "none", "north": "none", @@ -171317,10 +182966,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17066 + } }, { + "id": 15024, "properties": { "east": "none", "north": "low", @@ -171328,10 +182977,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17067 + } }, { + "id": 15025, "properties": { "east": "none", "north": "low", @@ -171339,10 +182988,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17068 + } }, { + "id": 15026, "properties": { "east": "none", "north": "low", @@ -171350,10 +182999,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17069 + } }, { + "id": 15027, "properties": { "east": "none", "north": "low", @@ -171361,10 +183010,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17070 + } }, { + "id": 15028, "properties": { "east": "none", "north": "low", @@ -171372,10 +183021,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17071 + } }, { + "id": 15029, "properties": { "east": "none", "north": "low", @@ -171383,10 +183032,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17072 + } }, { + "id": 15030, "properties": { "east": "none", "north": "low", @@ -171394,10 +183043,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17073 + } }, { + "id": 15031, "properties": { "east": "none", "north": "low", @@ -171405,10 +183054,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17074 + } }, { + "id": 15032, "properties": { "east": "none", "north": "low", @@ -171416,10 +183065,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17075 + } }, { + "id": 15033, "properties": { "east": "none", "north": "low", @@ -171427,10 +183076,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17076 + } }, { + "id": 15034, "properties": { "east": "none", "north": "low", @@ -171438,10 +183087,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17077 + } }, { + "id": 15035, "properties": { "east": "none", "north": "low", @@ -171449,10 +183098,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17078 + } }, { + "id": 15036, "properties": { "east": "none", "north": "low", @@ -171460,10 +183109,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17079 + } }, { + "id": 15037, "properties": { "east": "none", "north": "low", @@ -171471,10 +183120,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17080 + } }, { + "id": 15038, "properties": { "east": "none", "north": "low", @@ -171482,10 +183131,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17081 + } }, { + "id": 15039, "properties": { "east": "none", "north": "low", @@ -171493,10 +183142,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17082 + } }, { + "id": 15040, "properties": { "east": "none", "north": "low", @@ -171504,10 +183153,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17083 + } }, { + "id": 15041, "properties": { "east": "none", "north": "low", @@ -171515,10 +183164,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17084 + } }, { + "id": 15042, "properties": { "east": "none", "north": "low", @@ -171526,10 +183175,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17085 + } }, { + "id": 15043, "properties": { "east": "none", "north": "low", @@ -171537,10 +183186,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17086 + } }, { + "id": 15044, "properties": { "east": "none", "north": "low", @@ -171548,10 +183197,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17087 + } }, { + "id": 15045, "properties": { "east": "none", "north": "low", @@ -171559,10 +183208,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17088 + } }, { + "id": 15046, "properties": { "east": "none", "north": "low", @@ -171570,10 +183219,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17089 + } }, { + "id": 15047, "properties": { "east": "none", "north": "low", @@ -171581,10 +183230,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17090 + } }, { + "id": 15048, "properties": { "east": "none", "north": "low", @@ -171592,10 +183241,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17091 + } }, { + "id": 15049, "properties": { "east": "none", "north": "low", @@ -171603,10 +183252,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17092 + } }, { + "id": 15050, "properties": { "east": "none", "north": "low", @@ -171614,10 +183263,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17093 + } }, { + "id": 15051, "properties": { "east": "none", "north": "low", @@ -171625,10 +183274,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17094 + } }, { + "id": 15052, "properties": { "east": "none", "north": "low", @@ -171636,10 +183285,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17095 + } }, { + "id": 15053, "properties": { "east": "none", "north": "low", @@ -171647,10 +183296,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17096 + } }, { + "id": 15054, "properties": { "east": "none", "north": "low", @@ -171658,10 +183307,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17097 + } }, { + "id": 15055, "properties": { "east": "none", "north": "low", @@ -171669,10 +183318,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17098 + } }, { + "id": 15056, "properties": { "east": "none", "north": "low", @@ -171680,10 +183329,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17099 + } }, { + "id": 15057, "properties": { "east": "none", "north": "low", @@ -171691,10 +183340,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17100 + } }, { + "id": 15058, "properties": { "east": "none", "north": "low", @@ -171702,10 +183351,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17101 + } }, { + "id": 15059, "properties": { "east": "none", "north": "low", @@ -171713,10 +183362,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17102 + } }, { + "id": 15060, "properties": { "east": "none", "north": "tall", @@ -171724,10 +183373,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17103 + } }, { + "id": 15061, "properties": { "east": "none", "north": "tall", @@ -171735,10 +183384,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17104 + } }, { + "id": 15062, "properties": { "east": "none", "north": "tall", @@ -171746,10 +183395,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17105 + } }, { + "id": 15063, "properties": { "east": "none", "north": "tall", @@ -171757,10 +183406,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17106 + } }, { + "id": 15064, "properties": { "east": "none", "north": "tall", @@ -171768,10 +183417,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17107 + } }, { + "id": 15065, "properties": { "east": "none", "north": "tall", @@ -171779,10 +183428,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17108 + } }, { + "id": 15066, "properties": { "east": "none", "north": "tall", @@ -171790,10 +183439,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17109 + } }, { + "id": 15067, "properties": { "east": "none", "north": "tall", @@ -171801,10 +183450,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17110 + } }, { + "id": 15068, "properties": { "east": "none", "north": "tall", @@ -171812,10 +183461,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17111 + } }, { + "id": 15069, "properties": { "east": "none", "north": "tall", @@ -171823,10 +183472,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17112 + } }, { + "id": 15070, "properties": { "east": "none", "north": "tall", @@ -171834,10 +183483,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17113 + } }, { + "id": 15071, "properties": { "east": "none", "north": "tall", @@ -171845,10 +183494,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17114 + } }, { + "id": 15072, "properties": { "east": "none", "north": "tall", @@ -171856,10 +183505,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17115 + } }, { + "id": 15073, "properties": { "east": "none", "north": "tall", @@ -171867,10 +183516,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17116 + } }, { + "id": 15074, "properties": { "east": "none", "north": "tall", @@ -171878,10 +183527,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17117 + } }, { + "id": 15075, "properties": { "east": "none", "north": "tall", @@ -171889,10 +183538,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17118 + } }, { + "id": 15076, "properties": { "east": "none", "north": "tall", @@ -171900,10 +183549,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17119 + } }, { + "id": 15077, "properties": { "east": "none", "north": "tall", @@ -171911,10 +183560,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17120 + } }, { + "id": 15078, "properties": { "east": "none", "north": "tall", @@ -171922,10 +183571,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17121 + } }, { + "id": 15079, "properties": { "east": "none", "north": "tall", @@ -171933,10 +183582,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17122 + } }, { + "id": 15080, "properties": { "east": "none", "north": "tall", @@ -171944,10 +183593,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17123 + } }, { + "id": 15081, "properties": { "east": "none", "north": "tall", @@ -171955,10 +183604,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17124 + } }, { + "id": 15082, "properties": { "east": "none", "north": "tall", @@ -171966,10 +183615,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17125 + } }, { + "id": 15083, "properties": { "east": "none", "north": "tall", @@ -171977,10 +183626,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17126 + } }, { + "id": 15084, "properties": { "east": "none", "north": "tall", @@ -171988,10 +183637,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17127 + } }, { + "id": 15085, "properties": { "east": "none", "north": "tall", @@ -171999,10 +183648,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17128 + } }, { + "id": 15086, "properties": { "east": "none", "north": "tall", @@ -172010,10 +183659,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17129 + } }, { + "id": 15087, "properties": { "east": "none", "north": "tall", @@ -172021,10 +183670,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17130 + } }, { + "id": 15088, "properties": { "east": "none", "north": "tall", @@ -172032,10 +183681,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17131 + } }, { + "id": 15089, "properties": { "east": "none", "north": "tall", @@ -172043,10 +183692,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17132 + } }, { + "id": 15090, "properties": { "east": "none", "north": "tall", @@ -172054,10 +183703,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17133 + } }, { + "id": 15091, "properties": { "east": "none", "north": "tall", @@ -172065,10 +183714,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17134 + } }, { + "id": 15092, "properties": { "east": "none", "north": "tall", @@ -172076,10 +183725,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17135 + } }, { + "id": 15093, "properties": { "east": "none", "north": "tall", @@ -172087,10 +183736,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17136 + } }, { + "id": 15094, "properties": { "east": "none", "north": "tall", @@ -172098,10 +183747,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17137 + } }, { + "id": 15095, "properties": { "east": "none", "north": "tall", @@ -172109,10 +183758,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17138 + } }, { + "id": 15096, "properties": { "east": "low", "north": "none", @@ -172120,10 +183769,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17139 + } }, { + "id": 15097, "properties": { "east": "low", "north": "none", @@ -172131,10 +183780,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17140 + } }, { + "id": 15098, "properties": { "east": "low", "north": "none", @@ -172142,10 +183791,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17141 + } }, { + "id": 15099, "properties": { "east": "low", "north": "none", @@ -172153,10 +183802,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17142 + } }, { + "id": 15100, "properties": { "east": "low", "north": "none", @@ -172164,10 +183813,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17143 + } }, { + "id": 15101, "properties": { "east": "low", "north": "none", @@ -172175,10 +183824,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17144 + } }, { + "id": 15102, "properties": { "east": "low", "north": "none", @@ -172186,10 +183835,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17145 + } }, { + "id": 15103, "properties": { "east": "low", "north": "none", @@ -172197,10 +183846,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17146 + } }, { + "id": 15104, "properties": { "east": "low", "north": "none", @@ -172208,10 +183857,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17147 + } }, { + "id": 15105, "properties": { "east": "low", "north": "none", @@ -172219,10 +183868,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17148 + } }, { + "id": 15106, "properties": { "east": "low", "north": "none", @@ -172230,10 +183879,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17149 + } }, { + "id": 15107, "properties": { "east": "low", "north": "none", @@ -172241,10 +183890,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17150 + } }, { + "id": 15108, "properties": { "east": "low", "north": "none", @@ -172252,10 +183901,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17151 + } }, { + "id": 15109, "properties": { "east": "low", "north": "none", @@ -172263,10 +183912,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17152 + } }, { + "id": 15110, "properties": { "east": "low", "north": "none", @@ -172274,10 +183923,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17153 + } }, { + "id": 15111, "properties": { "east": "low", "north": "none", @@ -172285,10 +183934,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17154 + } }, { + "id": 15112, "properties": { "east": "low", "north": "none", @@ -172296,10 +183945,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17155 + } }, { + "id": 15113, "properties": { "east": "low", "north": "none", @@ -172307,10 +183956,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17156 + } }, { + "id": 15114, "properties": { "east": "low", "north": "none", @@ -172318,10 +183967,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17157 + } }, { + "id": 15115, "properties": { "east": "low", "north": "none", @@ -172329,10 +183978,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17158 + } }, { + "id": 15116, "properties": { "east": "low", "north": "none", @@ -172340,10 +183989,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17159 + } }, { + "id": 15117, "properties": { "east": "low", "north": "none", @@ -172351,10 +184000,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17160 + } }, { + "id": 15118, "properties": { "east": "low", "north": "none", @@ -172362,10 +184011,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17161 + } }, { + "id": 15119, "properties": { "east": "low", "north": "none", @@ -172373,10 +184022,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17162 + } }, { + "id": 15120, "properties": { "east": "low", "north": "none", @@ -172384,10 +184033,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17163 + } }, { + "id": 15121, "properties": { "east": "low", "north": "none", @@ -172395,10 +184044,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17164 + } }, { + "id": 15122, "properties": { "east": "low", "north": "none", @@ -172406,10 +184055,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17165 + } }, { + "id": 15123, "properties": { "east": "low", "north": "none", @@ -172417,10 +184066,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17166 + } }, { + "id": 15124, "properties": { "east": "low", "north": "none", @@ -172428,10 +184077,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17167 + } }, { + "id": 15125, "properties": { "east": "low", "north": "none", @@ -172439,10 +184088,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17168 + } }, { + "id": 15126, "properties": { "east": "low", "north": "none", @@ -172450,10 +184099,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17169 + } }, { + "id": 15127, "properties": { "east": "low", "north": "none", @@ -172461,10 +184110,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17170 + } }, { + "id": 15128, "properties": { "east": "low", "north": "none", @@ -172472,10 +184121,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17171 + } }, { + "id": 15129, "properties": { "east": "low", "north": "none", @@ -172483,10 +184132,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17172 + } }, { + "id": 15130, "properties": { "east": "low", "north": "none", @@ -172494,10 +184143,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17173 + } }, { + "id": 15131, "properties": { "east": "low", "north": "none", @@ -172505,10 +184154,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17174 + } }, { + "id": 15132, "properties": { "east": "low", "north": "low", @@ -172516,10 +184165,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17175 + } }, { + "id": 15133, "properties": { "east": "low", "north": "low", @@ -172527,10 +184176,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17176 + } }, { + "id": 15134, "properties": { "east": "low", "north": "low", @@ -172538,10 +184187,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17177 + } }, { + "id": 15135, "properties": { "east": "low", "north": "low", @@ -172549,10 +184198,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17178 + } }, { + "id": 15136, "properties": { "east": "low", "north": "low", @@ -172560,10 +184209,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17179 + } }, { + "id": 15137, "properties": { "east": "low", "north": "low", @@ -172571,10 +184220,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17180 + } }, { + "id": 15138, "properties": { "east": "low", "north": "low", @@ -172582,10 +184231,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17181 + } }, { + "id": 15139, "properties": { "east": "low", "north": "low", @@ -172593,10 +184242,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17182 + } }, { + "id": 15140, "properties": { "east": "low", "north": "low", @@ -172604,10 +184253,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17183 + } }, { + "id": 15141, "properties": { "east": "low", "north": "low", @@ -172615,10 +184264,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17184 + } }, { + "id": 15142, "properties": { "east": "low", "north": "low", @@ -172626,10 +184275,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17185 + } }, { + "id": 15143, "properties": { "east": "low", "north": "low", @@ -172637,10 +184286,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17186 + } }, { + "id": 15144, "properties": { "east": "low", "north": "low", @@ -172648,10 +184297,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17187 + } }, { + "id": 15145, "properties": { "east": "low", "north": "low", @@ -172659,10 +184308,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17188 + } }, { + "id": 15146, "properties": { "east": "low", "north": "low", @@ -172670,10 +184319,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17189 + } }, { + "id": 15147, "properties": { "east": "low", "north": "low", @@ -172681,10 +184330,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17190 + } }, { + "id": 15148, "properties": { "east": "low", "north": "low", @@ -172692,10 +184341,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17191 + } }, { + "id": 15149, "properties": { "east": "low", "north": "low", @@ -172703,10 +184352,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17192 + } }, { + "id": 15150, "properties": { "east": "low", "north": "low", @@ -172714,10 +184363,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17193 + } }, { + "id": 15151, "properties": { "east": "low", "north": "low", @@ -172725,10 +184374,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17194 + } }, { + "id": 15152, "properties": { "east": "low", "north": "low", @@ -172736,10 +184385,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17195 + } }, { + "id": 15153, "properties": { "east": "low", "north": "low", @@ -172747,10 +184396,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17196 + } }, { + "id": 15154, "properties": { "east": "low", "north": "low", @@ -172758,10 +184407,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17197 + } }, { + "id": 15155, "properties": { "east": "low", "north": "low", @@ -172769,10 +184418,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17198 + } }, { + "id": 15156, "properties": { "east": "low", "north": "low", @@ -172780,10 +184429,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17199 + } }, { + "id": 15157, "properties": { "east": "low", "north": "low", @@ -172791,10 +184440,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17200 + } }, { + "id": 15158, "properties": { "east": "low", "north": "low", @@ -172802,10 +184451,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17201 + } }, { + "id": 15159, "properties": { "east": "low", "north": "low", @@ -172813,10 +184462,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17202 + } }, { + "id": 15160, "properties": { "east": "low", "north": "low", @@ -172824,10 +184473,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17203 + } }, { + "id": 15161, "properties": { "east": "low", "north": "low", @@ -172835,10 +184484,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17204 + } }, { + "id": 15162, "properties": { "east": "low", "north": "low", @@ -172846,10 +184495,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17205 + } }, { + "id": 15163, "properties": { "east": "low", "north": "low", @@ -172857,10 +184506,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17206 + } }, { + "id": 15164, "properties": { "east": "low", "north": "low", @@ -172868,10 +184517,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17207 + } }, { + "id": 15165, "properties": { "east": "low", "north": "low", @@ -172879,10 +184528,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17208 + } }, { + "id": 15166, "properties": { "east": "low", "north": "low", @@ -172890,10 +184539,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17209 + } }, { + "id": 15167, "properties": { "east": "low", "north": "low", @@ -172901,10 +184550,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17210 + } }, { + "id": 15168, "properties": { "east": "low", "north": "tall", @@ -172912,10 +184561,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17211 + } }, { + "id": 15169, "properties": { "east": "low", "north": "tall", @@ -172923,10 +184572,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17212 + } }, { + "id": 15170, "properties": { "east": "low", "north": "tall", @@ -172934,10 +184583,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17213 + } }, { + "id": 15171, "properties": { "east": "low", "north": "tall", @@ -172945,10 +184594,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17214 + } }, { + "id": 15172, "properties": { "east": "low", "north": "tall", @@ -172956,10 +184605,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17215 + } }, { + "id": 15173, "properties": { "east": "low", "north": "tall", @@ -172967,10 +184616,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17216 + } }, { + "id": 15174, "properties": { "east": "low", "north": "tall", @@ -172978,10 +184627,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17217 + } }, { + "id": 15175, "properties": { "east": "low", "north": "tall", @@ -172989,10 +184638,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17218 + } }, { + "id": 15176, "properties": { "east": "low", "north": "tall", @@ -173000,10 +184649,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17219 + } }, { + "id": 15177, "properties": { "east": "low", "north": "tall", @@ -173011,10 +184660,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17220 + } }, { + "id": 15178, "properties": { "east": "low", "north": "tall", @@ -173022,10 +184671,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17221 + } }, { + "id": 15179, "properties": { "east": "low", "north": "tall", @@ -173033,10 +184682,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17222 + } }, { + "id": 15180, "properties": { "east": "low", "north": "tall", @@ -173044,10 +184693,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17223 + } }, { + "id": 15181, "properties": { "east": "low", "north": "tall", @@ -173055,10 +184704,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17224 + } }, { + "id": 15182, "properties": { "east": "low", "north": "tall", @@ -173066,10 +184715,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17225 + } }, { + "id": 15183, "properties": { "east": "low", "north": "tall", @@ -173077,10 +184726,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17226 + } }, { + "id": 15184, "properties": { "east": "low", "north": "tall", @@ -173088,10 +184737,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17227 + } }, { + "id": 15185, "properties": { "east": "low", "north": "tall", @@ -173099,10 +184748,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17228 + } }, { + "id": 15186, "properties": { "east": "low", "north": "tall", @@ -173110,10 +184759,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17229 + } }, { + "id": 15187, "properties": { "east": "low", "north": "tall", @@ -173121,10 +184770,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17230 + } }, { + "id": 15188, "properties": { "east": "low", "north": "tall", @@ -173132,10 +184781,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17231 + } }, { + "id": 15189, "properties": { "east": "low", "north": "tall", @@ -173143,10 +184792,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17232 + } }, { + "id": 15190, "properties": { "east": "low", "north": "tall", @@ -173154,10 +184803,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17233 + } }, { + "id": 15191, "properties": { "east": "low", "north": "tall", @@ -173165,10 +184814,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17234 + } }, { + "id": 15192, "properties": { "east": "low", "north": "tall", @@ -173176,10 +184825,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17235 + } }, { + "id": 15193, "properties": { "east": "low", "north": "tall", @@ -173187,10 +184836,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17236 + } }, { + "id": 15194, "properties": { "east": "low", "north": "tall", @@ -173198,10 +184847,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17237 + } }, { + "id": 15195, "properties": { "east": "low", "north": "tall", @@ -173209,10 +184858,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17238 + } }, { + "id": 15196, "properties": { "east": "low", "north": "tall", @@ -173220,10 +184869,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17239 + } }, { + "id": 15197, "properties": { "east": "low", "north": "tall", @@ -173231,10 +184880,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17240 + } }, { + "id": 15198, "properties": { "east": "low", "north": "tall", @@ -173242,10 +184891,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17241 + } }, { + "id": 15199, "properties": { "east": "low", "north": "tall", @@ -173253,10 +184902,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17242 + } }, { + "id": 15200, "properties": { "east": "low", "north": "tall", @@ -173264,10 +184913,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17243 + } }, { + "id": 15201, "properties": { "east": "low", "north": "tall", @@ -173275,10 +184924,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17244 + } }, { + "id": 15202, "properties": { "east": "low", "north": "tall", @@ -173286,10 +184935,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17245 + } }, { + "id": 15203, "properties": { "east": "low", "north": "tall", @@ -173297,10 +184946,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17246 + } }, { + "id": 15204, "properties": { "east": "tall", "north": "none", @@ -173308,10 +184957,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17247 + } }, { + "id": 15205, "properties": { "east": "tall", "north": "none", @@ -173319,10 +184968,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17248 + } }, { + "id": 15206, "properties": { "east": "tall", "north": "none", @@ -173330,10 +184979,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17249 + } }, { + "id": 15207, "properties": { "east": "tall", "north": "none", @@ -173341,10 +184990,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17250 + } }, { + "id": 15208, "properties": { "east": "tall", "north": "none", @@ -173352,10 +185001,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17251 + } }, { + "id": 15209, "properties": { "east": "tall", "north": "none", @@ -173363,10 +185012,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17252 + } }, { + "id": 15210, "properties": { "east": "tall", "north": "none", @@ -173374,10 +185023,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17253 + } }, { + "id": 15211, "properties": { "east": "tall", "north": "none", @@ -173385,10 +185034,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17254 + } }, { + "id": 15212, "properties": { "east": "tall", "north": "none", @@ -173396,10 +185045,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17255 + } }, { + "id": 15213, "properties": { "east": "tall", "north": "none", @@ -173407,10 +185056,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17256 + } }, { + "id": 15214, "properties": { "east": "tall", "north": "none", @@ -173418,10 +185067,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17257 + } }, { + "id": 15215, "properties": { "east": "tall", "north": "none", @@ -173429,10 +185078,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17258 + } }, { + "id": 15216, "properties": { "east": "tall", "north": "none", @@ -173440,10 +185089,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17259 + } }, { + "id": 15217, "properties": { "east": "tall", "north": "none", @@ -173451,10 +185100,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17260 + } }, { + "id": 15218, "properties": { "east": "tall", "north": "none", @@ -173462,10 +185111,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17261 + } }, { + "id": 15219, "properties": { "east": "tall", "north": "none", @@ -173473,10 +185122,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17262 + } }, { + "id": 15220, "properties": { "east": "tall", "north": "none", @@ -173484,10 +185133,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17263 + } }, { + "id": 15221, "properties": { "east": "tall", "north": "none", @@ -173495,10 +185144,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17264 + } }, { + "id": 15222, "properties": { "east": "tall", "north": "none", @@ -173506,10 +185155,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17265 + } }, { + "id": 15223, "properties": { "east": "tall", "north": "none", @@ -173517,10 +185166,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17266 + } }, { + "id": 15224, "properties": { "east": "tall", "north": "none", @@ -173528,10 +185177,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17267 + } }, { + "id": 15225, "properties": { "east": "tall", "north": "none", @@ -173539,10 +185188,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17268 + } }, { + "id": 15226, "properties": { "east": "tall", "north": "none", @@ -173550,10 +185199,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17269 + } }, { + "id": 15227, "properties": { "east": "tall", "north": "none", @@ -173561,10 +185210,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17270 + } }, { + "id": 15228, "properties": { "east": "tall", "north": "none", @@ -173572,10 +185221,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17271 + } }, { + "id": 15229, "properties": { "east": "tall", "north": "none", @@ -173583,10 +185232,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17272 + } }, { + "id": 15230, "properties": { "east": "tall", "north": "none", @@ -173594,10 +185243,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17273 + } }, { + "id": 15231, "properties": { "east": "tall", "north": "none", @@ -173605,10 +185254,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17274 + } }, { + "id": 15232, "properties": { "east": "tall", "north": "none", @@ -173616,10 +185265,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17275 + } }, { + "id": 15233, "properties": { "east": "tall", "north": "none", @@ -173627,10 +185276,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17276 + } }, { + "id": 15234, "properties": { "east": "tall", "north": "none", @@ -173638,10 +185287,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17277 + } }, { + "id": 15235, "properties": { "east": "tall", "north": "none", @@ -173649,10 +185298,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17278 + } }, { + "id": 15236, "properties": { "east": "tall", "north": "none", @@ -173660,10 +185309,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17279 + } }, { + "id": 15237, "properties": { "east": "tall", "north": "none", @@ -173671,10 +185320,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17280 + } }, { + "id": 15238, "properties": { "east": "tall", "north": "none", @@ -173682,10 +185331,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17281 + } }, { + "id": 15239, "properties": { "east": "tall", "north": "none", @@ -173693,10 +185342,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17282 + } }, { + "id": 15240, "properties": { "east": "tall", "north": "low", @@ -173704,10 +185353,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17283 + } }, { + "id": 15241, "properties": { "east": "tall", "north": "low", @@ -173715,10 +185364,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17284 + } }, { + "id": 15242, "properties": { "east": "tall", "north": "low", @@ -173726,10 +185375,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17285 + } }, { + "id": 15243, "properties": { "east": "tall", "north": "low", @@ -173737,10 +185386,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17286 + } }, { + "id": 15244, "properties": { "east": "tall", "north": "low", @@ -173748,10 +185397,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17287 + } }, { + "id": 15245, "properties": { "east": "tall", "north": "low", @@ -173759,10 +185408,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17288 + } }, { + "id": 15246, "properties": { "east": "tall", "north": "low", @@ -173770,10 +185419,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17289 + } }, { + "id": 15247, "properties": { "east": "tall", "north": "low", @@ -173781,10 +185430,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17290 + } }, { + "id": 15248, "properties": { "east": "tall", "north": "low", @@ -173792,10 +185441,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17291 + } }, { + "id": 15249, "properties": { "east": "tall", "north": "low", @@ -173803,10 +185452,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17292 + } }, { + "id": 15250, "properties": { "east": "tall", "north": "low", @@ -173814,10 +185463,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17293 + } }, { + "id": 15251, "properties": { "east": "tall", "north": "low", @@ -173825,10 +185474,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17294 + } }, { + "id": 15252, "properties": { "east": "tall", "north": "low", @@ -173836,10 +185485,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17295 + } }, { + "id": 15253, "properties": { "east": "tall", "north": "low", @@ -173847,10 +185496,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17296 + } }, { + "id": 15254, "properties": { "east": "tall", "north": "low", @@ -173858,10 +185507,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17297 + } }, { + "id": 15255, "properties": { "east": "tall", "north": "low", @@ -173869,10 +185518,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17298 + } }, { + "id": 15256, "properties": { "east": "tall", "north": "low", @@ -173880,10 +185529,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17299 + } }, { + "id": 15257, "properties": { "east": "tall", "north": "low", @@ -173891,10 +185540,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17300 + } }, { + "id": 15258, "properties": { "east": "tall", "north": "low", @@ -173902,10 +185551,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17301 + } }, { + "id": 15259, "properties": { "east": "tall", "north": "low", @@ -173913,10 +185562,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17302 + } }, { + "id": 15260, "properties": { "east": "tall", "north": "low", @@ -173924,10 +185573,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17303 + } }, { + "id": 15261, "properties": { "east": "tall", "north": "low", @@ -173935,10 +185584,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17304 + } }, { + "id": 15262, "properties": { "east": "tall", "north": "low", @@ -173946,10 +185595,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17305 + } }, { + "id": 15263, "properties": { "east": "tall", "north": "low", @@ -173957,10 +185606,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17306 + } }, { + "id": 15264, "properties": { "east": "tall", "north": "low", @@ -173968,10 +185617,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17307 + } }, { + "id": 15265, "properties": { "east": "tall", "north": "low", @@ -173979,10 +185628,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17308 + } }, { + "id": 15266, "properties": { "east": "tall", "north": "low", @@ -173990,10 +185639,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17309 + } }, { + "id": 15267, "properties": { "east": "tall", "north": "low", @@ -174001,10 +185650,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17310 + } }, { + "id": 15268, "properties": { "east": "tall", "north": "low", @@ -174012,10 +185661,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17311 + } }, { + "id": 15269, "properties": { "east": "tall", "north": "low", @@ -174023,10 +185672,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17312 + } }, { + "id": 15270, "properties": { "east": "tall", "north": "low", @@ -174034,10 +185683,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17313 + } }, { + "id": 15271, "properties": { "east": "tall", "north": "low", @@ -174045,10 +185694,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17314 + } }, { + "id": 15272, "properties": { "east": "tall", "north": "low", @@ -174056,10 +185705,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17315 + } }, { + "id": 15273, "properties": { "east": "tall", "north": "low", @@ -174067,10 +185716,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17316 + } }, { + "id": 15274, "properties": { "east": "tall", "north": "low", @@ -174078,10 +185727,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17317 + } }, { + "id": 15275, "properties": { "east": "tall", "north": "low", @@ -174089,10 +185738,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17318 + } }, { + "id": 15276, "properties": { "east": "tall", "north": "tall", @@ -174100,10 +185749,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17319 + } }, { + "id": 15277, "properties": { "east": "tall", "north": "tall", @@ -174111,10 +185760,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17320 + } }, { + "id": 15278, "properties": { "east": "tall", "north": "tall", @@ -174122,10 +185771,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17321 + } }, { + "id": 15279, "properties": { "east": "tall", "north": "tall", @@ -174133,10 +185782,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17322 + } }, { + "id": 15280, "properties": { "east": "tall", "north": "tall", @@ -174144,10 +185793,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17323 + } }, { + "id": 15281, "properties": { "east": "tall", "north": "tall", @@ -174155,10 +185804,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17324 + } }, { + "id": 15282, "properties": { "east": "tall", "north": "tall", @@ -174166,10 +185815,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17325 + } }, { + "id": 15283, "properties": { "east": "tall", "north": "tall", @@ -174177,10 +185826,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17326 + } }, { + "id": 15284, "properties": { "east": "tall", "north": "tall", @@ -174188,10 +185837,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17327 + } }, { + "id": 15285, "properties": { "east": "tall", "north": "tall", @@ -174199,10 +185848,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17328 + } }, { + "id": 15286, "properties": { "east": "tall", "north": "tall", @@ -174210,10 +185859,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17329 + } }, { + "id": 15287, "properties": { "east": "tall", "north": "tall", @@ -174221,10 +185870,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17330 + } }, { + "id": 15288, "properties": { "east": "tall", "north": "tall", @@ -174232,10 +185881,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17331 + } }, { + "id": 15289, "properties": { "east": "tall", "north": "tall", @@ -174243,10 +185892,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17332 + } }, { + "id": 15290, "properties": { "east": "tall", "north": "tall", @@ -174254,10 +185903,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17333 + } }, { + "id": 15291, "properties": { "east": "tall", "north": "tall", @@ -174265,10 +185914,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17334 + } }, { + "id": 15292, "properties": { "east": "tall", "north": "tall", @@ -174276,10 +185925,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17335 + } }, { + "id": 15293, "properties": { "east": "tall", "north": "tall", @@ -174287,10 +185936,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17336 + } }, { + "id": 15294, "properties": { "east": "tall", "north": "tall", @@ -174298,10 +185947,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17337 + } }, { + "id": 15295, "properties": { "east": "tall", "north": "tall", @@ -174309,10 +185958,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17338 + } }, { + "id": 15296, "properties": { "east": "tall", "north": "tall", @@ -174320,10 +185969,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17339 + } }, { + "id": 15297, "properties": { "east": "tall", "north": "tall", @@ -174331,10 +185980,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17340 + } }, { + "id": 15298, "properties": { "east": "tall", "north": "tall", @@ -174342,10 +185991,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17341 + } }, { + "id": 15299, "properties": { "east": "tall", "north": "tall", @@ -174353,10 +186002,10 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17342 + } }, { + "id": 15300, "properties": { "east": "tall", "north": "tall", @@ -174364,10 +186013,10 @@ "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 17343 + } }, { + "id": 15301, "properties": { "east": "tall", "north": "tall", @@ -174375,10 +186024,10 @@ "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 17344 + } }, { + "id": 15302, "properties": { "east": "tall", "north": "tall", @@ -174386,10 +186035,10 @@ "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 17345 + } }, { + "id": 15303, "properties": { "east": "tall", "north": "tall", @@ -174397,10 +186046,10 @@ "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 17346 + } }, { + "id": 15304, "properties": { "east": "tall", "north": "tall", @@ -174408,10 +186057,10 @@ "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 17347 + } }, { + "id": 15305, "properties": { "east": "tall", "north": "tall", @@ -174419,10 +186068,10 @@ "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 17348 + } }, { + "id": 15306, "properties": { "east": "tall", "north": "tall", @@ -174430,10 +186079,10 @@ "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 17349 + } }, { + "id": 15307, "properties": { "east": "tall", "north": "tall", @@ -174441,10 +186090,10 @@ "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 17350 + } }, { + "id": 15308, "properties": { "east": "tall", "north": "tall", @@ -174452,10 +186101,10 @@ "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 17351 + } }, { + "id": 15309, "properties": { "east": "tall", "north": "tall", @@ -174463,10 +186112,10 @@ "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 17352 + } }, { + "id": 15310, "properties": { "east": "tall", "north": "tall", @@ -174474,10 +186123,10 @@ "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 17353 + } }, { + "id": 15311, "properties": { "east": "tall", "north": "tall", @@ -174485,46 +186134,25 @@ "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 17354 - } - ] - }, - "minecraft:chiseled_nether_bricks": { - "states": [ - { - "id": 17355, - "default": true + } } ] }, - "minecraft:cracked_nether_bricks": { - "states": [ - { - "id": 17356, - "default": true - } - ] - }, - "minecraft:quartz_bricks": { - "states": [ - { - "id": 17357, - "default": true - } - ] - }, - "minecraft:candle": { + "minecraft:scaffolding": { "properties": { - "candles": [ + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", "1", "2", "3", - "4" - ], - "lit": [ - "true", - "false" + "4", + "5", + "6", + "7" ], "waterlogged": [ "true", @@ -174533,445 +186161,319 @@ }, "states": [ { + "id": 15960, "properties": { - "candles": "1", - "lit": "true", + "bottom": "true", + "distance": "0", "waterlogged": "true" - }, - "id": 17358 + } }, { + "id": 15961, "properties": { - "candles": "1", - "lit": "true", + "bottom": "true", + "distance": "0", "waterlogged": "false" - }, - "id": 17359 + } }, { + "id": 15962, "properties": { - "candles": "1", - "lit": "false", + "bottom": "true", + "distance": "1", "waterlogged": "true" - }, - "id": 17360 + } }, { + "id": 15963, "properties": { - "candles": "1", - "lit": "false", + "bottom": "true", + "distance": "1", "waterlogged": "false" - }, - "id": 17361, - "default": true + } }, { + "id": 15964, "properties": { - "candles": "2", - "lit": "true", + "bottom": "true", + "distance": "2", "waterlogged": "true" - }, - "id": 17362 + } }, { + "id": 15965, "properties": { - "candles": "2", - "lit": "true", + "bottom": "true", + "distance": "2", "waterlogged": "false" - }, - "id": 17363 + } }, { + "id": 15966, "properties": { - "candles": "2", - "lit": "false", + "bottom": "true", + "distance": "3", "waterlogged": "true" - }, - "id": 17364 + } }, { + "id": 15967, "properties": { - "candles": "2", - "lit": "false", + "bottom": "true", + "distance": "3", "waterlogged": "false" - }, - "id": 17365 + } }, { + "id": 15968, "properties": { - "candles": "3", - "lit": "true", + "bottom": "true", + "distance": "4", "waterlogged": "true" - }, - "id": 17366 + } }, { + "id": 15969, "properties": { - "candles": "3", - "lit": "true", + "bottom": "true", + "distance": "4", "waterlogged": "false" - }, - "id": 17367 + } }, { + "id": 15970, "properties": { - "candles": "3", - "lit": "false", + "bottom": "true", + "distance": "5", "waterlogged": "true" - }, - "id": 17368 + } }, { + "id": 15971, "properties": { - "candles": "3", - "lit": "false", + "bottom": "true", + "distance": "5", "waterlogged": "false" - }, - "id": 17369 + } }, { + "id": 15972, "properties": { - "candles": "4", - "lit": "true", + "bottom": "true", + "distance": "6", "waterlogged": "true" - }, - "id": 17370 + } }, { + "id": 15973, "properties": { - "candles": "4", - "lit": "true", + "bottom": "true", + "distance": "6", "waterlogged": "false" - }, - "id": 17371 + } }, { + "id": 15974, "properties": { - "candles": "4", - "lit": "false", + "bottom": "true", + "distance": "7", "waterlogged": "true" - }, - "id": 17372 + } }, { + "id": 15975, "properties": { - "candles": "4", - "lit": "false", + "bottom": "true", + "distance": "7", "waterlogged": "false" - }, - "id": 17373 - } - ] - }, - "minecraft:white_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 15976, "properties": { - "candles": "1", - "lit": "true", + "bottom": "false", + "distance": "0", "waterlogged": "true" - }, - "id": 17374 + } }, { + "id": 15977, "properties": { - "candles": "1", - "lit": "true", + "bottom": "false", + "distance": "0", "waterlogged": "false" - }, - "id": 17375 + } }, { + "id": 15978, "properties": { - "candles": "1", - "lit": "false", + "bottom": "false", + "distance": "1", "waterlogged": "true" - }, - "id": 17376 + } }, { + "id": 15979, "properties": { - "candles": "1", - "lit": "false", + "bottom": "false", + "distance": "1", "waterlogged": "false" - }, - "id": 17377, - "default": true + } }, { + "id": 15980, "properties": { - "candles": "2", - "lit": "true", + "bottom": "false", + "distance": "2", "waterlogged": "true" - }, - "id": 17378 + } }, { + "id": 15981, "properties": { - "candles": "2", - "lit": "true", + "bottom": "false", + "distance": "2", "waterlogged": "false" - }, - "id": 17379 + } }, { + "id": 15982, "properties": { - "candles": "2", - "lit": "false", + "bottom": "false", + "distance": "3", "waterlogged": "true" - }, - "id": 17380 + } }, { + "id": 15983, "properties": { - "candles": "2", - "lit": "false", + "bottom": "false", + "distance": "3", "waterlogged": "false" - }, - "id": 17381 + } }, { + "id": 15984, "properties": { - "candles": "3", - "lit": "true", + "bottom": "false", + "distance": "4", "waterlogged": "true" - }, - "id": 17382 + } }, { + "id": 15985, "properties": { - "candles": "3", - "lit": "true", + "bottom": "false", + "distance": "4", "waterlogged": "false" - }, - "id": 17383 + } }, { + "id": 15986, "properties": { - "candles": "3", - "lit": "false", + "bottom": "false", + "distance": "5", "waterlogged": "true" - }, - "id": 17384 + } }, { + "id": 15987, "properties": { - "candles": "3", - "lit": "false", + "bottom": "false", + "distance": "5", "waterlogged": "false" - }, - "id": 17385 + } }, { + "id": 15988, "properties": { - "candles": "4", - "lit": "true", + "bottom": "false", + "distance": "6", "waterlogged": "true" - }, - "id": 17386 + } }, { + "id": 15989, "properties": { - "candles": "4", - "lit": "true", + "bottom": "false", + "distance": "6", "waterlogged": "false" - }, - "id": 17387 + } }, { + "id": 15990, "properties": { - "candles": "4", - "lit": "false", + "bottom": "false", + "distance": "7", "waterlogged": "true" - }, - "id": 17388 + } }, { + "default": true, + "id": 15991, "properties": { - "candles": "4", - "lit": "false", + "bottom": "false", + "distance": "7", "waterlogged": "false" - }, - "id": 17389 + } } ] }, - "minecraft:orange_candle": { + "minecraft:sculk": { + "states": [ + { + "default": true, + "id": 18769 + } + ] + }, + "minecraft:sculk_catalyst": { "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ + "bloom": [ "true", "false" ] }, "states": [ { + "id": 18898, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17390 - }, - { - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17391 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17392 - }, - { - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17393, - "default": true - }, - { - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17394 + "bloom": "true" + } }, { + "default": true, + "id": 18899, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17395 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17396 - }, - { - "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17397 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17398 - }, - { - "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17399 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17400 - }, - { - "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17401 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17402 - }, - { - "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17403 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17404 - }, - { - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17405 + "bloom": "false" + } } ] }, - "minecraft:magenta_candle": { + "minecraft:sculk_sensor": { "properties": { - "candles": [ + "power": [ + "0", "1", "2", "3", - "4" + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "lit": [ - "true", - "false" + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" ], "waterlogged": [ "true", @@ -174980,890 +186482,783 @@ }, "states": [ { + "id": 18673, "properties": { - "candles": "1", - "lit": "true", + "power": "0", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17406 + } }, { + "default": true, + "id": 18674, "properties": { - "candles": "1", - "lit": "true", + "power": "0", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17407 + } }, { + "id": 18675, "properties": { - "candles": "1", - "lit": "false", + "power": "0", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17408 + } }, { + "id": 18676, "properties": { - "candles": "1", - "lit": "false", + "power": "0", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17409, - "default": true + } }, { + "id": 18677, "properties": { - "candles": "2", - "lit": "true", + "power": "0", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17410 + } }, { + "id": 18678, "properties": { - "candles": "2", - "lit": "true", + "power": "0", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17411 + } }, { + "id": 18679, "properties": { - "candles": "2", - "lit": "false", + "power": "1", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17412 + } }, { + "id": 18680, "properties": { - "candles": "2", - "lit": "false", + "power": "1", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17413 + } }, { + "id": 18681, "properties": { - "candles": "3", - "lit": "true", + "power": "1", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17414 + } }, { + "id": 18682, "properties": { - "candles": "3", - "lit": "true", + "power": "1", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17415 + } }, { + "id": 18683, "properties": { - "candles": "3", - "lit": "false", + "power": "1", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17416 + } }, { + "id": 18684, "properties": { - "candles": "3", - "lit": "false", + "power": "1", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17417 + } }, { + "id": 18685, "properties": { - "candles": "4", - "lit": "true", + "power": "2", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17418 + } }, { + "id": 18686, "properties": { - "candles": "4", - "lit": "true", + "power": "2", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17419 + } }, { + "id": 18687, "properties": { - "candles": "4", - "lit": "false", + "power": "2", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17420 + } }, { + "id": 18688, "properties": { - "candles": "4", - "lit": "false", + "power": "2", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17421 - } - ] - }, - "minecraft:light_blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 18689, "properties": { - "candles": "1", - "lit": "true", + "power": "2", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17422 + } }, { + "id": 18690, "properties": { - "candles": "1", - "lit": "true", + "power": "2", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17423 + } }, { + "id": 18691, "properties": { - "candles": "1", - "lit": "false", + "power": "3", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17424 + } }, { + "id": 18692, "properties": { - "candles": "1", - "lit": "false", + "power": "3", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17425, - "default": true + } }, { + "id": 18693, "properties": { - "candles": "2", - "lit": "true", + "power": "3", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17426 + } }, { + "id": 18694, "properties": { - "candles": "2", - "lit": "true", + "power": "3", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17427 + } }, { + "id": 18695, "properties": { - "candles": "2", - "lit": "false", + "power": "3", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17428 + } }, { + "id": 18696, "properties": { - "candles": "2", - "lit": "false", + "power": "3", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17429 + } }, { + "id": 18697, "properties": { - "candles": "3", - "lit": "true", + "power": "4", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17430 + } }, { + "id": 18698, "properties": { - "candles": "3", - "lit": "true", + "power": "4", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17431 + } }, { + "id": 18699, "properties": { - "candles": "3", - "lit": "false", + "power": "4", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17432 + } }, { + "id": 18700, "properties": { - "candles": "3", - "lit": "false", + "power": "4", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17433 + } }, { + "id": 18701, "properties": { - "candles": "4", - "lit": "true", + "power": "4", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17434 + } }, { + "id": 18702, "properties": { - "candles": "4", - "lit": "true", + "power": "4", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17435 + } }, { + "id": 18703, "properties": { - "candles": "4", - "lit": "false", + "power": "5", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17436 + } }, { + "id": 18704, "properties": { - "candles": "4", - "lit": "false", + "power": "5", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17437 - } - ] - }, - "minecraft:yellow_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 18705, "properties": { - "candles": "1", - "lit": "true", + "power": "5", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17438 + } }, { + "id": 18706, "properties": { - "candles": "1", - "lit": "true", + "power": "5", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17439 + } }, { + "id": 18707, "properties": { - "candles": "1", - "lit": "false", + "power": "5", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17440 + } }, { + "id": 18708, "properties": { - "candles": "1", - "lit": "false", + "power": "5", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17441, - "default": true + } }, { + "id": 18709, "properties": { - "candles": "2", - "lit": "true", + "power": "6", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17442 + } }, { + "id": 18710, "properties": { - "candles": "2", - "lit": "true", + "power": "6", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17443 + } }, { + "id": 18711, "properties": { - "candles": "2", - "lit": "false", + "power": "6", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17444 + } }, { + "id": 18712, "properties": { - "candles": "2", - "lit": "false", + "power": "6", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17445 + } }, { + "id": 18713, "properties": { - "candles": "3", - "lit": "true", + "power": "6", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17446 + } }, { + "id": 18714, "properties": { - "candles": "3", - "lit": "true", + "power": "6", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17447 + } }, { + "id": 18715, "properties": { - "candles": "3", - "lit": "false", + "power": "7", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17448 + } }, { + "id": 18716, "properties": { - "candles": "3", - "lit": "false", + "power": "7", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17449 + } }, { + "id": 18717, "properties": { - "candles": "4", - "lit": "true", + "power": "7", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17450 + } }, { + "id": 18718, "properties": { - "candles": "4", - "lit": "true", + "power": "7", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17451 + } }, { + "id": 18719, "properties": { - "candles": "4", - "lit": "false", + "power": "7", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17452 + } }, { + "id": 18720, "properties": { - "candles": "4", - "lit": "false", + "power": "7", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17453 - } - ] - }, - "minecraft:lime_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 18721, "properties": { - "candles": "1", - "lit": "true", + "power": "8", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17454 + } }, { + "id": 18722, "properties": { - "candles": "1", - "lit": "true", + "power": "8", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17455 + } }, { + "id": 18723, "properties": { - "candles": "1", - "lit": "false", + "power": "8", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17456 + } }, { + "id": 18724, "properties": { - "candles": "1", - "lit": "false", + "power": "8", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17457, - "default": true + } }, { + "id": 18725, "properties": { - "candles": "2", - "lit": "true", + "power": "8", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17458 + } }, { + "id": 18726, "properties": { - "candles": "2", - "lit": "true", + "power": "8", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17459 + } }, { + "id": 18727, "properties": { - "candles": "2", - "lit": "false", + "power": "9", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17460 + } }, { + "id": 18728, "properties": { - "candles": "2", - "lit": "false", + "power": "9", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17461 + } }, { + "id": 18729, "properties": { - "candles": "3", - "lit": "true", + "power": "9", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17462 + } }, { + "id": 18730, "properties": { - "candles": "3", - "lit": "true", + "power": "9", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17463 + } }, { + "id": 18731, "properties": { - "candles": "3", - "lit": "false", + "power": "9", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17464 + } }, { + "id": 18732, "properties": { - "candles": "3", - "lit": "false", + "power": "9", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17465 + } }, { + "id": 18733, "properties": { - "candles": "4", - "lit": "true", + "power": "10", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17466 + } }, { + "id": 18734, "properties": { - "candles": "4", - "lit": "true", + "power": "10", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17467 + } }, { + "id": 18735, "properties": { - "candles": "4", - "lit": "false", + "power": "10", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17468 + } }, { + "id": 18736, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17469 - } - ] - }, - "minecraft:pink_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, { + "id": 18737, "properties": { - "candles": "1", - "lit": "true", + "power": "10", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17470 + } }, { + "id": 18738, "properties": { - "candles": "1", - "lit": "true", + "power": "10", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17471 + } }, { + "id": 18739, "properties": { - "candles": "1", - "lit": "false", + "power": "11", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17472 + } }, { + "id": 18740, "properties": { - "candles": "1", - "lit": "false", + "power": "11", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17473, - "default": true + } }, { + "id": 18741, "properties": { - "candles": "2", - "lit": "true", + "power": "11", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17474 + } }, { + "id": 18742, "properties": { - "candles": "2", - "lit": "true", + "power": "11", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17475 + } }, { + "id": 18743, "properties": { - "candles": "2", - "lit": "false", + "power": "11", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17476 + } }, { + "id": 18744, "properties": { - "candles": "2", - "lit": "false", + "power": "11", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17477 + } }, { + "id": 18745, "properties": { - "candles": "3", - "lit": "true", + "power": "12", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17478 + } }, { + "id": 18746, "properties": { - "candles": "3", - "lit": "true", + "power": "12", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17479 + } }, { + "id": 18747, "properties": { - "candles": "3", - "lit": "false", + "power": "12", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17480 + } }, { + "id": 18748, "properties": { - "candles": "3", - "lit": "false", + "power": "12", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17481 + } }, { + "id": 18749, "properties": { - "candles": "4", - "lit": "true", + "power": "12", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17482 + } }, { + "id": 18750, "properties": { - "candles": "4", - "lit": "true", + "power": "12", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17483 + } }, { + "id": 18751, "properties": { - "candles": "4", - "lit": "false", + "power": "13", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17484 + } }, { + "id": 18752, "properties": { - "candles": "4", - "lit": "false", + "power": "13", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17485 - } - ] - }, - "minecraft:gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + } + }, { + "id": 18753, "properties": { - "candles": "1", - "lit": "true", + "power": "13", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17486 + } }, { + "id": 18754, "properties": { - "candles": "1", - "lit": "true", + "power": "13", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17487 + } }, { + "id": 18755, "properties": { - "candles": "1", - "lit": "false", + "power": "13", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17488 + } }, { + "id": 18756, "properties": { - "candles": "1", - "lit": "false", + "power": "13", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17489, - "default": true + } }, { + "id": 18757, "properties": { - "candles": "2", - "lit": "true", + "power": "14", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17490 + } }, { + "id": 18758, "properties": { - "candles": "2", - "lit": "true", + "power": "14", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17491 + } }, { + "id": 18759, "properties": { - "candles": "2", - "lit": "false", + "power": "14", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17492 + } }, { + "id": 18760, "properties": { - "candles": "2", - "lit": "false", + "power": "14", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17493 + } }, { + "id": 18761, "properties": { - "candles": "3", - "lit": "true", + "power": "14", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17494 + } }, { + "id": 18762, "properties": { - "candles": "3", - "lit": "true", + "power": "14", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17495 + } }, { + "id": 18763, "properties": { - "candles": "3", - "lit": "false", + "power": "15", + "sculk_sensor_phase": "inactive", "waterlogged": "true" - }, - "id": 17496 + } }, { + "id": 18764, "properties": { - "candles": "3", - "lit": "false", + "power": "15", + "sculk_sensor_phase": "inactive", "waterlogged": "false" - }, - "id": 17497 + } }, { + "id": 18765, "properties": { - "candles": "4", - "lit": "true", + "power": "15", + "sculk_sensor_phase": "active", "waterlogged": "true" - }, - "id": 17498 + } }, { + "id": 18766, "properties": { - "candles": "4", - "lit": "true", + "power": "15", + "sculk_sensor_phase": "active", "waterlogged": "false" - }, - "id": 17499 + } }, { + "id": 18767, "properties": { - "candles": "4", - "lit": "false", + "power": "15", + "sculk_sensor_phase": "cooldown", "waterlogged": "true" - }, - "id": 17500 + } }, { + "id": 18768, "properties": { - "candles": "4", - "lit": "false", + "power": "15", + "sculk_sensor_phase": "cooldown", "waterlogged": "false" - }, - "id": 17501 + } } ] }, - "minecraft:light_gray_candle": { + "minecraft:sculk_shrieker": { "properties": { - "candles": [ - "1", - "2", - "3", - "4" + "can_summon": [ + "true", + "false" ], - "lit": [ + "shrieking": [ "true", "false" ], @@ -175874,1690 +187269,1958 @@ }, "states": [ { + "id": 18900, "properties": { - "candles": "1", - "lit": "true", + "can_summon": "true", + "shrieking": "true", "waterlogged": "true" - }, - "id": 17502 + } }, { + "id": 18901, "properties": { - "candles": "1", - "lit": "true", + "can_summon": "true", + "shrieking": "true", "waterlogged": "false" - }, - "id": 17503 + } }, { + "id": 18902, "properties": { - "candles": "1", - "lit": "false", + "can_summon": "true", + "shrieking": "false", "waterlogged": "true" - }, - "id": 17504 + } }, { + "id": 18903, "properties": { - "candles": "1", - "lit": "false", + "can_summon": "true", + "shrieking": "false", "waterlogged": "false" - }, - "id": 17505, - "default": true + } }, { + "id": 18904, "properties": { - "candles": "2", - "lit": "true", + "can_summon": "false", + "shrieking": "true", "waterlogged": "true" - }, - "id": 17506 + } }, { + "id": 18905, "properties": { - "candles": "2", - "lit": "true", + "can_summon": "false", + "shrieking": "true", "waterlogged": "false" - }, - "id": 17507 + } }, { + "id": 18906, "properties": { - "candles": "2", - "lit": "false", + "can_summon": "false", + "shrieking": "false", "waterlogged": "true" - }, - "id": 17508 + } }, { + "default": true, + "id": 18907, "properties": { - "candles": "2", - "lit": "false", + "can_summon": "false", + "shrieking": "false", "waterlogged": "false" - }, - "id": 17509 + } + } + ] + }, + "minecraft:sculk_vein": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18770, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18771, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17510 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18772, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17511 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18773, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17512 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18774, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17513 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18775, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17514 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18776, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17515 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18777, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17516 + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18778, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17517 - } - ] - }, - "minecraft:cyan_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 18779, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17518 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18780, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17519 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18781, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17520 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18782, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17521, - "default": true + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18783, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17522 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18784, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17523 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18785, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17524 + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18786, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17525 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18787, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17526 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18788, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17527 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18789, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17528 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18790, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17529 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18791, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17530 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18792, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17531 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18793, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17532 + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18794, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17533 - } - ] - }, - "minecraft:purple_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 18795, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17534 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18796, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17535 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18797, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17536 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18798, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17537, - "default": true + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18799, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17538 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18800, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17539 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18801, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17540 + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18802, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17541 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18803, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17542 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18804, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17543 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18805, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17544 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18806, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17545 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18807, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17546 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18808, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17547 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18809, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17548 + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18810, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17549 - } - ] - }, - "minecraft:blue_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 18811, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17550 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18812, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17551 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18813, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17552 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18814, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17553, - "default": true + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18815, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17554 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18816, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17555 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18817, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17556 + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18818, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17557 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18819, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17558 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18820, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17559 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18821, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17560 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18822, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17561 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18823, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17562 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18824, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17563 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18825, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17564 + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18826, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17565 - } - ] - }, - "minecraft:brown_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, { + "id": 18827, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17566 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18828, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17567 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18829, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17568 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18830, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17569, - "default": true + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18831, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17570 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18832, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17571 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18833, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17572 + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18834, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17573 + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18835, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18836, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18837, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18838, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18839, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18840, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18841, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18842, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17574 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18843, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17575 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18844, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17576 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18845, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17577 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18846, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17578 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18847, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17579 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18848, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17580 + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18849, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17581 - } - ] - }, - "minecraft:green_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 18850, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17582 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18851, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17583 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18852, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17584 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18853, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17585, - "default": true + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18854, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17586 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18855, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17587 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18856, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17588 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18857, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17589 + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18858, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17590 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18859, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17591 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18860, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17592 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18861, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17593 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18862, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17594 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18863, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17595 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18864, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17596 + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18865, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17597 - } - ] - }, - "minecraft:red_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 18866, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17598 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18867, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17599 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18868, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17600 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18869, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17601, - "default": true + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18870, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17602 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18871, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17603 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18872, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17604 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18873, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17605 + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18874, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17606 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18875, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17607 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18876, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17608 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18877, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17609 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18878, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17610 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18879, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17611 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18880, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17612 + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18881, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17613 - } - ] - }, - "minecraft:black_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, { + "id": 18882, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - }, - "id": 17614 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18883, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - }, - "id": 17615 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18884, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" - }, - "id": 17616 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18885, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - }, - "id": 17617, - "default": true + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18886, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - }, - "id": 17618 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18887, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" - }, - "id": 17619 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18888, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" - }, - "id": 17620 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18889, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" - }, - "id": 17621 + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18890, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" - }, - "id": 17622 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18891, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" - }, - "id": 17623 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18892, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" - }, - "id": 17624 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 18893, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" - }, - "id": 17625 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 18894, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" - }, - "id": 17626 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 18895, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" - }, - "id": 17627 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 18896, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" - }, - "id": 17628 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 18897, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - }, - "id": 17629 + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, + "minecraft:sea_lantern": { "states": [ { - "properties": { - "lit": "true" - }, - "id": 17630 - }, - { - "properties": { - "lit": "false" - }, - "id": 17631, - "default": true + "default": true, + "id": 8603 } ] }, - "minecraft:white_candle_cake": { + "minecraft:sea_pickle": { "properties": { - "lit": [ + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ "true", "false" ] }, "states": [ { + "default": true, + "id": 10521, "properties": { - "lit": "true" - }, - "id": 17632 + "pickles": "1", + "waterlogged": "true" + } }, { + "id": 10522, "properties": { - "lit": "false" - }, - "id": 17633, - "default": true - } - ] - }, - "minecraft:orange_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "pickles": "1", + "waterlogged": "false" + } + }, { + "id": 10523, "properties": { - "lit": "true" - }, - "id": 17634 + "pickles": "2", + "waterlogged": "true" + } }, { + "id": 10524, "properties": { - "lit": "false" - }, - "id": 17635, - "default": true - } - ] - }, - "minecraft:magenta_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "pickles": "2", + "waterlogged": "false" + } + }, { + "id": 10525, "properties": { - "lit": "true" - }, - "id": 17636 + "pickles": "3", + "waterlogged": "true" + } }, { + "id": 10526, "properties": { - "lit": "false" - }, - "id": 17637, - "default": true - } - ] - }, - "minecraft:light_blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "pickles": "3", + "waterlogged": "false" + } + }, { + "id": 10527, "properties": { - "lit": "true" - }, - "id": 17638 + "pickles": "4", + "waterlogged": "true" + } }, { + "id": 10528, "properties": { - "lit": "false" - }, - "id": 17639, - "default": true + "pickles": "4", + "waterlogged": "false" + } } ] }, - "minecraft:yellow_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, + "minecraft:seagrass": { "states": [ { - "properties": { - "lit": "true" - }, - "id": 17640 - }, - { - "properties": { - "lit": "false" - }, - "id": 17641, - "default": true + "default": true, + "id": 1599 } ] }, - "minecraft:lime_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, + "minecraft:shroomlight": { "states": [ { - "properties": { - "lit": "true" - }, - "id": 17642 - }, - { - "properties": { - "lit": "false" - }, - "id": 17643, - "default": true + "default": true, + "id": 16198 } ] }, - "minecraft:pink_candle_cake": { + "minecraft:shulker_box": { "properties": { - "lit": [ - "true", - "false" + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" ] }, "states": [ { + "id": 10153, "properties": { - "lit": "true" - }, - "id": 17644 + "facing": "north" + } }, { + "id": 10154, "properties": { - "lit": "false" - }, - "id": 17645, - "default": true - } - ] - }, - "minecraft:gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "facing": "east" + } + }, { + "id": 10155, "properties": { - "lit": "true" - }, - "id": 17646 + "facing": "south" + } }, { + "id": 10156, "properties": { - "lit": "false" - }, - "id": 17647, - "default": true - } - ] - }, - "minecraft:light_gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west" + } + }, { + "default": true, + "id": 10157, "properties": { - "lit": "true" - }, - "id": 17648 + "facing": "up" + } }, { + "id": 10158, "properties": { - "lit": "false" - }, - "id": 17649, - "default": true + "facing": "down" + } } ] }, - "minecraft:cyan_candle_cake": { + "minecraft:skeleton_skull": { "properties": { - "lit": [ - "true", - "false" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { + "default": true, + "id": 7107, "properties": { - "lit": "true" - }, - "id": 17650 + "rotation": "0" + } }, { + "id": 7108, "properties": { - "lit": "false" - }, - "id": 17651, - "default": true - } - ] - }, - "minecraft:purple_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "1" + } + }, { + "id": 7109, "properties": { - "lit": "true" - }, - "id": 17652 + "rotation": "2" + } }, { + "id": 7110, "properties": { - "lit": "false" - }, - "id": 17653, - "default": true - } - ] - }, - "minecraft:blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "3" + } + }, { + "id": 7111, "properties": { - "lit": "true" - }, - "id": 17654 + "rotation": "4" + } }, { + "id": 7112, "properties": { - "lit": "false" - }, - "id": 17655, - "default": true - } - ] - }, - "minecraft:brown_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "5" + } + }, { + "id": 7113, "properties": { - "lit": "true" - }, - "id": 17656 + "rotation": "6" + } }, { + "id": 7114, "properties": { - "lit": "false" - }, - "id": 17657, - "default": true - } - ] - }, - "minecraft:green_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "7" + } + }, { + "id": 7115, "properties": { - "lit": "true" - }, - "id": 17658 + "rotation": "8" + } }, { + "id": 7116, "properties": { - "lit": "false" - }, - "id": 17659, - "default": true - } - ] - }, - "minecraft:red_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "9" + } + }, { + "id": 7117, "properties": { - "lit": "true" - }, - "id": 17660 + "rotation": "10" + } }, { + "id": 7118, "properties": { - "lit": "false" - }, - "id": 17661, - "default": true - } - ] - }, - "minecraft:black_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + "rotation": "11" + } + }, { + "id": 7119, "properties": { - "lit": "true" - }, - "id": 17662 + "rotation": "12" + } }, { + "id": 7120, "properties": { - "lit": "false" - }, - "id": 17663, - "default": true - } - ] - }, - "minecraft:amethyst_block": { - "states": [ + "rotation": "13" + } + }, { - "id": 17664, - "default": true - } - ] - }, - "minecraft:budding_amethyst": { - "states": [ + "id": 7121, + "properties": { + "rotation": "14" + } + }, { - "id": 17665, - "default": true + "id": 7122, + "properties": { + "rotation": "15" + } } ] }, - "minecraft:amethyst_cluster": { + "minecraft:skeleton_wall_skull": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" + "east" ] }, "states": [ { + "default": true, + "id": 7123, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 17666 - }, - { - "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 17667 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17668 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17669 - }, - { - "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 17670 - }, - { - "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 17671 - }, - { - "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 17672 - }, - { - "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 17673 + "facing": "north" + } }, { + "id": 7124, "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17674 + "facing": "south" + } }, { + "id": 7125, "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17675, - "default": true + "facing": "west" + } }, { + "id": 7126, "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17676 - }, + "facing": "east" + } + } + ] + }, + "minecraft:slime_block": { + "states": [ { - "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17677 + "default": true, + "id": 8244 } ] }, - "minecraft:large_amethyst_bud": { + "minecraft:small_amethyst_bud": { "properties": { "facing": [ "north", @@ -177574,101 +189237,103 @@ }, "states": [ { + "id": 18657, "properties": { "facing": "north", "waterlogged": "true" - }, - "id": 17678 + } }, { + "id": 18658, "properties": { "facing": "north", "waterlogged": "false" - }, - "id": 17679 + } }, { + "id": 18659, "properties": { "facing": "east", "waterlogged": "true" - }, - "id": 17680 + } }, { + "id": 18660, "properties": { "facing": "east", "waterlogged": "false" - }, - "id": 17681 + } }, { + "id": 18661, "properties": { "facing": "south", "waterlogged": "true" - }, - "id": 17682 + } }, { + "id": 18662, "properties": { "facing": "south", "waterlogged": "false" - }, - "id": 17683 + } }, { + "id": 18663, "properties": { "facing": "west", "waterlogged": "true" - }, - "id": 17684 + } }, { + "id": 18664, "properties": { "facing": "west", "waterlogged": "false" - }, - "id": 17685 + } }, { + "id": 18665, "properties": { "facing": "up", "waterlogged": "true" - }, - "id": 17686 + } }, { + "default": true, + "id": 18666, "properties": { "facing": "up", "waterlogged": "false" - }, - "id": 17687, - "default": true + } }, { + "id": 18667, "properties": { "facing": "down", "waterlogged": "true" - }, - "id": 17688 + } }, { + "id": 18668, "properties": { "facing": "down", "waterlogged": "false" - }, - "id": 17689 + } } ] }, - "minecraft:medium_amethyst_bud": { + "minecraft:small_dripleaf": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" + ], + "half": [ + "upper", + "lower" ], "waterlogged": [ "true", @@ -177677,251 +189342,239 @@ }, "states": [ { + "id": 19758, "properties": { "facing": "north", + "half": "upper", "waterlogged": "true" - }, - "id": 17690 + } }, { + "id": 19759, "properties": { "facing": "north", + "half": "upper", "waterlogged": "false" - }, - "id": 17691 + } }, { + "id": 19760, "properties": { - "facing": "east", + "facing": "north", + "half": "lower", "waterlogged": "true" - }, - "id": 17692 + } }, { + "default": true, + "id": 19761, "properties": { - "facing": "east", + "facing": "north", + "half": "lower", "waterlogged": "false" - }, - "id": 17693 + } }, { + "id": 19762, "properties": { "facing": "south", + "half": "upper", "waterlogged": "true" - }, - "id": 17694 + } }, { + "id": 19763, "properties": { "facing": "south", + "half": "upper", "waterlogged": "false" - }, - "id": 17695 + } }, { + "id": 19764, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 19765, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 19766, "properties": { "facing": "west", + "half": "upper", "waterlogged": "true" - }, - "id": 17696 + } }, { + "id": 19767, "properties": { "facing": "west", + "half": "upper", "waterlogged": "false" - }, - "id": 17697 + } }, { + "id": 19768, "properties": { - "facing": "up", + "facing": "west", + "half": "lower", "waterlogged": "true" - }, - "id": 17698 + } }, { + "id": 19769, "properties": { - "facing": "up", + "facing": "west", + "half": "lower", "waterlogged": "false" - }, - "id": 17699, - "default": true + } }, { + "id": 19770, "properties": { - "facing": "down", + "facing": "east", + "half": "upper", "waterlogged": "true" - }, - "id": 17700 + } }, { + "id": 19771, "properties": { - "facing": "down", + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 19772, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 19773, + "properties": { + "facing": "east", + "half": "lower", "waterlogged": "false" - }, - "id": 17701 + } } ] }, - "minecraft:small_amethyst_bud": { + "minecraft:smithing_table": { + "states": [ + { + "default": true, + "id": 16054 + } + ] + }, + "minecraft:smoker": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "waterlogged": [ + "lit": [ "true", "false" ] }, "states": [ { + "id": 16008, "properties": { "facing": "north", - "waterlogged": "true" - }, - "id": 17702 + "lit": "true" + } }, { + "default": true, + "id": 16009, "properties": { "facing": "north", - "waterlogged": "false" - }, - "id": 17703 - }, - { - "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 17704 - }, - { - "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 17705 + "lit": "false" + } }, { + "id": 16010, "properties": { "facing": "south", - "waterlogged": "true" - }, - "id": 17706 + "lit": "true" + } }, { + "id": 16011, "properties": { "facing": "south", - "waterlogged": "false" - }, - "id": 17707 + "lit": "false" + } }, { + "id": 16012, "properties": { "facing": "west", - "waterlogged": "true" - }, - "id": 17708 + "lit": "true" + } }, { + "id": 16013, "properties": { "facing": "west", - "waterlogged": "false" - }, - "id": 17709 - }, - { - "properties": { - "facing": "up", - "waterlogged": "true" - }, - "id": 17710 - }, - { - "properties": { - "facing": "up", - "waterlogged": "false" - }, - "id": 17711, - "default": true + "lit": "false" + } }, { + "id": 16014, "properties": { - "facing": "down", - "waterlogged": "true" - }, - "id": 17712 + "facing": "east", + "lit": "true" + } }, { + "id": 16015, "properties": { - "facing": "down", - "waterlogged": "false" - }, - "id": 17713 - } - ] - }, - "minecraft:tuff": { - "states": [ - { - "id": 17714, - "default": true - } - ] - }, - "minecraft:calcite": { - "states": [ - { - "id": 17715, - "default": true + "facing": "east", + "lit": "false" + } } ] }, - "minecraft:tinted_glass": { + "minecraft:smooth_basalt": { "states": [ { - "id": 17716, - "default": true + "default": true, + "id": 21431 } ] }, - "minecraft:powder_snow": { + "minecraft:smooth_quartz": { "states": [ { - "id": 17717, - "default": true + "default": true, + "id": 9169 } ] }, - "minecraft:sculk_sensor": { + "minecraft:smooth_quartz_slab": { "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" + "type": [ + "top", + "bottom", + "double" ], "waterlogged": [ "true", @@ -177930,857 +189583,865 @@ }, "states": [ { + "id": 11712, "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" - }, - "id": 17718 - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" - }, - "id": 17719, - "default": true - }, - { - "properties": { - "power": "0", - "sculk_sensor_phase": "active", + "type": "top", "waterlogged": "true" - }, - "id": 17720 + } }, { + "id": 11713, "properties": { - "power": "0", - "sculk_sensor_phase": "active", + "type": "top", "waterlogged": "false" - }, - "id": 17721 + } }, { + "id": 11714, "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", + "type": "bottom", "waterlogged": "true" - }, - "id": 17722 + } }, { + "default": true, + "id": 11715, "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", + "type": "bottom", "waterlogged": "false" - }, - "id": 17723 + } }, { + "id": 11716, "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", + "type": "double", "waterlogged": "true" - }, - "id": 17724 + } }, { + "id": 11717, "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", + "type": "double", "waterlogged": "false" - }, - "id": 17725 - }, + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11190, "properties": { - "power": "1", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 17726 + } }, { + "id": 11191, "properties": { - "power": "1", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 17727 + } }, { + "id": 11192, "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17728 + } }, { + "id": 11193, "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17729 + } }, { + "id": 11194, "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17730 + } }, { + "id": 11195, "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17731 + } }, { + "id": 11196, "properties": { - "power": "2", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17732 + } }, { + "id": 11197, "properties": { - "power": "2", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17733 + } }, { + "id": 11198, "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17734 + } }, { + "id": 11199, "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17735 + } }, { + "id": 11200, "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 17736 + } }, { + "default": true, + "id": 11201, "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 17737 + } }, { + "id": 11202, "properties": { - "power": "3", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17738 + } }, { + "id": 11203, "properties": { - "power": "3", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17739 + } }, { + "id": 11204, "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17740 + } }, { + "id": 11205, "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", + "facing": "north", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17741 + } }, { + "id": 11206, "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17742 + } }, { + "id": 11207, "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", + "facing": "north", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17743 + } }, { + "id": 11208, "properties": { - "power": "4", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17744 + } }, { + "id": 11209, "properties": { - "power": "4", - "sculk_sensor_phase": "active", + "facing": "north", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17745 + } }, { + "id": 11210, "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 17746 + } }, { + "id": 11211, "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 17747 + } }, { + "id": 11212, "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17748 + } }, { + "id": 11213, "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17749 + } }, { + "id": 11214, "properties": { - "power": "5", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17750 + } }, { + "id": 11215, "properties": { - "power": "5", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17751 + } }, { + "id": 11216, "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17752 + } }, { + "id": 11217, "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17753 + } }, { + "id": 11218, "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17754 + } }, { + "id": 11219, "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17755 + } }, { + "id": 11220, "properties": { - "power": "6", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 17756 + } }, { + "id": 11221, "properties": { - "power": "6", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 17757 + } }, { + "id": 11222, "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17758 + } }, { + "id": 11223, "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17759 + } }, { + "id": 11224, "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17760 + } }, { + "id": 11225, "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17761 + } }, { + "id": 11226, "properties": { - "power": "7", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17762 + } }, { + "id": 11227, "properties": { - "power": "7", - "sculk_sensor_phase": "active", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17763 + } }, { + "id": 11228, "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17764 + } }, { + "id": 11229, "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17765 + } }, { + "id": 11230, "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 17766 + } }, { + "id": 11231, "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 17767 + } }, { + "id": 11232, "properties": { - "power": "8", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17768 + } }, { + "id": 11233, "properties": { - "power": "8", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17769 + } }, { + "id": 11234, "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17770 + } }, { + "id": 11235, "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17771 + } }, { + "id": 11236, "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17772 + } }, { + "id": 11237, "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17773 + } }, { + "id": 11238, "properties": { - "power": "9", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17774 + } }, { + "id": 11239, "properties": { - "power": "9", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17775 + } }, { + "id": 11240, "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 17776 + } }, { + "id": 11241, "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 17777 + } }, { + "id": 11242, "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17778 + } }, { + "id": 11243, "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17779 + } }, { + "id": 11244, "properties": { - "power": "10", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17780 + } }, { + "id": 11245, "properties": { - "power": "10", - "sculk_sensor_phase": "active", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17781 + } }, { + "id": 11246, "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17782 + } }, { + "id": 11247, "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17783 + } }, { + "id": 11248, "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17784 + } }, { + "id": 11249, "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17785 + } }, { + "id": 11250, "properties": { - "power": "11", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "true" - }, - "id": 17786 + } }, { + "id": 11251, "properties": { - "power": "11", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" - }, - "id": 17787 + } }, { + "id": 11252, "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17788 + } }, { + "id": 11253, "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17789 + } }, { + "id": 11254, "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17790 + } }, { + "id": 11255, "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17791 + } }, { + "id": 11256, "properties": { - "power": "12", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17792 + } }, { + "id": 11257, "properties": { - "power": "12", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17793 + } }, { + "id": 11258, "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17794 + } }, { + "id": 11259, "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17795 + } }, { + "id": 11260, "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "true" - }, - "id": 17796 + } }, { + "id": 11261, "properties": { - "power": "13", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "false" - }, - "id": 17797 + } }, { + "id": 11262, "properties": { - "power": "13", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" - }, - "id": 17798 + } }, { + "id": 11263, "properties": { - "power": "13", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" - }, - "id": 17799 + } }, { + "id": 11264, "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" - }, - "id": 17800 + } }, { + "id": 11265, "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" - }, - "id": 17801 + } }, { + "id": 11266, "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" - }, - "id": 17802 + } }, { + "id": 11267, "properties": { - "power": "14", - "sculk_sensor_phase": "inactive", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" - }, - "id": 17803 + } }, { + "id": 11268, "properties": { - "power": "14", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" - }, - "id": 17804 + } }, { + "id": 11269, "properties": { - "power": "14", - "sculk_sensor_phase": "active", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" - }, - "id": 17805 - }, - { - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" - }, - "id": 17806 - }, + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ { - "properties": { - "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" - }, - "id": 17807 - }, + "default": true, + "id": 9170 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 11676, "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", + "type": "top", "waterlogged": "true" - }, - "id": 17808 + } }, { + "id": 11677, "properties": { - "power": "15", - "sculk_sensor_phase": "inactive", + "type": "top", "waterlogged": "false" - }, - "id": 17809 + } }, { + "id": 11678, "properties": { - "power": "15", - "sculk_sensor_phase": "active", + "type": "bottom", "waterlogged": "true" - }, - "id": 17810 + } }, { + "default": true, + "id": 11679, "properties": { - "power": "15", - "sculk_sensor_phase": "active", + "type": "bottom", "waterlogged": "false" - }, - "id": 17811 + } }, { + "id": 11680, "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", + "type": "double", "waterlogged": "true" - }, - "id": 17812 + } }, { + "id": 11681, "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", + "type": "double", "waterlogged": "false" - }, - "id": 17813 - } - ] - }, - "minecraft:oxidized_copper": { - "states": [ - { - "id": 17814, - "default": true - } - ] - }, - "minecraft:weathered_copper": { - "states": [ - { - "id": 17815, - "default": true - } - ] - }, - "minecraft:exposed_copper": { - "states": [ - { - "id": 17816, - "default": true - } - ] - }, - "minecraft:copper_block": { - "states": [ - { - "id": 17817, - "default": true - } - ] - }, - "minecraft:copper_ore": { - "states": [ - { - "id": 17818, - "default": true - } - ] - }, - "minecraft:deepslate_copper_ore": { - "states": [ - { - "id": 17819, - "default": true - } - ] - }, - "minecraft:oxidized_cut_copper": { - "states": [ - { - "id": 17820, - "default": true + } } ] }, - "minecraft:weathered_cut_copper": { - "states": [ - { - "id": 17821, - "default": true - } - ] - }, - "minecraft:exposed_cut_copper": { - "states": [ - { - "id": 17822, - "default": true - } - ] - }, - "minecraft:cut_copper": { - "states": [ - { - "id": 17823, - "default": true - } - ] - }, - "minecraft:oxidized_cut_copper_stairs": { + "minecraft:smooth_red_sandstone_stairs": { "properties": { "facing": [ "north", @@ -178806,729 +190467,795 @@ }, "states": [ { + "id": 10630, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17824 + } }, { + "id": 10631, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17825 + } }, { + "id": 10632, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17826 + } }, { + "id": 10633, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17827 + } }, { + "id": 10634, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17828 + } }, { + "id": 10635, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17829 + } }, { + "id": 10636, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17830 + } }, { + "id": 10637, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17831 + } }, { + "id": 10638, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17832 + } }, { + "id": 10639, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17833 + } }, { + "id": 10640, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17834 + } }, { + "default": true, + "id": 10641, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17835, - "default": true + } }, { + "id": 10642, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17836 + } }, { + "id": 10643, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17837 + } }, { + "id": 10644, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17838 + } }, { + "id": 10645, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17839 + } }, { + "id": 10646, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17840 + } }, { + "id": 10647, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17841 + } }, { + "id": 10648, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17842 + } }, { + "id": 10649, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17843 + } }, { + "id": 10650, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17844 + } }, { + "id": 10651, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17845 + } }, { + "id": 10652, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17846 + } }, { + "id": 10653, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17847 + } }, { + "id": 10654, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17848 + } }, { + "id": 10655, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17849 + } }, { + "id": 10656, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17850 + } }, { + "id": 10657, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17851 + } }, { + "id": 10658, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17852 + } }, { + "id": 10659, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17853 + } }, { + "id": 10660, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17854 + } }, { + "id": 10661, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17855 + } }, { + "id": 10662, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17856 + } }, { + "id": 10663, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17857 + } }, { + "id": 10664, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17858 + } }, { + "id": 10665, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17859 + } }, { + "id": 10666, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17860 + } }, { + "id": 10667, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17861 + } }, { + "id": 10668, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17862 + } }, { + "id": 10669, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17863 + } }, { + "id": 10670, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17864 + } }, { + "id": 10671, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17865 + } }, { + "id": 10672, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17866 + } }, { + "id": 10673, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17867 + } }, { + "id": 10674, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17868 + } }, { + "id": 10675, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17869 + } }, { + "id": 10676, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17870 + } }, { + "id": 10677, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17871 + } }, { + "id": 10678, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17872 + } }, { + "id": 10679, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17873 + } }, { + "id": 10680, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17874 + } }, { + "id": 10681, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17875 + } }, { + "id": 10682, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17876 + } }, { + "id": 10683, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17877 + } }, { + "id": 10684, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17878 + } }, { + "id": 10685, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17879 + } }, { + "id": 10686, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17880 + } }, { + "id": 10687, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17881 + } }, { + "id": 10688, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17882 + } }, { + "id": 10689, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17883 + } }, { + "id": 10690, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17884 + } }, { + "id": 10691, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17885 + } }, { + "id": 10692, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17886 + } }, { + "id": 10693, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17887 + } }, { + "id": 10694, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17888 + } }, { + "id": 10695, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17889 + } }, { + "id": 10696, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17890 + } }, { + "id": 10697, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17891 + } }, { + "id": 10698, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17892 + } }, { + "id": 10699, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17893 + } }, { + "id": 10700, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17894 + } }, { + "id": 10701, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17895 + } }, { + "id": 10702, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17896 + } }, { + "id": 10703, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17897 + } }, { + "id": 10704, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17898 + } }, { + "id": 10705, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17899 + } }, { + "id": 10706, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17900 + } }, { + "id": 10707, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17901 + } }, { + "id": 10708, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17902 + } }, { + "id": 10709, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17903 + } } ] }, - "minecraft:weathered_cut_copper_stairs": { + "minecraft:smooth_sandstone": { + "states": [ + { + "default": true, + "id": 9168 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11706, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11707, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11708, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11709, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11710, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11711, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { "properties": { "facing": [ "north", @@ -179554,746 +191281,742 @@ }, "states": [ { + "id": 11110, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17904 + } }, { + "id": 11111, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17905 + } }, { + "id": 11112, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17906 + } }, { + "id": 11113, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17907 + } }, { + "id": 11114, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17908 + } }, { + "id": 11115, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17909 + } }, { + "id": 11116, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17910 + } }, { + "id": 11117, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17911 + } }, { + "id": 11118, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17912 + } }, { + "id": 11119, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17913 + } }, { + "id": 11120, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17914 + } }, { + "default": true, + "id": 11121, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17915, - "default": true + } }, { + "id": 11122, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17916 + } }, { + "id": 11123, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17917 + } }, { + "id": 11124, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17918 + } }, { + "id": 11125, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17919 + } }, { + "id": 11126, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17920 + } }, { + "id": 11127, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17921 + } }, { + "id": 11128, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17922 + } }, { + "id": 11129, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17923 + } }, { + "id": 11130, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17924 + } }, { + "id": 11131, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17925 + } }, { + "id": 11132, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17926 + } }, { + "id": 11133, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17927 + } }, { + "id": 11134, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17928 + } }, { + "id": 11135, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17929 + } }, { + "id": 11136, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17930 + } }, { + "id": 11137, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17931 + } }, { + "id": 11138, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17932 + } }, { + "id": 11139, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17933 + } }, { + "id": 11140, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17934 + } }, { + "id": 11141, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17935 + } }, { + "id": 11142, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17936 + } }, { + "id": 11143, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17937 + } }, { + "id": 11144, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17938 + } }, { + "id": 11145, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17939 + } }, { + "id": 11146, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17940 + } }, { + "id": 11147, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17941 + } }, { + "id": 11148, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17942 + } }, { + "id": 11149, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17943 + } }, { + "id": 11150, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17944 + } }, { + "id": 11151, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17945 + } }, { + "id": 11152, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17946 + } }, { + "id": 11153, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17947 + } }, { + "id": 11154, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17948 + } }, { + "id": 11155, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17949 + } }, { + "id": 11156, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17950 + } }, { + "id": 11157, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17951 + } }, { + "id": 11158, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17952 + } }, { + "id": 11159, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17953 + } }, { + "id": 11160, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17954 + } }, { + "id": 11161, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17955 + } }, { + "id": 11162, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17956 + } }, { + "id": 11163, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17957 + } }, { + "id": 11164, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17958 + } }, { + "id": 11165, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17959 + } }, { + "id": 11166, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17960 + } }, { + "id": 11167, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17961 + } }, { + "id": 11168, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17962 + } }, { + "id": 11169, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17963 + } }, { + "id": 11170, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 17964 + } }, { + "id": 11171, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 17965 + } }, { + "id": 11172, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17966 + } }, { + "id": 11173, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17967 + } }, { + "id": 11174, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17968 + } }, { + "id": 11175, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17969 + } }, { + "id": 11176, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17970 + } }, { + "id": 11177, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17971 + } }, { + "id": 11178, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17972 + } }, { + "id": 11179, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17973 + } }, { + "id": 11180, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 17974 + } }, { + "id": 11181, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 17975 + } }, { + "id": 11182, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 17976 + } }, { + "id": 11183, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 17977 + } }, { + "id": 11184, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 17978 + } }, { + "id": 11185, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 17979 + } }, { + "id": 11186, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 17980 + } }, { + "id": 11187, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 17981 + } }, { + "id": 11188, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 17982 + } }, { + "id": 11189, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 17983 + } } ] }, - "minecraft:exposed_cut_copper_stairs": { + "minecraft:smooth_stone": { + "states": [ + { + "default": true, + "id": 9167 + } + ] + }, + "minecraft:smooth_stone_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ + "type": [ "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "bottom", + "double" ], "waterlogged": [ "true", @@ -180302,729 +192025,787 @@ }, "states": [ { + "id": 9089, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "true" - }, - "id": 17984 + } }, { + "id": 9090, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "type": "top", "waterlogged": "false" - }, - "id": 17985 + } }, { + "id": 9091, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 17986 + } }, { + "default": true, + "id": 9092, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 17987 + } }, { + "id": 9093, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "true" - }, - "id": 17988 + } }, { + "id": 9094, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "type": "double", "waterlogged": "false" - }, - "id": 17989 - }, + } + } + ] + }, + "minecraft:snow": { + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ { + "default": true, + "id": 4230, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 17990 + "layers": "1" + } }, { + "id": 4231, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 17991 + "layers": "2" + } }, { + "id": 4232, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 17992 + "layers": "3" + } }, { + "id": 4233, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 17993 + "layers": "4" + } }, { + "id": 4234, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 17994 + "layers": "5" + } }, { + "id": 4235, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 17995, - "default": true + "layers": "6" + } }, { + "id": 4236, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 17996 + "layers": "7" + } }, { + "id": 4237, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 17997 - }, + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "states": [ { + "default": true, + "id": 4239 + } + ] + }, + "minecraft:soul_campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16131, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", + "lit": "true", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 17998 + } }, { + "id": 16132, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", + "lit": "true", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 17999 + } }, { + "id": 16133, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", + "lit": "true", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18000 + } }, { + "default": true, + "id": 16134, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18001 + } }, { + "id": 16135, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", + "lit": "false", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18002 + } }, { + "id": 16136, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18003 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18004 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18005 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18006 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18007 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18008 - }, - { - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", + "lit": "false", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18009 + } }, { + "id": 16137, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "facing": "north", + "lit": "false", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18010 + } }, { + "id": 16138, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "facing": "north", + "lit": "false", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18011 + } }, { + "id": 16139, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", + "lit": "true", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18012 + } }, { + "id": 16140, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", + "lit": "true", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18013 + } }, { + "id": 16141, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "lit": "true", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18014 + } }, { + "id": 16142, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18015 + } }, { + "id": 16143, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "lit": "false", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18016 + } }, { + "id": 16144, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", + "lit": "false", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18017 + } }, { + "id": 16145, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", + "lit": "false", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18018 + } }, { + "id": 16146, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", + "lit": "false", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18019 + } }, { + "id": 16147, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "facing": "west", + "lit": "true", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18020 + } }, { + "id": 16148, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "facing": "west", + "lit": "true", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18021 + } }, { + "id": 16149, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "facing": "west", + "lit": "true", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18022 + } }, { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "id": 16150, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18023 + } }, { + "id": 16151, "properties": { "facing": "west", - "half": "top", - "shape": "straight", + "lit": "false", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18024 + } }, { + "id": 16152, "properties": { "facing": "west", - "half": "top", - "shape": "straight", + "lit": "false", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18025 + } }, { + "id": 16153, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", + "lit": "false", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18026 + } }, { + "id": 16154, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", + "lit": "false", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18027 + } }, { + "id": 16155, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "facing": "east", + "lit": "true", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18028 + } }, { + "id": 16156, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "facing": "east", + "lit": "true", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18029 + } }, { + "id": 16157, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "facing": "east", + "lit": "true", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18030 + } }, { + "id": 16158, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "facing": "east", + "lit": "true", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18031 + } }, { + "id": 16159, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "facing": "east", + "lit": "false", + "signal_fire": "true", "waterlogged": "true" - }, - "id": 18032 + } }, { + "id": 16160, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "facing": "east", + "lit": "false", + "signal_fire": "true", "waterlogged": "false" - }, - "id": 18033 + } }, { + "id": 16161, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "facing": "east", + "lit": "false", + "signal_fire": "false", "waterlogged": "true" - }, - "id": 18034 + } }, { + "id": 16162, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "facing": "east", + "lit": "false", + "signal_fire": "false", "waterlogged": "false" - }, - "id": 18035 - }, + } + } + ] + }, + "minecraft:soul_fire": { + "states": [ + { + "default": true, + "id": 2206 + } + ] + }, + "minecraft:soul_lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16095, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "hanging": "true", "waterlogged": "true" - }, - "id": 18036 + } }, { + "id": 16096, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "hanging": "true", "waterlogged": "false" - }, - "id": 18037 + } }, { + "id": 16097, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "hanging": "false", "waterlogged": "true" - }, - "id": 18038 + } }, { + "default": true, + "id": 16098, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "hanging": "false", "waterlogged": "false" - }, - "id": 18039 + } + } + ] + }, + "minecraft:soul_sand": { + "states": [ + { + "default": true, + "id": 4309 + } + ] + }, + "minecraft:soul_soil": { + "states": [ + { + "default": true, + "id": 4310 + } + ] + }, + "minecraft:soul_torch": { + "states": [ + { + "default": true, + "id": 4317 + } + ] + }, + "minecraft:soul_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 4318, + "properties": { + "facing": "north" + } }, { + "id": 4319, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18040 + "facing": "south" + } }, { + "id": 4320, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18041 + "facing": "west" + } }, { + "id": 4321, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18042 + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "states": [ + { + "default": true, + "id": 2207 + } + ] + }, + "minecraft:sponge": { + "states": [ + { + "default": true, + "id": 458 + } + ] + }, + "minecraft:spore_blossom": { + "states": [ + { + "default": true, + "id": 19713 + } + ] + }, + "minecraft:spruce_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6963, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 6964, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18043 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 6965, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18044 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 6966, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18045 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 6967, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18046 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 6968, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18047 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 6969, "properties": { + "face": "floor", "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18048 + "powered": "true" + } }, { + "id": 6970, "properties": { + "face": "floor", "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18049 + "powered": "false" + } }, { + "id": 6971, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18050 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 6972, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18051 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 6973, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18052 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 6974, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18053 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 6975, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18054 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 6976, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18055 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 6977, "properties": { + "face": "wall", "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18056 + "powered": "true" + } }, { + "id": 6978, "properties": { + "face": "wall", "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18057 + "powered": "false" + } }, { + "id": 6979, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18058 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 6980, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18059 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 6981, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18060 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 6982, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18061 + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6983, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6984, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 6985, "properties": { + "face": "ceiling", "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18062 + "powered": "true" + } }, { + "id": 6986, "properties": { + "face": "ceiling", "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18063 + "powered": "false" + } } ] }, - "minecraft:cut_copper_stairs": { + "minecraft:spruce_door": { "properties": { "facing": [ "north", @@ -181033,1790 +192814,1970 @@ "east" ], "half": [ - "top", - "bottom" + "upper", + "lower" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "hinge": [ + "left", + "right" ], - "waterlogged": [ + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 9555, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18064 + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9556, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18065 + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9557, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18066 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9558, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18067 + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9559, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18068 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9560, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18069 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9561, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18070 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9562, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18071 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9563, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18072 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9564, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18073 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9565, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18074 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9566, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18075, - "default": true + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9567, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18076 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9568, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18077 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9569, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18078 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9570, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18079 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9571, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18080 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9572, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18081 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9573, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18082 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9574, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18083 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9575, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18084 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9576, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18085 + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9577, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18086 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9578, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18087 + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9579, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18088 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9580, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18089 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9581, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18090 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9582, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18091 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9583, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18092 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9584, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18093 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9585, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18094 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9586, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18095 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9587, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18096 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9588, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18097 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9589, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18098 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9590, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18099 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9591, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18100 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9592, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18101 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9593, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18102 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9594, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18103 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9595, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18104 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9596, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18105 + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9597, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18106 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9598, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18107 + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9599, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18108 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9600, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18109 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9601, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18110 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9602, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18111 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9603, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18112 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9604, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18113 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9605, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18114 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9606, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18115 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9607, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18116 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9608, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18117 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9609, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18118 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 9610, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18119 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 9611, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18120 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 9612, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18121 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 9613, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18122 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 9614, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18123 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 9615, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18124 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 9616, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18125 + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 9617, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18126 + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 9618, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9363, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9364, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9365, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9366, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9367, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9368, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9369, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9370, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9371, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9372, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9373, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9374, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9375, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9376, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9377, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9378, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18127 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9379, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18128 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9380, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18129 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9381, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18130 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9382, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18131 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9383, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18132 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9384, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18133 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9385, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18134 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9386, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18135 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9387, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18136 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9388, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18137 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9389, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18138 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 9390, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18139 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 9391, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18140 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 9392, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18141 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 9393, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18142 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 9394, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18143 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } } ] }, - "minecraft:oxidized_cut_copper_slab": { + "minecraft:spruce_fence_gate": { "properties": { - "type": [ - "top", - "bottom", - "double" + "facing": [ + "north", + "south", + "west", + "east" ], - "waterlogged": [ + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { + "id": 9171, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18144 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9172, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18145 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9173, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18146 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9174, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18147, - "default": true + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9175, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18148 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9176, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18149 - } - ] - }, - "minecraft:weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, { + "id": 9177, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18150 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 9178, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18151 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9179, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18152 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9180, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18153, - "default": true + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9181, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18154 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9182, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18155 - } - ] - }, - "minecraft:exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, { + "id": 9183, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18156 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9184, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18157 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9185, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18158 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9186, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18159, - "default": true + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 9187, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18160 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9188, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18161 - } - ] - }, - "minecraft:cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, { + "id": 9189, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18162 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9190, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18163 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9191, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18164 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9192, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18165, - "default": true + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9193, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18166 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9194, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18167 - } - ] - }, - "minecraft:waxed_copper_block": { - "states": [ - { - "id": 18168, - "default": true - } - ] - }, - "minecraft:waxed_weathered_copper": { - "states": [ - { - "id": 18169, - "default": true - } - ] - }, - "minecraft:waxed_exposed_copper": { - "states": [ - { - "id": 18170, - "default": true - } - ] - }, - "minecraft:waxed_oxidized_copper": { - "states": [ - { - "id": 18171, - "default": true - } - ] - }, - "minecraft:waxed_oxidized_cut_copper": { - "states": [ - { - "id": 18172, - "default": true - } - ] - }, - "minecraft:waxed_weathered_cut_copper": { - "states": [ - { - "id": 18173, - "default": true - } - ] - }, - "minecraft:waxed_exposed_cut_copper": { - "states": [ - { - "id": 18174, - "default": true - } - ] - }, - "minecraft:waxed_cut_copper": { - "states": [ - { - "id": 18175, - "default": true - } - ] - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, { + "id": 9195, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18176 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 9196, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18177 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 9197, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18178 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 9198, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18179 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 9199, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18180 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 9200, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18181 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 9201, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18182 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 9202, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18183 - }, + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 234, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", + "distance": "1", + "persistent": "true", "waterlogged": "true" - }, - "id": 18184 + } }, { + "id": 235, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", + "distance": "1", + "persistent": "true", "waterlogged": "false" - }, - "id": 18185 + } }, { + "id": 236, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "distance": "1", + "persistent": "false", "waterlogged": "true" - }, - "id": 18186 + } }, { + "id": 237, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "distance": "1", + "persistent": "false", "waterlogged": "false" - }, - "id": 18187, - "default": true + } }, { + "id": 238, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", + "distance": "2", + "persistent": "true", "waterlogged": "true" - }, - "id": 18188 + } }, { + "id": 239, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", + "distance": "2", + "persistent": "true", "waterlogged": "false" - }, - "id": 18189 + } }, { + "id": 240, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", + "distance": "2", + "persistent": "false", "waterlogged": "true" - }, - "id": 18190 + } }, { + "id": 241, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", + "distance": "2", + "persistent": "false", "waterlogged": "false" - }, - "id": 18191 + } }, { + "id": 242, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", + "distance": "3", + "persistent": "true", "waterlogged": "true" - }, - "id": 18192 + } }, { + "id": 243, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", + "distance": "3", + "persistent": "true", "waterlogged": "false" - }, - "id": 18193 + } }, { + "id": 244, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", + "distance": "3", + "persistent": "false", "waterlogged": "true" - }, - "id": 18194 + } }, { + "id": 245, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", + "distance": "3", + "persistent": "false", "waterlogged": "false" - }, - "id": 18195 + } }, { + "id": 246, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "distance": "4", + "persistent": "true", "waterlogged": "true" - }, - "id": 18196 + } }, { + "id": 247, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "distance": "4", + "persistent": "true", "waterlogged": "false" - }, - "id": 18197 + } }, { + "id": 248, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "distance": "4", + "persistent": "false", "waterlogged": "true" - }, - "id": 18198 + } }, { + "id": 249, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", + "distance": "4", + "persistent": "false", "waterlogged": "false" - }, - "id": 18199 + } }, { + "id": 250, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", + "distance": "5", + "persistent": "true", "waterlogged": "true" - }, - "id": 18200 + } }, { + "id": 251, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", + "distance": "5", + "persistent": "true", "waterlogged": "false" - }, - "id": 18201 + } }, { + "id": 252, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "distance": "5", + "persistent": "false", "waterlogged": "true" - }, - "id": 18202 + } }, { + "id": 253, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "distance": "5", + "persistent": "false", "waterlogged": "false" - }, - "id": 18203 + } }, { + "id": 254, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "distance": "6", + "persistent": "true", "waterlogged": "true" - }, - "id": 18204 + } }, { + "id": 255, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "distance": "6", + "persistent": "true", "waterlogged": "false" - }, - "id": 18205 + } }, { + "id": 256, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "distance": "6", + "persistent": "false", "waterlogged": "true" - }, - "id": 18206 + } }, { + "id": 257, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "distance": "6", + "persistent": "false", "waterlogged": "false" - }, - "id": 18207 + } }, { + "id": 258, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "distance": "7", + "persistent": "true", "waterlogged": "true" - }, - "id": 18208 + } }, { + "id": 259, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "distance": "7", + "persistent": "true", "waterlogged": "false" - }, - "id": 18209 + } }, { + "id": 260, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "distance": "7", + "persistent": "false", "waterlogged": "true" - }, - "id": 18210 + } }, { + "default": true, + "id": 261, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "distance": "7", + "persistent": "false", "waterlogged": "false" - }, - "id": 18211 - }, + } + } + ] + }, + "minecraft:spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 120, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18212 + "axis": "x" + } }, { + "default": true, + "id": 121, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18213 + "axis": "y" + } }, { + "id": 122, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18214 - }, + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 4180, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18215 + "powered": "true" + } }, { + "default": true, + "id": 4181, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18216 - }, + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ { + "default": true, + "id": 24, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18217 + "stage": "0" + } }, { + "id": 25, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "stage": "1" + } + } + ] + }, + "minecraft:spruce_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3668, + "properties": { + "rotation": "0", "waterlogged": "true" - }, - "id": 18218 + } }, { + "default": true, + "id": 3669, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "rotation": "0", "waterlogged": "false" - }, - "id": 18219 + } }, { + "id": 3670, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "rotation": "1", "waterlogged": "true" - }, - "id": 18220 + } }, { + "id": 3671, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "rotation": "1", "waterlogged": "false" - }, - "id": 18221 + } }, { + "id": 3672, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "rotation": "2", "waterlogged": "true" - }, - "id": 18222 + } }, { + "id": 3673, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "rotation": "2", "waterlogged": "false" - }, - "id": 18223 + } }, { + "id": 3674, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "rotation": "3", "waterlogged": "true" - }, - "id": 18224 + } }, { + "id": 3675, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "rotation": "3", "waterlogged": "false" - }, - "id": 18225 + } }, { + "id": 3676, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "rotation": "4", "waterlogged": "true" - }, - "id": 18226 + } }, { + "id": 3677, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "rotation": "4", "waterlogged": "false" - }, - "id": 18227 + } }, { + "id": 3678, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "rotation": "5", "waterlogged": "true" - }, - "id": 18228 + } }, { + "id": 3679, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "rotation": "5", "waterlogged": "false" - }, - "id": 18229 + } }, { + "id": 3680, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "rotation": "6", "waterlogged": "true" - }, - "id": 18230 + } }, { + "id": 3681, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "rotation": "6", "waterlogged": "false" - }, - "id": 18231 + } }, { + "id": 3682, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "rotation": "7", "waterlogged": "true" - }, - "id": 18232 + } }, { + "id": 3683, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "rotation": "7", "waterlogged": "false" - }, - "id": 18233 + } }, { + "id": 3684, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "rotation": "8", "waterlogged": "true" - }, - "id": 18234 + } }, { + "id": 3685, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "rotation": "8", "waterlogged": "false" - }, - "id": 18235 + } }, { + "id": 3686, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "rotation": "9", "waterlogged": "true" - }, - "id": 18236 + } }, { + "id": 3687, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "rotation": "9", "waterlogged": "false" - }, - "id": 18237 + } }, { + "id": 3688, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "rotation": "10", "waterlogged": "true" - }, - "id": 18238 + } }, { + "id": 3689, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "rotation": "10", "waterlogged": "false" - }, - "id": 18239 + } }, { + "id": 3690, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "rotation": "11", "waterlogged": "true" - }, - "id": 18240 + } }, { + "id": 3691, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "rotation": "11", "waterlogged": "false" - }, - "id": 18241 + } }, { + "id": 3692, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "rotation": "12", "waterlogged": "true" - }, - "id": 18242 + } }, { + "id": 3693, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "rotation": "12", "waterlogged": "false" - }, - "id": 18243 + } }, { + "id": 3694, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "rotation": "13", "waterlogged": "true" - }, - "id": 18244 + } }, { + "id": 3695, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "rotation": "13", "waterlogged": "false" - }, - "id": 18245 + } }, { + "id": 3696, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "rotation": "14", "waterlogged": "true" - }, - "id": 18246 + } }, { + "id": 3697, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "rotation": "14", "waterlogged": "false" - }, - "id": 18247 + } }, { + "id": 3698, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "rotation": "15", "waterlogged": "true" - }, - "id": 18248 + } }, { + "id": 3699, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "rotation": "15", "waterlogged": "false" - }, - "id": 18249 - }, + } + } + ] + }, + "minecraft:spruce_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 9047, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "type": "top", "waterlogged": "true" - }, - "id": 18250 + } }, { + "id": 9048, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "type": "top", "waterlogged": "false" - }, - "id": 18251 + } }, { + "id": 9049, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "true" - }, - "id": 18252 + } }, { + "default": true, + "id": 9050, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "bottom", "waterlogged": "false" - }, - "id": 18253 + } }, { + "id": 9051, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "true" - }, - "id": 18254 + } }, { + "id": 9052, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "double", "waterlogged": "false" - }, - "id": 18255 + } } ] }, - "minecraft:waxed_weathered_cut_copper_stairs": { + "minecraft:spruce_stairs": { "properties": { "facing": [ "north", @@ -182842,729 +194803,729 @@ }, "states": [ { + "id": 5996, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18256 + } }, { + "id": 5997, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18257 + } }, { + "id": 5998, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18258 + } }, { + "id": 5999, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18259 + } }, { + "id": 6000, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18260 + } }, { + "id": 6001, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18261 + } }, { + "id": 6002, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18262 + } }, { + "id": 6003, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18263 + } }, { + "id": 6004, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18264 + } }, { + "id": 6005, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18265 + } }, { + "id": 6006, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18266 + } }, { + "default": true, + "id": 6007, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18267, - "default": true + } }, { + "id": 6008, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18268 + } }, { + "id": 6009, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18269 + } }, { + "id": 6010, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18270 + } }, { + "id": 6011, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18271 + } }, { + "id": 6012, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18272 + } }, { + "id": 6013, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18273 + } }, { + "id": 6014, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18274 + } }, { + "id": 6015, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18275 + } }, { + "id": 6016, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18276 + } }, { + "id": 6017, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18277 + } }, { + "id": 6018, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18278 + } }, { + "id": 6019, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18279 + } }, { + "id": 6020, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18280 + } }, { + "id": 6021, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18281 + } }, { + "id": 6022, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18282 + } }, { + "id": 6023, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18283 + } }, { + "id": 6024, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18284 + } }, { + "id": 6025, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18285 + } }, { + "id": 6026, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18286 + } }, { + "id": 6027, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18287 + } }, { + "id": 6028, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18288 + } }, { + "id": 6029, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18289 + } }, { + "id": 6030, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18290 + } }, { + "id": 6031, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18291 + } }, { + "id": 6032, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18292 + } }, { + "id": 6033, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18293 + } }, { + "id": 6034, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18294 + } }, { + "id": 6035, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18295 + } }, { + "id": 6036, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18296 + } }, { + "id": 6037, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18297 + } }, { + "id": 6038, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18298 + } }, { + "id": 6039, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18299 + } }, { + "id": 6040, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18300 + } }, { + "id": 6041, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18301 + } }, { + "id": 6042, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18302 + } }, { + "id": 6043, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18303 + } }, { + "id": 6044, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18304 + } }, { + "id": 6045, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18305 + } }, { + "id": 6046, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18306 + } }, { + "id": 6047, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18307 + } }, { + "id": 6048, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18308 + } }, { + "id": 6049, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18309 + } }, { + "id": 6050, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18310 + } }, { + "id": 6051, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18311 + } }, { + "id": 6052, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18312 + } }, { + "id": 6053, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18313 + } }, { + "id": 6054, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18314 + } }, { + "id": 6055, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18315 + } }, { + "id": 6056, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18316 + } }, { + "id": 6057, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18317 + } }, { + "id": 6058, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18318 + } }, { + "id": 6059, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18319 + } }, { + "id": 6060, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18320 + } }, { + "id": 6061, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18321 + } }, { + "id": 6062, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18322 + } }, { + "id": 6063, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18323 + } }, { + "id": 6064, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18324 + } }, { + "id": 6065, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18325 + } }, { + "id": 6066, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18326 + } }, { + "id": 6067, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18327 + } }, { + "id": 6068, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18328 + } }, { + "id": 6069, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18329 + } }, { + "id": 6070, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18330 + } }, { + "id": 6071, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18331 + } }, { + "id": 6072, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18332 + } }, { + "id": 6073, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18333 + } }, { + "id": 6074, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18334 + } }, { + "id": 6075, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18335 + } } ] }, - "minecraft:waxed_exposed_cut_copper_stairs": { + "minecraft:spruce_trapdoor": { "properties": { "facing": [ "north", @@ -183576,12 +195537,13 @@ "top", "bottom" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -183590,729 +195552,921 @@ }, "states": [ { + "id": 4484, "properties": { "facing": "north", "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18336 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18337 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18338 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18339 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18340 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18341 - }, - { - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18342 + } }, { + "id": 4485, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18343 + } }, { + "id": 4486, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18344 + } }, { + "id": 4487, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18345 + } }, { + "id": 4488, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18346 + } }, { + "id": 4489, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18347, - "default": true + } }, { + "id": 4490, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18348 + } }, { + "id": 4491, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18349 + } }, { + "id": 4492, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18350 + } }, { + "id": 4493, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18351 + } }, { + "id": 4494, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18352 + } }, { + "id": 4495, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18353 + } }, { + "id": 4496, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18354 + } }, { + "id": 4497, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18355 + } }, { + "id": 4498, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18356 + } }, { + "default": true, + "id": 4499, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18357 + } }, { + "id": 4500, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18358 + } }, { + "id": 4501, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18359 + } }, { + "id": 4502, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18360 + } }, { + "id": 4503, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18361 + } }, { + "id": 4504, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18362 + } }, { + "id": 4505, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18363 + } }, { + "id": 4506, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18364 + } }, { + "id": 4507, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18365 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18366 - }, - { - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18367 + } }, { + "id": 4508, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18368 + } }, { + "id": 4509, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18369 + } }, { + "id": 4510, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18370 + } }, { + "id": 4511, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18371 + } }, { + "id": 4512, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18372 + } }, { + "id": 4513, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18373 + } }, { + "id": 4514, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18374 + } }, { + "id": 4515, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18375 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18376 - }, - { - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18377 + } }, { + "id": 4516, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18378 + } }, { + "id": 4517, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18379 + } }, { + "id": 4518, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18380 + } }, { + "id": 4519, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18381 + } }, { + "id": 4520, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18382 + } }, { + "id": 4521, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18383 + } }, { + "id": 4522, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18384 + } }, { + "id": 4523, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18385 + } }, { + "id": 4524, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18386 + } }, { + "id": 4525, "properties": { "facing": "west", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18387 + } }, { + "id": 4526, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18388 + } }, { + "id": 4527, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18389 + } }, { + "id": 4528, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18390 + } }, { + "id": 4529, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18391 + } }, { + "id": 4530, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18392 + } }, { + "id": 4531, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18393 + } }, { + "id": 4532, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18394 + } }, { + "id": 4533, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18395 + } }, { + "id": 4534, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18396 + } }, { + "id": 4535, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18397 + } }, { + "id": 4536, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18398 + } }, { + "id": 4537, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18399 + } }, { + "id": 4538, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18400 + } }, { + "id": 4539, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "false" - }, - "id": 18401 + } }, { + "id": 4540, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 18402 + } }, { + "id": 4541, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 18403 + } }, { + "id": 4542, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 18404 + } }, { + "id": 4543, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 18405 + } }, { + "id": 4544, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 18406 + } }, { + "id": 4545, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 18407 + } }, { + "id": 4546, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "false", "waterlogged": "true" - }, - "id": 18408 + } }, { + "id": 4547, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4040, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4041, + "properties": { + "facing": "north", "waterlogged": "false" - }, - "id": 18409 + } }, { + "id": 4042, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "true" - }, - "id": 18410 + } }, { + "id": 4043, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "false" - }, - "id": 18411 + } }, { + "id": 4044, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "facing": "west", "waterlogged": "true" - }, - "id": 18412 + } }, { + "id": 4045, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "facing": "west", "waterlogged": "false" - }, - "id": 18413 + } }, { + "id": 4046, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "true" - }, - "id": 18414 + } }, { + "id": 4047, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "false" - }, - "id": 18415 + } } ] }, - "minecraft:waxed_cut_copper_stairs": { + "minecraft:spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 167, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 168, + "properties": { + "axis": "y" + } + }, + { + "id": 169, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1583, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1584, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1585, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1586, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1587, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1588, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1589, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1590, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 1591, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 1592, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 1593, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 1594, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9125, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9126, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9127, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9128, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9129, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9130, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { "properties": { "facing": [ "north", @@ -184338,11228 +196492,11127 @@ }, "states": [ { + "id": 5439, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18416 + } }, { + "id": 5440, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18417 + } }, { + "id": 5441, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18418 + } }, { + "id": 5442, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18419 + } }, { + "id": 5443, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18420 + } }, { + "id": 5444, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18421 + } }, { + "id": 5445, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18422 + } }, { + "id": 5446, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18423 + } }, { + "id": 5447, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18424 + } }, { + "id": 5448, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18425 + } }, { + "id": 5449, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18426 + } }, { + "default": true, + "id": 5450, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18427, - "default": true + } }, { + "id": 5451, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18428 + } }, { + "id": 5452, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18429 + } }, { + "id": 5453, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18430 + } }, { + "id": 5454, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18431 + } }, { + "id": 5455, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18432 + } }, { + "id": 5456, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18433 + } }, { + "id": 5457, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18434 + } }, { + "id": 5458, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18435 + } }, { + "id": 5459, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18436 + } }, { + "id": 5460, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18437 + } }, { + "id": 5461, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18438 + } }, { + "id": 5462, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18439 + } }, { + "id": 5463, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18440 + } }, { + "id": 5464, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18441 + } }, { + "id": 5465, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18442 + } }, { + "id": 5466, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18443 + } }, { + "id": 5467, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18444 + } }, { + "id": 5468, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18445 + } }, { + "id": 5469, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18446 + } }, { + "id": 5470, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18447 + } }, { + "id": 5471, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18448 + } }, { + "id": 5472, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18449 + } }, { + "id": 5473, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18450 + } }, { + "id": 5474, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18451 + } }, { + "id": 5475, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18452 + } }, { + "id": 5476, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18453 + } }, { + "id": 5477, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18454 + } }, { + "id": 5478, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18455 + } }, { + "id": 5479, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18456 + } }, { + "id": 5480, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18457 + } }, { + "id": 5481, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18458 + } }, { + "id": 5482, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18459 + } }, { + "id": 5483, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18460 + } }, { + "id": 5484, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18461 + } }, { + "id": 5485, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18462 + } }, { + "id": 5486, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18463 + } }, { + "id": 5487, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18464 + } }, { + "id": 5488, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18465 + } }, { + "id": 5489, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18466 + } }, { + "id": 5490, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18467 + } }, { + "id": 5491, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18468 + } }, { + "id": 5492, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18469 + } }, { + "id": 5493, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18470 + } }, { + "id": 5494, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18471 + } }, { + "id": 5495, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18472 + } }, { + "id": 5496, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18473 + } }, { + "id": 5497, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18474 + } }, { + "id": 5498, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18475 + } }, { + "id": 5499, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 18476 + } }, { + "id": 5500, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 18477 + } }, { + "id": 5501, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18478 + } }, { + "id": 5502, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18479 + } }, { + "id": 5503, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18480 + } }, { + "id": 5504, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18481 + } }, { + "id": 5505, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18482 + } }, { + "id": 5506, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18483 + } }, { + "id": 5507, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18484 + } }, { + "id": 5508, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18485 + } }, { + "id": 5509, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 18486 + } }, { + "id": 5510, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 18487 + } }, { + "id": 5511, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 18488 + } }, { + "id": 5512, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 18489 + } }, { + "id": 5513, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 18490 + } }, { + "id": 5514, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 18491 + } }, { + "id": 5515, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 18492 + } }, { + "id": 5516, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 18493 + } }, { + "id": 5517, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 18494 + } }, { + "id": 5518, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 18495 - } - ] - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18496 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18497 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18498 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18499, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18500 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18501 - } - ] - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18502 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18503 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18504 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18505, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18506 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18507 + } } ] }, - "minecraft:waxed_exposed_cut_copper_slab": { + "minecraft:stone_brick_wall": { "properties": { - "type": [ - "top", - "bottom", - "double" + "east": [ + "none", + "low", + "tall" ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18508 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18509 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18510 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18511, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18512 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18513 - } - ] - }, - "minecraft:waxed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" + "north": [ + "none", + "low", + "tall" ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18514 - }, - { - "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18515 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18516 - }, - { - "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18517, - "default": true - }, - { - "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18518 - }, - { - "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18519 - } - ] - }, - "minecraft:lightning_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" + "south": [ + "none", + "low", + "tall" ], - "powered": [ + "up": [ "true", "false" ], "waterlogged": [ "true", "false" - ] - }, - "states": [ - { - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "true" - }, - "id": 18520 - }, - { - "properties": { - "facing": "north", - "powered": "true", - "waterlogged": "false" - }, - "id": 18521 - }, - { - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "true" - }, - "id": 18522 - }, - { - "properties": { - "facing": "north", - "powered": "false", - "waterlogged": "false" - }, - "id": 18523 - }, - { - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" - }, - "id": 18524 - }, - { - "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" - }, - "id": 18525 - }, - { - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" - }, - "id": 18526 - }, - { - "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "false" - }, - "id": 18527 - }, - { - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "true" - }, - "id": 18528 - }, - { - "properties": { - "facing": "south", - "powered": "true", - "waterlogged": "false" - }, - "id": 18529 - }, - { - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "true" - }, - "id": 18530 - }, - { - "properties": { - "facing": "south", - "powered": "false", - "waterlogged": "false" - }, - "id": 18531 - }, - { - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "true" - }, - "id": 18532 - }, - { - "properties": { - "facing": "west", - "powered": "true", - "waterlogged": "false" - }, - "id": 18533 - }, - { - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "true" - }, - "id": 18534 - }, - { - "properties": { - "facing": "west", - "powered": "false", - "waterlogged": "false" - }, - "id": 18535 - }, - { - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "true" - }, - "id": 18536 - }, - { - "properties": { - "facing": "up", - "powered": "true", - "waterlogged": "false" - }, - "id": 18537 - }, - { - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "true" - }, - "id": 18538 - }, - { - "properties": { - "facing": "up", - "powered": "false", - "waterlogged": "false" - }, - "id": 18539, - "default": true - }, - { - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "true" - }, - "id": 18540 - }, - { - "properties": { - "facing": "down", - "powered": "true", - "waterlogged": "false" - }, - "id": 18541 - }, - { - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "true" - }, - "id": 18542 - }, - { - "properties": { - "facing": "down", - "powered": "false", - "waterlogged": "false" - }, - "id": 18543 - } - ] - }, - "minecraft:pointed_dripstone": { - "properties": { - "thickness": [ - "tip_merge", - "tip", - "frustum", - "middle", - "base" - ], - "vertical_direction": [ - "up", - "down" ], - "waterlogged": [ - "true", - "false" + "west": [ + "none", + "low", + "tall" ] }, "states": [ { + "id": 13368, "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18544 - }, - { - "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18545 - }, - { - "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18546 - }, - { - "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18547 - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18548 - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18549, - "default": true - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18550 - }, - { - "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18551 - }, - { - "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18552 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13369, "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18553 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13370, "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18554 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "default": true, + "id": 13371, "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18555 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13372, "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18556 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13373, "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18557 + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13374, "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18558 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13375, "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18559 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13376, "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "true" - }, - "id": 18560 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13377, "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "false" - }, - "id": 18561 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13378, "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "true" - }, - "id": 18562 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13379, "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "false" - }, - "id": 18563 - } - ] - }, - "minecraft:dripstone_block": { - "states": [ - { - "id": 18564, - "default": true - } - ] - }, - "minecraft:cave_vines": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ], - "berries": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "age": "0", - "berries": "true" - }, - "id": 18565 + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13380, "properties": { - "age": "0", - "berries": "false" - }, - "id": 18566, - "default": true + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13381, "properties": { - "age": "1", - "berries": "true" - }, - "id": 18567 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13382, "properties": { - "age": "1", - "berries": "false" - }, - "id": 18568 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13383, "properties": { - "age": "2", - "berries": "true" - }, - "id": 18569 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13384, "properties": { - "age": "2", - "berries": "false" - }, - "id": 18570 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13385, "properties": { - "age": "3", - "berries": "true" - }, - "id": 18571 + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13386, "properties": { - "age": "3", - "berries": "false" - }, - "id": 18572 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13387, "properties": { - "age": "4", - "berries": "true" - }, - "id": 18573 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13388, "properties": { - "age": "4", - "berries": "false" - }, - "id": 18574 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13389, "properties": { - "age": "5", - "berries": "true" - }, - "id": 18575 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13390, "properties": { - "age": "5", - "berries": "false" - }, - "id": 18576 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13391, "properties": { - "age": "6", - "berries": "true" - }, - "id": 18577 + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13392, "properties": { - "age": "6", - "berries": "false" - }, - "id": 18578 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13393, "properties": { - "age": "7", - "berries": "true" - }, - "id": 18579 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13394, "properties": { - "age": "7", - "berries": "false" - }, - "id": 18580 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13395, "properties": { - "age": "8", - "berries": "true" - }, - "id": 18581 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13396, "properties": { - "age": "8", - "berries": "false" - }, - "id": 18582 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13397, "properties": { - "age": "9", - "berries": "true" - }, - "id": 18583 + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13398, "properties": { - "age": "9", - "berries": "false" - }, - "id": 18584 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13399, "properties": { - "age": "10", - "berries": "true" - }, - "id": 18585 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13400, "properties": { - "age": "10", - "berries": "false" - }, - "id": 18586 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13401, "properties": { - "age": "11", - "berries": "true" - }, - "id": 18587 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13402, "properties": { - "age": "11", - "berries": "false" - }, - "id": 18588 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13403, "properties": { - "age": "12", - "berries": "true" - }, - "id": 18589 + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13404, "properties": { - "age": "12", - "berries": "false" - }, - "id": 18590 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13405, "properties": { - "age": "13", - "berries": "true" - }, - "id": 18591 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13406, "properties": { - "age": "13", - "berries": "false" - }, - "id": 18592 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13407, "properties": { - "age": "14", - "berries": "true" - }, - "id": 18593 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13408, "properties": { - "age": "14", - "berries": "false" - }, - "id": 18594 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13409, "properties": { - "age": "15", - "berries": "true" - }, - "id": 18595 + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13410, "properties": { - "age": "15", - "berries": "false" - }, - "id": 18596 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13411, "properties": { - "age": "16", - "berries": "true" - }, - "id": 18597 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13412, "properties": { - "age": "16", - "berries": "false" - }, - "id": 18598 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13413, "properties": { - "age": "17", - "berries": "true" - }, - "id": 18599 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13414, "properties": { - "age": "17", - "berries": "false" - }, - "id": 18600 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13415, "properties": { - "age": "18", - "berries": "true" - }, - "id": 18601 + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13416, "properties": { - "age": "18", - "berries": "false" - }, - "id": 18602 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13417, "properties": { - "age": "19", - "berries": "true" - }, - "id": 18603 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13418, "properties": { - "age": "19", - "berries": "false" - }, - "id": 18604 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13419, "properties": { - "age": "20", - "berries": "true" - }, - "id": 18605 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13420, "properties": { - "age": "20", - "berries": "false" - }, - "id": 18606 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13421, "properties": { - "age": "21", - "berries": "true" - }, - "id": 18607 + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13422, "properties": { - "age": "21", - "berries": "false" - }, - "id": 18608 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13423, "properties": { - "age": "22", - "berries": "true" - }, - "id": 18609 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13424, "properties": { - "age": "22", - "berries": "false" - }, - "id": 18610 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13425, "properties": { - "age": "23", - "berries": "true" - }, - "id": 18611 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13426, "properties": { - "age": "23", - "berries": "false" - }, - "id": 18612 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13427, "properties": { - "age": "24", - "berries": "true" - }, - "id": 18613 + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13428, "properties": { - "age": "24", - "berries": "false" - }, - "id": 18614 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13429, "properties": { - "age": "25", - "berries": "true" - }, - "id": 18615 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13430, "properties": { - "age": "25", - "berries": "false" - }, - "id": 18616 - } - ] - }, - "minecraft:cave_vines_plant": { - "properties": { - "berries": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, { + "id": 13431, "properties": { - "berries": "true" - }, - "id": 18617 + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13432, "properties": { - "berries": "false" - }, - "id": 18618, - "default": true - } - ] - }, - "minecraft:spore_blossom": { - "states": [ + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, { - "id": 18619, - "default": true - } - ] - }, - "minecraft:azalea": { - "states": [ + "id": 13433, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 18620, - "default": true - } - ] - }, - "minecraft:flowering_azalea": { - "states": [ + "id": 13434, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { - "id": 18621, - "default": true - } - ] - }, - "minecraft:moss_carpet": { - "states": [ + "id": 13435, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { - "id": 18622, - "default": true - } - ] - }, - "minecraft:moss_block": { - "states": [ + "id": 13436, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, { - "id": 18623, - "default": true - } - ] - }, - "minecraft:big_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "tilt": [ - "none", - "unstable", - "partial", - "full" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 13437, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, { + "id": 13438, "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18624 + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13439, "properties": { - "facing": "north", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18625, - "default": true + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13440, "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18626 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13441, "properties": { - "facing": "north", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18627 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13442, "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18628 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13443, "properties": { - "facing": "north", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18629 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13444, "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18630 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13445, "properties": { - "facing": "north", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18631 + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13446, "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18632 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13447, "properties": { - "facing": "south", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18633 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13448, "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18634 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13449, "properties": { - "facing": "south", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18635 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13450, "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18636 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13451, "properties": { - "facing": "south", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18637 + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13452, "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18638 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13453, "properties": { - "facing": "south", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18639 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13454, "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18640 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13455, "properties": { - "facing": "west", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18641 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13456, "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18642 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13457, "properties": { - "facing": "west", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18643 + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13458, "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18644 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13459, "properties": { - "facing": "west", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18645 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13460, "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18646 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13461, "properties": { - "facing": "west", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18647 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13462, "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "true" - }, - "id": 18648 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13463, "properties": { - "facing": "east", - "tilt": "none", - "waterlogged": "false" - }, - "id": 18649 + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13464, "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "true" - }, - "id": 18650 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13465, "properties": { - "facing": "east", - "tilt": "unstable", - "waterlogged": "false" - }, - "id": 18651 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13466, "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "true" - }, - "id": 18652 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13467, "properties": { - "facing": "east", - "tilt": "partial", - "waterlogged": "false" - }, - "id": 18653 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13468, "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "true" - }, - "id": 18654 + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13469, "properties": { - "facing": "east", - "tilt": "full", - "waterlogged": "false" - }, - "id": 18655 - } - ] - }, - "minecraft:big_dripleaf_stem": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { + "id": 13470, "properties": { - "facing": "north", - "waterlogged": "true" - }, - "id": 18656 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13471, "properties": { - "facing": "north", - "waterlogged": "false" - }, - "id": 18657, - "default": true + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13472, "properties": { - "facing": "south", - "waterlogged": "true" - }, - "id": 18658 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13473, "properties": { - "facing": "south", - "waterlogged": "false" - }, - "id": 18659 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13474, "properties": { - "facing": "west", - "waterlogged": "true" - }, - "id": 18660 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13475, "properties": { - "facing": "west", - "waterlogged": "false" - }, - "id": 18661 + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13476, "properties": { - "facing": "east", - "waterlogged": "true" - }, - "id": 18662 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13477, "properties": { - "facing": "east", - "waterlogged": "false" - }, - "id": 18663 - } - ] - }, - "minecraft:small_dripleaf": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 13478, "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "true" - }, - "id": 18664 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13479, "properties": { - "facing": "north", - "half": "upper", - "waterlogged": "false" - }, - "id": 18665 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13480, "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "true" - }, - "id": 18666 + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13481, "properties": { - "facing": "north", - "half": "lower", - "waterlogged": "false" - }, - "id": 18667, - "default": true + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13482, "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "true" - }, - "id": 18668 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13483, "properties": { - "facing": "south", - "half": "upper", - "waterlogged": "false" - }, - "id": 18669 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13484, "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "true" - }, - "id": 18670 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13485, "properties": { - "facing": "south", - "half": "lower", - "waterlogged": "false" - }, - "id": 18671 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13486, "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "true" - }, - "id": 18672 + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 13487, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13488, "properties": { - "facing": "west", - "half": "upper", - "waterlogged": "false" - }, - "id": 18673 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13489, "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "true" - }, - "id": 18674 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13490, "properties": { - "facing": "west", - "half": "lower", - "waterlogged": "false" - }, - "id": 18675 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13491, "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "true" - }, - "id": 18676 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13492, "properties": { - "facing": "east", - "half": "upper", - "waterlogged": "false" - }, - "id": 18677 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13493, "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "true" - }, - "id": 18678 + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13494, "properties": { - "facing": "east", - "half": "lower", - "waterlogged": "false" - }, - "id": 18679 - } - ] - }, - "minecraft:hanging_roots": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "properties": { - "waterlogged": "true" - }, - "id": 18680 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13495, "properties": { - "waterlogged": "false" - }, - "id": 18681, - "default": true - } - ] - }, - "minecraft:rooted_dirt": { - "states": [ - { - "id": 18682, - "default": true - } - ] - }, - "minecraft:deepslate": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { + "id": 13496, "properties": { - "axis": "x" - }, - "id": 18683 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13497, "properties": { - "axis": "y" - }, - "id": 18684, - "default": true + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13498, "properties": { - "axis": "z" - }, - "id": 18685 - } - ] - }, - "minecraft:cobbled_deepslate": { - "states": [ - { - "id": 18686, - "default": true - } - ] - }, - "minecraft:cobbled_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { + "id": 13499, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18687 + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13500, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18688 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13501, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18689 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13502, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18690 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13503, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18691 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13504, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18692 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13505, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18693 + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13506, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18694 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13507, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18695 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13508, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18696 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13509, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18697 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13510, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18698, - "default": true + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13511, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18699 + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13512, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18700 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13513, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18701 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13514, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18702 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13515, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18703 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13516, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18704 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13517, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18705 + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13518, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18706 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13519, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18707 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13520, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18708 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13521, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18709 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13522, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18710 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13523, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18711 + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13524, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18712 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13525, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18713 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13526, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18714 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13527, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18715 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13528, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18716 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13529, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18717 + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13530, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18718 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13531, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18719 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13532, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18720 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13533, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18721 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13534, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18722 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13535, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18723 + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13536, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18724 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13537, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18725 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13538, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18726 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13539, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18727 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13540, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18728 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13541, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18729 + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13542, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18730 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13543, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18731 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13544, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18732 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13545, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18733 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13546, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18734 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13547, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18735 + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13548, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18736 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13549, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18737 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13550, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18738 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13551, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18739 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13552, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18740 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13553, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18741 + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13554, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18742 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13555, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18743 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13556, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18744 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13557, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18745 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13558, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18746 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13559, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18747 + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13560, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18748 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13561, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18749 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13562, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18750 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13563, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18751 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13564, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18752 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13565, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18753 + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13566, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18754 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13567, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18755 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13568, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18756 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13569, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 18757 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13570, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 18758 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13571, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 18759 + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13572, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 18760 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } }, { + "id": 13573, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 18761 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13574, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 18762 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13575, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 18763 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13576, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 18764 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13577, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 18765 + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13578, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 18766 - } - ] - }, - "minecraft:cobbled_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { + "id": 13579, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 18767 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } }, { + "id": 13580, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 18768 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } }, { + "id": 13581, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 18769 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } }, { + "id": 13582, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 18770, - "default": true + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } }, { + "id": 13583, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 18771 + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } }, { + "id": 13584, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 18772 - } - ] - }, - "minecraft:cobbled_deepslate_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18773 + } }, { + "id": 13585, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18774 + } }, { + "id": 13586, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18775 + } }, { + "id": 13587, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18776, - "default": true + } }, { + "id": 13588, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18777 + } }, { + "id": 13589, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18778 + } }, { + "id": 13590, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18779 + } }, { + "id": 13591, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18780 + } }, { + "id": 13592, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18781 + } }, { + "id": 13593, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18782 + } }, { + "id": 13594, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18783 + } }, { + "id": 13595, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18784 + } }, { + "id": 13596, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18785 + } }, { + "id": 13597, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18786 + } }, { + "id": 13598, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18787 + } }, { + "id": 13599, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18788 + } }, { + "id": 13600, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18789 + } }, { + "id": 13601, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18790 + } }, { + "id": 13602, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18791 + } }, { + "id": 13603, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18792 + } }, { + "id": 13604, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18793 + } }, { + "id": 13605, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18794 + } }, { + "id": 13606, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18795 + } }, { + "id": 13607, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18796 + } }, { + "id": 13608, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18797 + } }, { + "id": 13609, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18798 + } }, { + "id": 13610, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18799 + } }, { + "id": 13611, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18800 + } }, { + "id": 13612, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18801 + } }, { + "id": 13613, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18802 + } }, { + "id": 13614, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18803 + } }, { + "id": 13615, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18804 + } }, { + "id": 13616, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18805 + } }, { + "id": 13617, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18806 + } }, { + "id": 13618, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18807 + } }, { + "id": 13619, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18808 + } }, { + "id": 13620, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18809 + } }, { + "id": 13621, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18810 + } }, { + "id": 13622, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18811 + } }, { + "id": 13623, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18812 + } }, { + "id": 13624, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18813 + } }, { + "id": 13625, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18814 + } }, { + "id": 13626, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18815 + } }, { + "id": 13627, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18816 + } }, { + "id": 13628, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18817 + } }, { + "id": 13629, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18818 + } }, { + "id": 13630, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18819 + } }, { + "id": 13631, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18820 + } }, { + "id": 13632, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18821 + } }, { + "id": 13633, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18822 + } }, { + "id": 13634, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18823 + } }, { + "id": 13635, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18824 + } }, { + "id": 13636, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18825 + } }, { + "id": 13637, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18826 + } }, { + "id": 13638, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18827 + } }, { + "id": 13639, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18828 + } }, { + "id": 13640, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18829 + } }, { + "id": 13641, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18830 + } }, { + "id": 13642, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18831 + } }, { + "id": 13643, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18832 + } }, { + "id": 13644, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18833 + } }, { + "id": 13645, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18834 + } }, { + "id": 13646, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18835 + } }, { + "id": 13647, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18836 + } }, { + "id": 13648, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18837 + } }, { + "id": 13649, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18838 + } }, { + "id": 13650, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18839 + } }, { + "id": 13651, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18840 + } }, { + "id": 13652, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18841 + } }, { + "id": 13653, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18842 + } }, { + "id": 13654, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18843 + } }, { + "id": 13655, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18844 + } }, { + "id": 13656, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18845 + } }, { + "id": 13657, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18846 + } }, { + "id": 13658, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18847 + } }, { + "id": 13659, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18848 + } }, { + "id": 13660, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18849 + } }, { + "id": 13661, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18850 + } }, { + "id": 13662, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18851 + } }, { + "id": 13663, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18852 + } }, { + "id": 13664, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18853 + } }, { + "id": 13665, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18854 + } }, { + "id": 13666, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18855 + } }, { + "id": 13667, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18856 + } }, { + "id": 13668, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18857 + } }, { + "id": 13669, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18858 + } }, { + "id": 13670, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18859 + } }, { + "id": 13671, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18860 + } }, { + "id": 13672, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18861 + } }, { + "id": 13673, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18862 + } }, { + "id": 13674, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18863 + } }, { + "id": 13675, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18864 + } }, { + "id": 13676, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18865 + } }, { + "id": 13677, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18866 + } }, { + "id": 13678, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18867 + } }, { + "id": 13679, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18868 + } }, { + "id": 13680, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "none" - }, - "id": 18869 + } }, { + "id": 13681, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "low" - }, - "id": 18870 + } }, { + "id": 13682, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", "west": "tall" - }, - "id": 18871 + } }, { + "id": 13683, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "none" - }, - "id": 18872 + } }, { + "id": 13684, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "low" - }, - "id": 18873 + } }, { + "id": 13685, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", "west": "tall" - }, - "id": 18874 + } }, { + "id": 13686, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "none" - }, - "id": 18875 + } }, { + "id": 13687, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "low" - }, - "id": 18876 + } }, { + "id": 13688, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", "west": "tall" - }, - "id": 18877 + } }, { + "id": 13689, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "none" - }, - "id": 18878 + } }, { + "id": 13690, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "low" - }, - "id": 18879 + } }, { + "id": 13691, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" - }, - "id": 18880 + } + } + ] + }, + "minecraft:stone_bricks": { + "states": [ + { + "default": true, + "id": 4868 + } + ] + }, + "minecraft:stone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4206, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 4207, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18881 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 4208, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18882 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 4209, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18883 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 4210, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18884 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 4211, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18885 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 4212, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18886 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 4213, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18887 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 4214, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18888 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 4215, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18889 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 4216, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18890 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 4217, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18891 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 4218, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18892 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 4219, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18893 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 4220, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18894 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 4221, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18895 + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 4222, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18896 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 4223, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18897 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 4224, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18898 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 4225, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18899 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 4226, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18900 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 4227, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18901 + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 4228, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18902 + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 4229, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18903 + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4112, + "properties": { + "powered": "true" + } }, { + "default": true, + "id": 4113, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18904 + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9083, + "properties": { + "type": "top", + "waterlogged": "true" + } }, { + "id": 9084, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18905 + "type": "top", + "waterlogged": "false" + } }, { + "id": 9085, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18906 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 9086, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18907 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 9087, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18908 + "type": "double", + "waterlogged": "true" + } }, { + "id": 9088, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18909 + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11030, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11031, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18910 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11032, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18911 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11033, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18912 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11034, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18913 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11035, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18914 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11036, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18915 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11037, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18916 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11038, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18917 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11039, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18918 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11040, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18919 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 11041, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18920 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11042, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18921 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11043, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18922 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11044, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18923 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11045, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18924 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11049, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11050, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11051, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11052, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11053, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11054, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11055, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11056, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11057, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11058, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11059, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11060, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11061, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11062, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11063, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11064, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11065, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11069, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11070, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11071, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11072, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11073, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11074, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11075, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11076, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11077, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11078, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11079, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11080, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11081, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18925 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11082, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18926 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11083, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18927 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11084, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18928 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11085, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18929 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11086, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18930 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11087, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18931 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11088, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18932 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11089, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18933 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11090, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18934 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11091, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18935 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11092, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18936 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11093, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18937 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11094, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18938 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11095, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18939 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11096, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18940 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11097, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18941 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11098, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18942 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11099, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18943 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 11100, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18944 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 11101, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18945 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 11102, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18946 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 11103, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18947 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 11104, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18948 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 11105, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18949 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 11106, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18950 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 11107, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18951 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 11108, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18952 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 11109, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18953 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 16055, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18954 + "facing": "north" + } }, { + "id": 16056, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18955 + "facing": "south" + } }, { + "id": 16057, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18956 + "facing": "west" + } }, { + "id": 16058, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18957 - }, + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 152, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18958 + "axis": "x" + } }, { + "default": true, + "id": 153, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18959 + "axis": "y" + } }, { + "id": 154, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18960 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 197, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18961 + "axis": "x" + } }, { + "default": true, + "id": 198, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18962 + "axis": "y" + } }, { + "id": 199, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18963 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 146, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18964 + "axis": "x" + } }, { + "default": true, + "id": 147, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18965 + "axis": "y" + } }, { + "id": 148, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18966 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 191, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18967 + "axis": "x" + } }, { + "default": true, + "id": 192, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18968 + "axis": "y" + } }, { + "id": 193, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18969 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 16193, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18970 + "axis": "x" + } }, { + "default": true, + "id": 16194, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18971 + "axis": "y" + } }, { + "id": 16195, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18972 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 16187, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18973 + "axis": "x" + } }, { + "default": true, + "id": 16188, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18974 + "axis": "y" + } }, { + "id": 16189, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18975 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 155, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18976 + "axis": "x" + } }, { + "default": true, + "id": 156, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18977 + "axis": "y" + } }, { + "id": 157, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18978 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 200, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18979 + "axis": "x" + } }, { + "default": true, + "id": 201, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18980 + "axis": "y" + } }, { + "id": 202, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18981 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 149, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18982 + "axis": "x" + } }, { + "default": true, + "id": 150, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18983 + "axis": "y" + } }, { + "id": 151, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18984 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 194, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18985 + "axis": "x" + } }, { + "default": true, + "id": 195, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18986 + "axis": "y" + } }, { + "id": 196, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18987 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 161, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 18988 + "axis": "x" + } }, { + "default": true, + "id": 162, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 18989 + "axis": "y" + } }, { + "id": 163, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 18990 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 203, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 18991 + "axis": "x" + } }, { + "default": true, + "id": 204, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 18992 + "axis": "y" + } }, { + "id": 205, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 18993 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 158, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 18994 + "axis": "x" + } }, { + "default": true, + "id": 159, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 18995 + "axis": "y" + } }, { + "id": 160, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 18996 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 185, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 18997 + "axis": "x" + } }, { + "default": true, + "id": 186, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 18998 + "axis": "y" + } }, { + "id": 187, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 18999 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 143, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19000 + "axis": "x" + } }, { + "default": true, + "id": 144, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19001 + "axis": "y" + } }, { + "id": 145, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19002 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 188, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19003 + "axis": "x" + } }, { + "default": true, + "id": 189, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19004 + "axis": "y" + } }, { + "id": 190, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19005 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 16176, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19006 + "axis": "x" + } }, { + "default": true, + "id": 16177, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19007 + "axis": "y" + } }, { + "id": 16178, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19008 - }, + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 16170, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19009 + "axis": "x" + } }, { + "default": true, + "id": 16171, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19010 + "axis": "y" + } }, { + "id": 16172, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19011 - }, + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ { + "id": 16944, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19012 + "mode": "save" + } }, { + "default": true, + "id": 16945, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19013 + "mode": "load" + } }, { + "id": 16946, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19014 + "mode": "corner" + } }, { + "id": 16947, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "states": [ + { + "default": true, + "id": 10140 + } + ] + }, + "minecraft:sugar_cane": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 4257, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19015 + "age": "0" + } }, { + "id": 4258, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19016 + "age": "1" + } }, { + "id": 4259, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19017 + "age": "2" + } }, { + "id": 4260, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19018 + "age": "3" + } }, { + "id": 4261, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19019 + "age": "4" + } }, { + "id": 4262, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19020 + "age": "5" + } }, { + "id": 4263, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19021 + "age": "6" + } }, { + "id": 4264, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19022 + "age": "7" + } }, { + "id": 4265, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19023 + "age": "8" + } }, { + "id": 4266, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19024 + "age": "9" + } }, { + "id": 4267, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19025 + "age": "10" + } }, { + "id": 4268, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19026 + "age": "11" + } }, { + "id": 4269, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19027 + "age": "12" + } }, { + "id": 4270, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19028 + "age": "13" + } }, { + "id": 4271, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19029 + "age": "14" + } }, { + "id": 4272, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19030 - }, + "age": "15" + } + } + ] + }, + "minecraft:sunflower": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { + "id": 8626, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19031 + "half": "upper" + } }, { + "default": true, + "id": 8627, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19032 - }, + "half": "lower" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { + "default": true, + "id": 16163, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19033 + "age": "0" + } }, { + "id": 16164, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19034 + "age": "1" + } }, { + "id": 16165, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19035 + "age": "2" + } }, { + "id": 16166, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19036 - }, + "age": "3" + } + } + ] + }, + "minecraft:tall_grass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { + "id": 8634, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19037 + "half": "upper" + } }, { + "default": true, + "id": 8635, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19038 - }, + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { + "id": 1600, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19039 + "half": "upper" + } }, { + "default": true, + "id": 1601, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19040 - }, + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 16969, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19041 + "power": "0" + } }, { + "id": 16970, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19042 + "power": "1" + } }, { + "id": 16971, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19043 + "power": "2" + } }, { + "id": 16972, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19044 + "power": "3" + } }, { + "id": 16973, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19045 + "power": "4" + } }, { + "id": 16974, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19046 + "power": "5" + } }, { + "id": 16975, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19047 + "power": "6" + } }, { + "id": 16976, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19048 + "power": "7" + } }, { + "id": 16977, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19049 + "power": "8" + } }, { + "id": 16978, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19050 + "power": "9" + } }, { + "id": 16979, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19051 + "power": "10" + } }, { + "id": 16980, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19052 + "power": "11" + } }, { + "id": 16981, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19053 + "power": "12" + } }, { + "id": 16982, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19054 + "power": "13" + } }, { + "id": 16983, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19055 + "power": "14" + } }, { + "id": 16984, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19056 - }, + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "states": [ + { + "default": true, + "id": 8623 + } + ] + }, + "minecraft:tinted_glass": { + "states": [ { + "default": true, + "id": 18671 + } + ] + }, + "minecraft:tnt": { + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1684, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19057 + "unstable": "true" + } }, { + "default": true, + "id": 1685, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19058 - }, + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "states": [ + { + "default": true, + "id": 1689 + } + ] + }, + "minecraft:trapped_chest": { + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7239, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19059 + "type": "single", + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 7240, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19060 + "type": "single", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 7241, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19061 + "type": "left", + "facing": "north", + "waterlogged": "true" + } }, { + "id": 7242, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19062 + "type": "left", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 7243, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19063 + "type": "right", + "facing": "north", + "waterlogged": "true" + } }, { + "id": 7244, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19064 + "type": "right", + "facing": "north", + "waterlogged": "false" + } }, { + "id": 7245, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19065 + "type": "single", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 7246, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19066 + "type": "single", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 7247, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19067 + "type": "left", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 7248, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19068 + "type": "left", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 7249, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19069 + "type": "right", + "facing": "south", + "waterlogged": "true" + } }, { + "id": 7250, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19070 + "type": "right", + "facing": "south", + "waterlogged": "false" + } }, { + "id": 7251, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19071 + "type": "single", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 7252, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19072 + "type": "single", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 7253, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19073 + "type": "left", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 7254, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19074 + "type": "left", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 7255, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19075 + "type": "right", + "facing": "west", + "waterlogged": "true" + } }, { + "id": 7256, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19076 + "type": "right", + "facing": "west", + "waterlogged": "false" + } }, { + "id": 7257, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19077 + "type": "single", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 7258, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19078 + "type": "single", + "facing": "east", + "waterlogged": "false" + } }, { + "id": 7259, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19079 + "type": "left", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 7260, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19080 + "type": "left", + "facing": "east", + "waterlogged": "false" + } }, { + "id": 7261, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19081 + "type": "right", + "facing": "east", + "waterlogged": "true" + } }, { + "id": 7262, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19082 + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tripwire": { + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5867, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5868, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19083 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5869, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19084 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5870, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19085 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5871, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19086 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5872, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19087 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5873, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19088 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5874, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19089 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5875, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19090 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5876, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19091 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5877, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19092 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5878, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19093 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5879, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19094 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5880, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19095 + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5881, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19096 - } - ] - }, - "minecraft:polished_deepslate": { - "states": [ + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, { - "id": 19097, - "default": true - } - ] - }, - "minecraft:polished_deepslate_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 5882, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, { + "id": 5883, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19098 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5884, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19099 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5885, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19100 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5886, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19101 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5887, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19102 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5888, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19103 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5889, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19104 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5890, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19105 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5891, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19106 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5892, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19107 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5893, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19108 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5894, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19109, - "default": true + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5895, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19110 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5896, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19111 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5897, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19112 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5898, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19113 + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5899, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19114 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5900, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19115 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5901, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19116 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5902, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19117 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5903, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19118 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5904, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19119 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5905, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19120 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5906, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19121 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5907, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19122 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5908, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19123 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5909, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19124 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5910, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19125 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5911, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19126 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5912, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19127 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5913, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19128 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5914, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19129 + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5915, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19130 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5916, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19131 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5917, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19132 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5918, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19133 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5919, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19134 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5920, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19135 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5921, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19136 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5922, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19137 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5923, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19138 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5924, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19139 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5925, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19140 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5926, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19141 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5927, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19142 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5928, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19143 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5929, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19144 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5930, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19145 + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5931, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19146 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5932, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19147 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5933, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19148 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5934, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19149 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5935, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19150 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5936, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19151 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5937, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19152 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5938, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19153 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5939, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19154 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5940, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19155 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5941, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19156 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5942, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19157 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5943, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19158 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5944, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19159 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5945, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19160 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5946, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19161 + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5947, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19162 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5948, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19163 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5949, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19164 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5950, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19165 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5951, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19166 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5952, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19167 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5953, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - }, - "id": 19168 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5954, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - }, - "id": 19169 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5955, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - }, - "id": 19170 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5956, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - }, - "id": 19171 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5957, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - }, - "id": 19172 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5958, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - }, - "id": 19173 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5959, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - }, - "id": 19174 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5960, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - }, - "id": 19175 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5961, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - }, - "id": 19176 + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5962, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - }, - "id": 19177 - } - ] - }, - "minecraft:polished_deepslate_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, { + "id": 5963, "properties": { - "type": "top", - "waterlogged": "true" - }, - "id": 19178 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5964, "properties": { - "type": "top", - "waterlogged": "false" - }, - "id": 19179 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5965, "properties": { - "type": "bottom", - "waterlogged": "true" - }, - "id": 19180 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5966, "properties": { - "type": "bottom", - "waterlogged": "false" - }, - "id": 19181, - "default": true + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5967, "properties": { - "type": "double", - "waterlogged": "true" - }, - "id": 19182 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5968, "properties": { - "type": "double", - "waterlogged": "false" - }, - "id": 19183 - } - ] - }, - "minecraft:polished_deepslate_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, { + "id": 5969, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19184 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5970, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19185 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5971, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19186 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5972, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19187, - "default": true + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5973, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19188 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5974, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19189 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5975, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19190 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5976, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19191 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5977, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19192 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5978, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19193 + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5979, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19194 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5980, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19195 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5981, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19196 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5982, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19197 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5983, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19198 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5984, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19199 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5985, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19200 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "id": 5986, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19201 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } }, { + "id": 5987, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19202 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } }, { + "id": 5988, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19203 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } }, { + "id": 5989, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19204 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } }, { + "id": 5990, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19205 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } }, { + "id": 5991, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19206 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } }, { + "id": 5992, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19207 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } }, { + "id": 5993, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19208 + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } }, { + "default": true, + "id": 5994, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19209 - }, + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 5851, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19210 + "attached": "true", + "facing": "north", + "powered": "true" + } }, { + "id": 5852, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19211 + "attached": "true", + "facing": "north", + "powered": "false" + } }, { + "id": 5853, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19212 + "attached": "true", + "facing": "south", + "powered": "true" + } }, { + "id": 5854, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19213 + "attached": "true", + "facing": "south", + "powered": "false" + } }, { + "id": 5855, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19214 + "attached": "true", + "facing": "west", + "powered": "true" + } }, { + "id": 5856, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19215 + "attached": "true", + "facing": "west", + "powered": "false" + } }, { + "id": 5857, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19216 + "attached": "true", + "facing": "east", + "powered": "true" + } }, { + "id": 5858, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19217 + "attached": "true", + "facing": "east", + "powered": "false" + } }, { + "id": 5859, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19218 + "attached": "false", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 5860, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19219 + "attached": "false", + "facing": "north", + "powered": "false" + } }, { + "id": 5861, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19220 + "attached": "false", + "facing": "south", + "powered": "true" + } }, { + "id": 5862, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19221 + "attached": "false", + "facing": "south", + "powered": "false" + } }, { + "id": 5863, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19222 + "attached": "false", + "facing": "west", + "powered": "true" + } }, { + "id": 5864, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19223 + "attached": "false", + "facing": "west", + "powered": "false" + } }, { + "id": 5865, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19224 + "attached": "false", + "facing": "east", + "powered": "true" + } }, { + "id": 5866, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19225 - }, + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10411, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19226 + "waterlogged": "true" + } }, { + "id": 10412, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19227 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "states": [ { - "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19228 - }, + "default": true, + "id": 10396 + } + ] + }, + "minecraft:tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10431, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19229 + "waterlogged": "true" + } }, { + "id": 10432, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19230 - }, + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "default": true, + "id": 10481, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19231 + "facing": "north", + "waterlogged": "true" + } }, { + "id": 10482, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19232 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 10483, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19233 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 10484, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19234 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 10485, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19235 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 10486, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19236 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 10487, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19237 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 10488, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19238 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "states": [ + { + "default": true, + "id": 18669 + } + ] + }, + "minecraft:turtle_egg": { + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ { + "default": true, + "id": 10379, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19239 + "eggs": "1", + "hatch": "0" + } }, { + "id": 10380, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19240 + "eggs": "1", + "hatch": "1" + } }, { + "id": 10381, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19241 + "eggs": "1", + "hatch": "2" + } }, { + "id": 10382, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19242 + "eggs": "2", + "hatch": "0" + } }, { + "id": 10383, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19243 + "eggs": "2", + "hatch": "1" + } }, { + "id": 10384, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19244 + "eggs": "2", + "hatch": "2" + } }, { + "id": 10385, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19245 + "eggs": "3", + "hatch": "0" + } }, { + "id": 10386, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19246 + "eggs": "3", + "hatch": "1" + } }, { + "id": 10387, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19247 + "eggs": "3", + "hatch": "2" + } }, { + "id": 10388, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19248 + "eggs": "4", + "hatch": "0" + } }, { + "id": 10389, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19249 + "eggs": "4", + "hatch": "1" + } }, { + "id": 10390, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19250 - }, + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ { + "default": true, + "id": 16226, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19251 + "age": "0" + } }, { + "id": 16227, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19252 + "age": "1" + } }, { + "id": 16228, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19253 + "age": "2" + } }, { + "id": 16229, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19254 + "age": "3" + } }, { + "id": 16230, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19255 + "age": "4" + } }, { + "id": 16231, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19256 + "age": "5" + } }, { + "id": 16232, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19257 + "age": "6" + } }, { + "id": 16233, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19258 + "age": "7" + } }, { + "id": 16234, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19259 + "age": "8" + } }, { + "id": 16235, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19260 + "age": "9" + } }, { + "id": 16236, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19261 + "age": "10" + } }, { + "id": 16237, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19262 + "age": "11" + } }, { + "id": 16238, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19263 + "age": "12" + } }, { + "id": 16239, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19264 + "age": "13" + } }, { + "id": 16240, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19265 + "age": "14" + } }, { + "id": 16241, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19266 + "age": "15" + } }, { + "id": 16242, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19267 + "age": "16" + } }, { + "id": 16243, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19268 + "age": "17" + } }, { + "id": 16244, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19269 + "age": "18" + } }, { + "id": 16245, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19270 + "age": "19" + } }, { + "id": 16246, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19271 + "age": "20" + } }, { + "id": 16247, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19272 + "age": "21" + } }, { + "id": 16248, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19273 + "age": "22" + } }, { + "id": 16249, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19274 + "age": "23" + } }, { + "id": 16250, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19275 + "age": "24" + } }, { + "id": 16251, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19276 - }, + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "states": [ + { + "default": true, + "id": 16252 + } + ] + }, + "minecraft:verdant_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 21440, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19277 + "axis": "x" + } }, { + "default": true, + "id": 21441, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19278 + "axis": "y" + } }, { + "id": 21442, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19279 - }, + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 5167, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19280 + "west": "true" + } }, { + "id": 5168, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19281 + "west": "false" + } }, { + "id": 5169, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19282 + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 5170, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19283 + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 5171, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19284 + "west": "true" + } }, { + "id": 5172, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19285 + "west": "false" + } }, { + "id": 5173, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19286 + "west": "true" + } }, { + "id": 5174, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19287 + "west": "false" + } }, { - "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19288 + "id": 5175, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } }, { + "id": 5176, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19289 + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } }, { + "id": 5177, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19290 + "west": "true" + } }, { + "id": 5178, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19291 + "west": "false" + } }, { + "id": 5179, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19292 + "west": "true" + } }, { + "id": 5180, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19293 + "west": "false" + } }, { + "id": 5181, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19294 + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } }, { + "id": 5182, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19295 + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } }, { + "id": 5183, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19296 + "west": "true" + } }, { + "id": 5184, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19297 + "west": "false" + } }, { + "id": 5185, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19298 + "west": "true" + } }, { + "id": 5186, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19299 + "west": "false" + } }, { + "id": 5187, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19300 + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } }, { + "id": 5188, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19301 + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } }, { + "id": 5189, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19302 + "west": "true" + } }, { + "id": 5190, "properties": { - "east": "low", - "north": "none", - "south": "none", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19303 + "west": "false" + } }, { + "id": 5191, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19304 + "west": "true" + } }, { + "id": 5192, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19305 + "west": "false" + } }, { + "id": 5193, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19306 + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } }, { + "id": 5194, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19307 + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } }, { + "id": 5195, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19308 + "west": "true" + } }, { + "id": 5196, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19309 + "west": "false" + } }, { + "id": 5197, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19310 + "west": "true" + } }, { + "default": true, + "id": 5198, "properties": { - "east": "low", - "north": "none", - "south": "low", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19311 - }, + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "states": [ + { + "default": true, + "id": 10546 + } + ] + }, + "minecraft:wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 1690, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19312 + "facing": "north" + } }, { + "id": 1691, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19313 + "facing": "south" + } }, { + "id": 1692, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19314 + "facing": "west" + } }, { + "id": 1693, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19315 - }, + "facing": "east" + } + } + ] + }, + "minecraft:warped_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16712, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19316 + "face": "floor", + "facing": "north", + "powered": "true" + } }, { + "id": 16713, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19317 + "face": "floor", + "facing": "north", + "powered": "false" + } }, { + "id": 16714, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19318 + "face": "floor", + "facing": "south", + "powered": "true" + } }, { + "id": 16715, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19319 + "face": "floor", + "facing": "south", + "powered": "false" + } }, { + "id": 16716, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19320 + "face": "floor", + "facing": "west", + "powered": "true" + } }, { + "id": 16717, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19321 + "face": "floor", + "facing": "west", + "powered": "false" + } }, { + "id": 16718, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19322 + "face": "floor", + "facing": "east", + "powered": "true" + } }, { + "id": 16719, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19323 + "face": "floor", + "facing": "east", + "powered": "false" + } }, { + "id": 16720, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19324 + "face": "wall", + "facing": "north", + "powered": "true" + } }, { + "default": true, + "id": 16721, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19325 + "face": "wall", + "facing": "north", + "powered": "false" + } }, { + "id": 16722, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19326 + "face": "wall", + "facing": "south", + "powered": "true" + } }, { + "id": 16723, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19327 + "face": "wall", + "facing": "south", + "powered": "false" + } }, { + "id": 16724, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19328 + "face": "wall", + "facing": "west", + "powered": "true" + } }, { + "id": 16725, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19329 + "face": "wall", + "facing": "west", + "powered": "false" + } }, { + "id": 16726, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19330 + "face": "wall", + "facing": "east", + "powered": "true" + } }, { + "id": 16727, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19331 + "face": "wall", + "facing": "east", + "powered": "false" + } }, { + "id": 16728, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19332 + "face": "ceiling", + "facing": "north", + "powered": "true" + } }, { + "id": 16729, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19333 + "face": "ceiling", + "facing": "north", + "powered": "false" + } }, { + "id": 16730, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19334 + "face": "ceiling", + "facing": "south", + "powered": "true" + } }, { + "id": 16731, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19335 + "face": "ceiling", + "facing": "south", + "powered": "false" + } }, { + "id": 16732, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19336 + "face": "ceiling", + "facing": "west", + "powered": "true" + } }, { + "id": 16733, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19337 + "face": "ceiling", + "facing": "west", + "powered": "false" + } }, { + "id": 16734, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19338 + "face": "ceiling", + "facing": "east", + "powered": "true" + } }, { + "id": 16735, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19339 + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:warped_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16800, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16801, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19340 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16802, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19341 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16803, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19342 + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16804, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19343 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16805, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19344 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16806, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19345 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16807, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19346 + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16808, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19347 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16809, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19348 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16810, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19349 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 16811, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19350 + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16812, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19351 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16813, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19352 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16814, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19353 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16815, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19354 + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16816, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19355 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16817, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19356 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16818, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19357 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16819, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19358 + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16820, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19359 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16821, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19360 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16822, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19361 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16823, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19362 + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16824, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19363 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16825, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19364 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16826, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19365 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16827, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19366 + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16828, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19367 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16829, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19368 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16830, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19369 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16831, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19370 + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16832, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19371 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16833, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19372 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16834, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19373 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16835, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19374 + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16836, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19375 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16837, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19376 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16838, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19377 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16839, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19378 + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16840, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19379 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16841, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19380 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16842, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19381 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16843, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19382 + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16844, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19383 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16845, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19384 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16846, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19385 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16847, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19386 + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16848, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19387 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16849, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19388 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16850, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19389 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16851, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19390 + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16852, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19391 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16853, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19392 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16854, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19393 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16855, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19394 + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } }, { + "id": 16856, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19395 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } }, { + "id": 16857, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19396 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } }, { + "id": 16858, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19397 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } }, { + "id": 16859, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19398 + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } }, { + "id": 16860, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19399 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } }, { + "id": 16861, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19400 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } }, { + "id": 16862, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19401 + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } }, { + "id": 16863, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16304, + "properties": { + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 19402 + "west": "true" + } }, { + "id": 16305, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19403 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16306, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19404 + "west": "true" + } }, { + "id": 16307, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19405 + "west": "false" + } }, { + "id": 16308, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19406 + "west": "true" + } }, { + "id": 16309, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19407 + "west": "false" + } }, { + "id": 16310, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19408 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16311, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 19409 + "west": "false" + } }, { + "id": 16312, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19410 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16313, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19411 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16314, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19412 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16315, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19413 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16316, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 19414 + "west": "true" + } }, { + "id": 16317, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19415 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16318, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 19416 + "west": "true" + } }, { + "id": 16319, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 19417 + "west": "false" + } }, { + "id": 16320, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 19418 + "west": "true" + } }, { + "id": 16321, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 19419 + "west": "false" + } }, { + "id": 16322, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19420 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16323, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 19421 + "west": "false" + } }, { + "id": 16324, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19422 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 16325, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19423 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16326, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19424 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 16327, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19425 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 16328, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 19426 + "west": "true" + } }, { + "id": 16329, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19427 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 16330, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 19428 + "west": "true" + } }, { + "id": 16331, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 19429 + "west": "false" + } }, { + "id": 16332, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 19430 + "west": "true" + } }, { + "id": 16333, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 19431 + "west": "false" + } }, { + "id": 16334, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19432 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 16335, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 19433 - }, + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16496, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19434 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 16497, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19435 + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 16498, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19436 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 16499, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19437 + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 16500, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19438 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 16501, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19439 + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 16502, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19440 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "default": true, + "id": 16503, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19441 + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 16504, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19442 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 16505, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19443 + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 16506, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19444 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 16507, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19445 + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 16508, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19446 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 16509, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19447 + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 16510, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19448 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 16511, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19449 + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 16512, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19450 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 16513, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19451 + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 16514, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19452 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 16515, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19453 + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 16516, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19454 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 16517, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19455 + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 16518, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19456 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 16519, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19457 + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } }, { + "id": 16520, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19458 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } }, { + "id": 16521, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19459 + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } }, { + "id": 16522, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19460 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } }, { + "id": 16523, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19461 + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } }, { + "id": 16524, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19462 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } }, { + "id": 16525, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19463 + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } }, { + "id": 16526, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19464 + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } }, { + "id": 16527, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19465 - }, + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "states": [ + { + "default": true, + "id": 16180 + } + ] + }, + "minecraft:warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { + "id": 16173, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19466 + "axis": "x" + } }, { + "default": true, + "id": 16174, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19467 + "axis": "y" + } }, { + "id": 16175, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19468 - }, + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "states": [ + { + "default": true, + "id": 16179 + } + ] + }, + "minecraft:warped_planks": { + "states": [ + { + "default": true, + "id": 16255 + } + ] + }, + "minecraft:warped_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16270, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19469 + "powered": "true" + } }, { + "default": true, + "id": 16271, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "states": [ + { + "default": true, + "id": 16182 + } + ] + }, + "minecraft:warped_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16896, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19470 + "rotation": "0", + "waterlogged": "true" + } }, { + "default": true, + "id": 16897, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19471 + "rotation": "0", + "waterlogged": "false" + } }, { + "id": 16898, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19472 + "rotation": "1", + "waterlogged": "true" + } }, { + "id": 16899, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19473 + "rotation": "1", + "waterlogged": "false" + } }, { + "id": 16900, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19474 + "rotation": "2", + "waterlogged": "true" + } }, { + "id": 16901, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19475 + "rotation": "2", + "waterlogged": "false" + } }, { + "id": 16902, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19476 + "rotation": "3", + "waterlogged": "true" + } }, { + "id": 16903, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19477 + "rotation": "3", + "waterlogged": "false" + } }, { + "id": 16904, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19478 + "rotation": "4", + "waterlogged": "true" + } }, { + "id": 16905, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19479 + "rotation": "4", + "waterlogged": "false" + } }, { + "id": 16906, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19480 + "rotation": "5", + "waterlogged": "true" + } }, { + "id": 16907, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19481 + "rotation": "5", + "waterlogged": "false" + } }, { + "id": 16908, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19482 + "rotation": "6", + "waterlogged": "true" + } }, { + "id": 16909, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19483 + "rotation": "6", + "waterlogged": "false" + } }, { + "id": 16910, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19484 + "rotation": "7", + "waterlogged": "true" + } }, { + "id": 16911, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19485 + "rotation": "7", + "waterlogged": "false" + } }, { + "id": 16912, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19486 + "rotation": "8", + "waterlogged": "true" + } }, { + "id": 16913, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19487 + "rotation": "8", + "waterlogged": "false" + } }, { + "id": 16914, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19488 + "rotation": "9", + "waterlogged": "true" + } }, { + "id": 16915, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19489 + "rotation": "9", + "waterlogged": "false" + } }, { + "id": 16916, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19490 + "rotation": "10", + "waterlogged": "true" + } }, { + "id": 16917, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19491 + "rotation": "10", + "waterlogged": "false" + } }, { + "id": 16918, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19492 + "rotation": "11", + "waterlogged": "true" + } }, { + "id": 16919, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19493 + "rotation": "11", + "waterlogged": "false" + } }, { + "id": 16920, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19494 + "rotation": "12", + "waterlogged": "true" + } }, { + "id": 16921, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19495 + "rotation": "12", + "waterlogged": "false" + } }, { + "id": 16922, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19496 + "rotation": "13", + "waterlogged": "true" + } }, { + "id": 16923, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19497 + "rotation": "13", + "waterlogged": "false" + } }, { + "id": 16924, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19498 + "rotation": "14", + "waterlogged": "true" + } }, { + "id": 16925, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19499 + "rotation": "14", + "waterlogged": "false" + } }, { + "id": 16926, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19500 + "rotation": "15", + "waterlogged": "true" + } }, { + "id": 16927, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19501 - }, + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 16262, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19502 + "type": "top", + "waterlogged": "true" + } }, { + "id": 16263, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19503 + "type": "top", + "waterlogged": "false" + } }, { + "id": 16264, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19504 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 16265, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19505 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 16266, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19506 + "type": "double", + "waterlogged": "true" + } }, { + "id": 16267, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19507 - } - ] - }, - "minecraft:deepslate_tiles": { - "states": [ - { - "id": 19508, - "default": true + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:deepslate_tile_stairs": { + "minecraft:warped_stairs": { "properties": { "facing": [ "north", @@ -195585,734 +207638,777 @@ }, "states": [ { + "id": 16608, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19509 + } }, { + "id": 16609, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19510 + } }, { + "id": 16610, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19511 + } }, { + "id": 16611, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19512 + } }, { + "id": 16612, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19513 + } }, { + "id": 16613, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19514 + } }, { + "id": 16614, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19515 + } }, { + "id": 16615, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19516 + } }, { + "id": 16616, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19517 + } }, { + "id": 16617, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19518 + } }, { + "id": 16618, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19519 + } }, { + "default": true, + "id": 16619, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19520, - "default": true + } }, { + "id": 16620, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19521 + } }, { + "id": 16621, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19522 + } }, { + "id": 16622, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19523 + } }, { + "id": 16623, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19524 + } }, { + "id": 16624, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19525 + } }, { + "id": 16625, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19526 + } }, { + "id": 16626, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19527 + } }, { + "id": 16627, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19528 + } }, { + "id": 16628, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19529 + } }, { + "id": 16629, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19530 + } }, { + "id": 16630, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19531 + } }, { + "id": 16631, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19532 + } }, { + "id": 16632, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19533 + } }, { + "id": 16633, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19534 + } }, { + "id": 16634, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19535 + } }, { + "id": 16635, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19536 + } }, { + "id": 16636, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19537 + } }, { + "id": 16637, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19538 + } }, { + "id": 16638, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19539 + } }, { + "id": 16639, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19540 + } }, { + "id": 16640, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19541 + } }, { + "id": 16641, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19542 + } }, { + "id": 16642, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19543 + } }, { + "id": 16643, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19544 + } }, { + "id": 16644, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19545 + } }, { + "id": 16645, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19546 + } }, { + "id": 16646, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19547 + } }, { + "id": 16647, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19548 + } }, { + "id": 16648, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19549 + } }, { + "id": 16649, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19550 + } }, { + "id": 16650, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19551 + } }, { + "id": 16651, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19552 + } }, { + "id": 16652, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19553 + } }, { + "id": 16653, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19554 + } }, { + "id": 16654, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19555 + } }, { + "id": 16655, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19556 + } }, { + "id": 16656, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19557 + } }, { + "id": 16657, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19558 + } }, { + "id": 16658, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19559 + } }, { + "id": 16659, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19560 + } }, { + "id": 16660, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19561 + } }, { + "id": 16661, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19562 + } }, { + "id": 16662, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19563 + } }, { + "id": 16663, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19564 + } }, { + "id": 16664, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19565 + } }, { + "id": 16665, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19566 + } }, { + "id": 16666, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19567 + } }, { + "id": 16667, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19568 + } }, { + "id": 16668, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19569 + } }, { + "id": 16669, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19570 + } }, { + "id": 16670, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19571 + } }, { + "id": 16671, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19572 + } }, { + "id": 16672, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19573 + } }, { + "id": 16673, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19574 + } }, { + "id": 16674, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19575 + } }, { + "id": 16675, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19576 + } }, { + "id": 16676, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19577 + } }, { + "id": 16677, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19578 + } }, { + "id": 16678, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19579 + } }, { + "id": 16679, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19580 + } }, { + "id": 16680, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19581 + } }, { + "id": 16681, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19582 + } }, { + "id": 16682, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19583 + } }, { + "id": 16683, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19584 + } }, { + "id": 16684, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19585 + } }, { + "id": 16685, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19586 + } }, { + "id": 16686, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19587 + } }, { + "id": 16687, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19588 + } } ] }, - "minecraft:deepslate_tile_slab": { + "minecraft:warped_stem": { "properties": { - "type": [ + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 16167, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 16168, + "properties": { + "axis": "y" + } + }, + { + "id": 16169, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ "top", - "bottom", - "double" + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -196321,3658 +208417,3421 @@ }, "states": [ { + "id": 16400, "properties": { - "type": "top", + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" - }, - "id": 19589 + } }, { + "id": 16401, "properties": { - "type": "top", + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" - }, - "id": 19590 + } }, { + "id": 16402, "properties": { - "type": "bottom", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" - }, - "id": 19591 + } }, { + "id": 16403, "properties": { - "type": "bottom", + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" - }, - "id": 19592, - "default": true + } }, { + "id": 16404, "properties": { - "type": "double", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" - }, - "id": 19593 + } }, { + "id": 16405, "properties": { - "type": "double", + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" - }, - "id": 19594 - } - ] - }, - "minecraft:deepslate_tile_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + } + }, { + "id": 16406, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19595 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16407, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19596 + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16408, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19597 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16409, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19598, - "default": true + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16410, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19599 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16411, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19600 + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16412, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19601 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16413, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19602 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16414, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19603 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 16415, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19604 + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16416, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19605 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16417, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19606 + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16418, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19607 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16419, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19608 + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16420, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19609 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16421, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19610 + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16422, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19611 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16423, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19612 + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16424, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19613 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16425, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19614 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16426, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19615 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16427, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19616 + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16428, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19617 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16429, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19618 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16430, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19619 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16431, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19620 + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16432, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19621 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16433, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19622 + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16434, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19623 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16435, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19624 + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } }, { + "id": 16436, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19625 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } }, { + "id": 16437, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19626 + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } }, { + "id": 16438, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19627 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16439, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19628 + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16440, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16441, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16442, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16443, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16444, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16445, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16446, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16447, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16448, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16449, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16450, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16451, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16452, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16453, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16454, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16455, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16456, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16457, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16458, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 16459, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 16460, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 16461, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 16462, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } }, { + "id": 16463, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16936, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19629 + "facing": "north", + "waterlogged": "true" + } }, { + "default": true, + "id": 16937, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19630 + "facing": "north", + "waterlogged": "false" + } }, { + "id": 16938, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19631 + "facing": "south", + "waterlogged": "true" + } }, { + "id": 16939, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19632 + "facing": "south", + "waterlogged": "false" + } }, { + "id": 16940, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19633 + "facing": "west", + "waterlogged": "true" + } }, { + "id": 16941, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19634 + "facing": "west", + "waterlogged": "false" + } }, { + "id": 16942, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19635 + "facing": "east", + "waterlogged": "true" + } }, { + "id": 16943, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19636 - }, + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wart_block": { + "states": [ + { + "default": true, + "id": 16181 + } + ] + }, + "minecraft:water": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 75, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19637 + "level": "0" + } }, { + "id": 76, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19638 + "level": "1" + } }, { + "id": 77, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19639 + "level": "2" + } }, { + "id": 78, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19640 + "level": "3" + } }, { + "id": 79, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19641 + "level": "4" + } }, { + "id": 80, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19642 + "level": "5" + } }, { + "id": 81, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19643 + "level": "6" + } }, { + "id": 82, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19644 + "level": "7" + } }, { + "id": 83, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19645 + "level": "8" + } }, { + "id": 84, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19646 + "level": "9" + } }, { + "id": 85, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19647 + "level": "10" + } }, { + "id": 86, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19648 + "level": "11" + } }, { + "id": 87, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19649 + "level": "12" + } }, { + "id": 88, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19650 + "level": "13" + } }, { + "id": 89, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19651 + "level": "14" + } }, { + "id": 90, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19652 - }, + "level": "15" + } + } + ] + }, + "minecraft:water_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ { + "default": true, + "id": 5729, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19653 + "level": "1" + } }, { + "id": 5730, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19654 + "level": "2" + } }, { + "id": 5731, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19655 - }, + "level": "3" + } + } + ] + }, + "minecraft:waxed_copper_block": { + "states": [ + { + "default": true, + "id": 19262 + } + ] + }, + "minecraft:waxed_cut_copper": { + "states": [ + { + "default": true, + "id": 19269 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19608, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19656 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19609, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19657 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19610, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19658 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19611, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19659 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19612, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19660 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19613, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19661 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19510, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19662 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19511, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19663 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19512, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19664 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19513, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19665 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19514, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19666 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19515, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19667 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19516, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19668 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19517, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19669 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19518, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19670 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19519, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19671 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19520, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19672 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19521, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19673 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19522, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19674 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19523, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19675 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19524, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19676 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19525, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19677 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19526, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19678 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19527, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19679 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19528, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19680 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19529, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19681 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19530, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19682 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19531, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19683 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19532, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19684 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19533, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19685 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19534, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19686 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19535, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19687 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19536, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19688 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19537, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19689 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19538, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19690 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19539, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19691 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19540, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19692 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19541, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19693 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19542, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19694 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19543, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19695 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19544, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19696 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19545, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19697 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19546, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19698 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19547, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19699 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19548, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19700 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19549, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19701 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19550, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19702 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19551, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19703 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19552, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19704 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19553, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19705 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19554, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19706 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19555, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19707 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19556, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19708 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19557, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19709 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19558, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19710 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19559, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19711 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19560, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19712 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19561, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19713 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19562, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19714 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19563, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19715 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19564, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19716 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19565, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19717 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19566, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19718 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19567, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19719 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19568, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19720 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19569, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19721 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19570, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19722 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19571, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19723 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19572, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19724 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19573, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19725 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19574, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19726 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19575, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19727 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19576, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19728 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19577, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19729 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19578, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19730 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19579, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19731 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19580, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19732 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19581, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19733 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19582, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19734 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19583, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19735 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19584, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19736 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19585, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19737 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19586, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19738 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19587, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19739 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19588, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19740 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19589, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19741 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper": { + "states": [ + { + "default": true, + "id": 19264 + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "states": [ + { + "default": true, + "id": 19268 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19602, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19742 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19603, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19743 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19604, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19744 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19605, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19745 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19606, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19746 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19607, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19747 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19430, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19748 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19431, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19749 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19432, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19750 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19433, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19751 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19434, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19752 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19435, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19753 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19436, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19754 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19437, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19755 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19438, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19756 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19439, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19757 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19440, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19758 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19441, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19759 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19442, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19760 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19443, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19761 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19444, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19762 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19445, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19763 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19446, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19764 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19447, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19765 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19448, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19766 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19449, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19767 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19450, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19768 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19451, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19769 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19452, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19770 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19453, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19771 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19454, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19772 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19455, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19773 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19456, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19774 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19457, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19775 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19458, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19776 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19459, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19777 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19460, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19778 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19461, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19779 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19462, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19780 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19463, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19781 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19464, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19782 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19465, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19783 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19466, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19784 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19467, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19785 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19468, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19786 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19469, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19787 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19470, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19788 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19471, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19789 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19472, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19790 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19473, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19791 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19474, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19792 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19475, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19793 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19476, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19794 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19477, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19795 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19478, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19796 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19479, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19797 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19480, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19798 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19481, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19799 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19482, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19800 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19483, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19801 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19484, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19802 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19485, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19803 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19486, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19804 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19487, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19805 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19488, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19806 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19489, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19807 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19490, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19808 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19491, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19809 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19492, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19810 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19493, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19811 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19494, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19812 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19495, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19813 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19496, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19814 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19497, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19815 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19498, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19816 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19499, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19817 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19500, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19818 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19501, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19819 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19502, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19820 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19503, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19821 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19504, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19822 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19505, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19823 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19506, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19824 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19507, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19825 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19508, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19826 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19509, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19827 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "states": [ + { + "default": true, + "id": 19265 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 19266 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19590, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19828 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19591, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19829 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19592, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19830 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19593, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19831 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19594, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19832 + "type": "double", + "waterlogged": "true" + } }, { + "id": 19595, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19833 - }, + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19270, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19834 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19271, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19835 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19272, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19836 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19273, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19837 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19274, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19838 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19275, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19839 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19276, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19840 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19277, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19841 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19278, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19842 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19279, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19843 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19280, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19844 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19281, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19845 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19282, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19846 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19283, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19847 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19284, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19848 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19285, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19849 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19286, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19850 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19287, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19851 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19288, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19852 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19289, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19853 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19290, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19854 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19291, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19855 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19292, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19856 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19293, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19857 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19294, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19858 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19295, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19859 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19296, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19860 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19297, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19861 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19298, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19862 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19299, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19863 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19300, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19864 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19301, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19865 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19302, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19866 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19303, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19867 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19304, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19868 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19305, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19869 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19306, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19870 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19307, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19871 + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19308, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19872 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19309, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19873 + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19310, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19874 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19311, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19875 + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19312, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19876 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19313, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19877 + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19314, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19878 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19315, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19879 + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19316, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19880 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19317, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19881 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19318, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19882 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19319, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19883 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19320, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19884 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19321, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19885 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19322, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19886 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19323, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19887 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19324, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19888 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19325, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19889 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19326, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19890 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19327, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19891 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19328, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19892 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19329, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19893 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19330, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19894 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19331, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19895 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19332, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19896 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19333, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19897 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19334, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19898 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19335, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19899 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19336, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19900 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19337, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19901 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19338, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19902 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19339, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19903 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19340, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19904 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19341, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19905 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19342, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19906 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19343, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 19907 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19344, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 19908 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19345, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 19909 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19346, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 19910 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19347, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 19911 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19348, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 19912 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19349, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 19913 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper": { + "states": [ + { + "default": true, + "id": 19263 + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 19267 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 19596, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 19914 + "type": "top", + "waterlogged": "true" + } }, { + "id": 19597, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 19915 + "type": "top", + "waterlogged": "false" + } }, { + "id": 19598, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 19916 + "type": "bottom", + "waterlogged": "true" + } }, { + "default": true, + "id": 19599, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 19917 + "type": "bottom", + "waterlogged": "false" + } }, { + "id": 19600, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 19918 - } - ] - }, - "minecraft:deepslate_bricks": { - "states": [ + "type": "double", + "waterlogged": "true" + } + }, { - "id": 19919, - "default": true + "id": 19601, + "properties": { + "type": "double", + "waterlogged": "false" + } } ] }, - "minecraft:deepslate_brick_stairs": { + "minecraft:waxed_weathered_cut_copper_stairs": { "properties": { "facing": [ "north", @@ -199998,729 +211857,745 @@ }, "states": [ { + "id": 19350, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19920 + } }, { + "id": 19351, "properties": { "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19921 + } }, { + "id": 19352, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19922 + } }, { + "id": 19353, "properties": { "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19923 + } }, { + "id": 19354, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19924 + } }, { + "id": 19355, "properties": { "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19925 + } }, { + "id": 19356, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19926 + } }, { + "id": 19357, "properties": { "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19927 + } }, { + "id": 19358, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19928 + } }, { + "id": 19359, "properties": { "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19929 + } }, { + "id": 19360, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19930 + } }, { + "default": true, + "id": 19361, "properties": { "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19931, - "default": true + } }, { + "id": 19362, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19932 + } }, { + "id": 19363, "properties": { "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19933 + } }, { + "id": 19364, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19934 + } }, { + "id": 19365, "properties": { "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19935 + } }, { + "id": 19366, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19936 + } }, { + "id": 19367, "properties": { "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19937 + } }, { + "id": 19368, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19938 + } }, { + "id": 19369, "properties": { "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19939 + } }, { + "id": 19370, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19940 + } }, { + "id": 19371, "properties": { "facing": "south", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19941 + } }, { + "id": 19372, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19942 + } }, { + "id": 19373, "properties": { "facing": "south", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19943 + } }, { + "id": 19374, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19944 + } }, { + "id": 19375, "properties": { "facing": "south", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19945 + } }, { + "id": 19376, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19946 + } }, { + "id": 19377, "properties": { "facing": "south", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19947 + } }, { + "id": 19378, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19948 + } }, { + "id": 19379, "properties": { "facing": "south", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19949 + } }, { + "id": 19380, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19950 + } }, { + "id": 19381, "properties": { "facing": "south", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19951 + } }, { + "id": 19382, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19952 + } }, { + "id": 19383, "properties": { "facing": "south", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19953 + } }, { + "id": 19384, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19954 + } }, { + "id": 19385, "properties": { "facing": "south", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19955 + } }, { + "id": 19386, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19956 + } }, { + "id": 19387, "properties": { "facing": "south", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19957 + } }, { + "id": 19388, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19958 + } }, { + "id": 19389, "properties": { "facing": "south", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19959 + } }, { + "id": 19390, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19960 + } }, { + "id": 19391, "properties": { "facing": "west", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19961 + } }, { + "id": 19392, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19962 + } }, { + "id": 19393, "properties": { "facing": "west", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19963 + } }, { + "id": 19394, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19964 + } }, { + "id": 19395, "properties": { "facing": "west", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19965 + } }, { + "id": 19396, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19966 + } }, { + "id": 19397, "properties": { "facing": "west", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19967 + } }, { + "id": 19398, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19968 + } }, { + "id": 19399, "properties": { "facing": "west", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19969 + } }, { + "id": 19400, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19970 + } }, { + "id": 19401, "properties": { "facing": "west", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19971 + } }, { + "id": 19402, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19972 + } }, { + "id": 19403, "properties": { "facing": "west", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19973 + } }, { + "id": 19404, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19974 + } }, { + "id": 19405, "properties": { "facing": "west", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19975 + } }, { + "id": 19406, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19976 + } }, { + "id": 19407, "properties": { "facing": "west", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19977 + } }, { + "id": 19408, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19978 + } }, { + "id": 19409, "properties": { "facing": "west", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19979 + } }, { + "id": 19410, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "true" - }, - "id": 19980 + } }, { + "id": 19411, "properties": { "facing": "east", "half": "top", "shape": "straight", "waterlogged": "false" - }, - "id": 19981 + } }, { + "id": 19412, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19982 + } }, { + "id": 19413, "properties": { "facing": "east", "half": "top", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19983 + } }, { + "id": 19414, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19984 + } }, { + "id": 19415, "properties": { "facing": "east", "half": "top", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19985 + } }, { + "id": 19416, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19986 + } }, { + "id": 19417, "properties": { "facing": "east", "half": "top", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19987 + } }, { + "id": 19418, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19988 + } }, { + "id": 19419, "properties": { "facing": "east", "half": "top", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19989 + } }, { + "id": 19420, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "true" - }, - "id": 19990 + } }, { + "id": 19421, "properties": { "facing": "east", "half": "bottom", "shape": "straight", "waterlogged": "false" - }, - "id": 19991 + } }, { + "id": 19422, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "true" - }, - "id": 19992 + } }, { + "id": 19423, "properties": { "facing": "east", "half": "bottom", "shape": "inner_left", "waterlogged": "false" - }, - "id": 19993 + } }, { + "id": 19424, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "true" - }, - "id": 19994 + } }, { + "id": 19425, "properties": { "facing": "east", "half": "bottom", "shape": "inner_right", "waterlogged": "false" - }, - "id": 19995 + } }, { + "id": 19426, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "true" - }, - "id": 19996 + } }, { + "id": 19427, "properties": { "facing": "east", "half": "bottom", "shape": "outer_left", "waterlogged": "false" - }, - "id": 19997 + } }, { + "id": 19428, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "true" - }, - "id": 19998 + } }, { + "id": 19429, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", "waterlogged": "false" - }, - "id": 19999 + } } ] }, - "minecraft:deepslate_brick_slab": { + "minecraft:weathered_copper": { + "states": [ + { + "default": true, + "id": 18909 + } + ] + }, + "minecraft:weathered_cut_copper": { + "states": [ + { + "default": true, + "id": 18915 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { "properties": { "type": [ "top", @@ -200734,3748 +212609,3323 @@ }, "states": [ { + "id": 19244, "properties": { "type": "top", "waterlogged": "true" - }, - "id": 20000 + } }, { + "id": 19245, "properties": { "type": "top", "waterlogged": "false" - }, - "id": 20001 + } }, { + "id": 19246, "properties": { "type": "bottom", "waterlogged": "true" - }, - "id": 20002 + } }, { + "default": true, + "id": 19247, "properties": { "type": "bottom", "waterlogged": "false" - }, - "id": 20003, - "default": true + } }, { + "id": 19248, "properties": { "type": "double", "waterlogged": "true" - }, - "id": 20004 + } }, { + "id": 19249, "properties": { "type": "double", "waterlogged": "false" - }, - "id": 20005 + } } ] }, - "minecraft:deepslate_brick_wall": { + "minecraft:weathered_cut_copper_stairs": { "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" + "facing": [ + "north", + "south", + "west", + "east" ], - "south": [ - "none", - "low", - "tall" + "half": [ + "top", + "bottom" ], - "up": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], "waterlogged": [ "true", "false" - ], - "west": [ - "none", - "low", - "tall" ] }, "states": [ { + "id": 18998, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20006 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 18999, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20007 + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19000, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20008 + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19001, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20009, - "default": true + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19002, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20010 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19003, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20011 + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19004, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20012 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19005, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20013 + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19006, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20014 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19007, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20015 + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19008, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20016 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "default": true, + "id": 19009, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20017 + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19010, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20018 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19011, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20019 + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19012, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20020 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19013, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20021 + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19014, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20022 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19015, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20023 + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19016, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20024 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19017, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20025 + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19018, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20026 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19019, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20027 + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19020, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20028 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19021, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20029 + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19022, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20030 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19023, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20031 + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19024, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20032 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19025, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20033 + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19026, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20034 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19027, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20035 + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19028, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20036 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19029, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20037 + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19030, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20038 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19031, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20039 + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19032, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20040 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19033, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20041 + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19036, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19037, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19038, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19039, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19040, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19041, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19042, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19043, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19044, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19045, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20042 + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19046, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20043 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19047, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20044 + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19048, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20045 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19049, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20046 + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19050, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20047 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19051, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20048 + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19052, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20049 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19053, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20050 + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19054, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20051 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19055, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20052 + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19056, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20053 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19057, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20054 + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19058, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20055 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19059, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20056 + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19060, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20057 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19061, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20058 + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19062, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20059 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19063, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20060 + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19064, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20061 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19065, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20062 + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19066, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20063 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19067, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20064 + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } }, { + "id": 19068, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20065 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } }, { + "id": 19069, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20066 + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } }, { + "id": 19070, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20067 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } }, { + "id": 19071, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20068 + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } }, { + "id": 19072, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20069 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } }, { + "id": 19073, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20070 + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } }, { + "id": 19074, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20071 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } }, { + "id": 19075, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20072 + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } }, { + "id": 19076, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20073 + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } }, { + "id": 19077, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20074 - }, + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ { + "default": true, + "id": 16199, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20075 + "age": "0" + } }, { + "id": 16200, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20076 + "age": "1" + } }, { + "id": 16201, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20077 + "age": "2" + } }, { + "id": 16202, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20078 + "age": "3" + } }, { + "id": 16203, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20079 + "age": "4" + } }, { + "id": 16204, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20080 + "age": "5" + } }, { + "id": 16205, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20081 + "age": "6" + } }, { + "id": 16206, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20082 + "age": "7" + } }, { + "id": 16207, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20083 + "age": "8" + } }, { + "id": 16208, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20084 + "age": "9" + } }, { + "id": 16209, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20085 + "age": "10" + } }, { + "id": 16210, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20086 + "age": "11" + } }, { + "id": 16211, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20087 + "age": "12" + } }, { + "id": 16212, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20088 + "age": "13" + } }, { + "id": 16213, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20089 + "age": "14" + } }, { + "id": 16214, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20090 + "age": "15" + } }, { + "id": 16215, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20091 + "age": "16" + } }, { + "id": 16216, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20092 + "age": "17" + } }, { + "id": 16217, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20093 + "age": "18" + } }, { + "id": 16218, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20094 + "age": "19" + } }, { + "id": 16219, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20095 + "age": "20" + } }, { + "id": 16220, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20096 + "age": "21" + } }, { + "id": 16221, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20097 + "age": "22" + } }, { + "id": 16222, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20098 + "age": "23" + } }, { + "id": 16223, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20099 + "age": "24" + } }, { + "id": 16224, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20100 - }, + "age": "25" + } + } + ] + }, + "minecraft:weeping_vines_plant": { + "states": [ + { + "default": true, + "id": 16225 + } + ] + }, + "minecraft:wet_sponge": { + "states": [ + { + "default": true, + "id": 459 + } + ] + }, + "minecraft:wheat": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ { + "default": true, + "id": 3612, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20101 + "age": "0" + } }, { + "id": 3613, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20102 + "age": "1" + } }, { + "id": 3614, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20103 + "age": "2" + } }, { + "id": 3615, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20104 + "age": "3" + } }, { + "id": 3616, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20105 + "age": "4" + } }, { + "id": 3617, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20106 + "age": "5" + } }, { + "id": 3618, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20107 + "age": "6" + } }, { + "id": 3619, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20108 - }, + "age": "7" + } + } + ] + }, + "minecraft:white_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 8638, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20109 + "rotation": "0" + } }, { + "id": 8639, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20110 + "rotation": "1" + } }, { + "id": 8640, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20111 + "rotation": "2" + } }, { + "id": 8641, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20112 + "rotation": "3" + } }, { + "id": 8642, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20113 + "rotation": "4" + } }, { + "id": 8643, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20114 + "rotation": "5" + } }, { + "id": 8644, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20115 + "rotation": "6" + } }, { + "id": 8645, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20116 + "rotation": "7" + } }, { + "id": 8646, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20117 + "rotation": "8" + } }, { + "id": 8647, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20118 + "rotation": "9" + } }, { + "id": 8648, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20119 + "rotation": "10" + } }, { + "id": 8649, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20120 + "rotation": "11" + } }, { + "id": 8650, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20121 + "rotation": "12" + } }, { + "id": 8651, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20122 + "rotation": "13" + } }, { + "id": 8652, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20123 + "rotation": "14" + } }, { + "id": 8653, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20124 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:white_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { + "id": 1279, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20125 + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1280, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20126 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1281, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20127 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1282, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20128 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1283, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20129 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1284, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20130 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1285, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20131 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1286, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20132 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1287, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20133 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1288, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20134 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1289, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20135 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1290, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20136 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1291, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20137 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1292, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20138 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1293, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20139 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1294, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20140 + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18329, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18330, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20141 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18331, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20142 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18332, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20143 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18333, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20144 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18334, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20145 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18335, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20146 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18336, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20147 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18337, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20148 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18338, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20149 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18339, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20150 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18340, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20151 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18341, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20152 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18342, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20153 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18343, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20154 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18344, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20155 + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:white_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18587, + "properties": { + "lit": "true" + } }, { + "default": true, + "id": 18588, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20156 + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "states": [ + { + "default": true, + "id": 8607 + } + ] + }, + "minecraft:white_concrete": { + "states": [ + { + "default": true, + "id": 10319 + } + ] + }, + "minecraft:white_concrete_powder": { + "states": [ + { + "default": true, + "id": 10335 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10255, + "properties": { + "facing": "north" + } }, { + "id": 10256, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20157 + "facing": "south" + } }, { + "id": 10257, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20158 + "facing": "west" + } }, { + "id": 10258, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20159 + "facing": "east" + } + } + ] + }, + "minecraft:white_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 10159, + "properties": { + "facing": "north" + } }, { + "id": 10160, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20160 + "facing": "east" + } }, { + "id": 10161, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20161 + "facing": "south" + } }, { + "id": 10162, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20162 + "facing": "west" + } }, { + "default": true, + "id": 10163, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20163 + "facing": "up" + } }, { + "id": 10164, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "facing": "down" + } + } + ] + }, + "minecraft:white_stained_glass": { + "states": [ + { + "default": true, + "id": 4404 + } + ] + }, + "minecraft:white_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7492, + "properties": { + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 20164 + "west": "true" + } }, { + "id": 7493, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20165 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7494, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 20166 + "west": "true" + } }, { + "id": 7495, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 20167 + "west": "false" + } }, { + "id": 7496, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 20168 + "west": "true" + } }, { + "id": 7497, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 20169 + "west": "false" + } }, { + "id": 7498, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20170 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7499, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 20171 + "west": "false" + } }, { + "id": 7500, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20172 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7501, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20173 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7502, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20174 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7503, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20175 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7504, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 20176 + "west": "true" + } }, { + "id": 7505, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20177 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7506, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 20178 + "west": "true" + } }, { + "id": 7507, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 20179 + "west": "false" + } }, { + "id": 7508, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 20180 + "west": "true" + } }, { + "id": 7509, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 20181 + "west": "false" + } }, { + "id": 7510, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20182 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7511, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 20183 + "west": "false" + } }, { + "id": 7512, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20184 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7513, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20185 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7514, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20186 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7515, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20187 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7516, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 20188 + "west": "true" + } }, { + "id": 7517, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20189 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7518, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 20190 + "west": "true" + } }, { + "id": 7519, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 20191 + "west": "false" + } }, { + "id": 7520, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 20192 + "west": "true" + } }, { + "id": 7521, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 20193 + "west": "false" + } }, { + "id": 7522, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20194 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7523, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 20195 - }, + "west": "false" + } + } + ] + }, + "minecraft:white_terracotta": { + "states": [ + { + "default": true, + "id": 7476 + } + ] + }, + "minecraft:white_tulip": { + "states": [ + { + "default": true, + "id": 1673 + } + ] + }, + "minecraft:white_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8894, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20196 + "facing": "north" + } }, { + "id": 8895, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20197 + "facing": "south" + } }, { + "id": 8896, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20198 + "facing": "west" + } }, { + "id": 8897, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20199 - }, + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "states": [ + { + "default": true, + "id": 1638 + } + ] + }, + "minecraft:wither_rose": { + "states": [ + { + "default": true, + "id": 1677 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 7127, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20200 + "rotation": "0" + } }, { + "id": 7128, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20201 + "rotation": "1" + } }, { + "id": 7129, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20202 + "rotation": "2" + } }, { + "id": 7130, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20203 + "rotation": "3" + } }, { + "id": 7131, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20204 + "rotation": "4" + } }, { + "id": 7132, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20205 + "rotation": "5" + } }, { + "id": 7133, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20206 + "rotation": "6" + } }, { + "id": 7134, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20207 + "rotation": "7" + } }, { + "id": 7135, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20208 + "rotation": "8" + } }, { + "id": 7136, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20209 + "rotation": "9" + } }, { + "id": 7137, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20210 + "rotation": "10" + } }, { + "id": 7138, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20211 + "rotation": "11" + } }, { + "id": 7139, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20212 + "rotation": "12" + } }, { + "id": 7140, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20213 + "rotation": "13" + } }, { + "id": 7141, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20214 + "rotation": "14" + } }, { + "id": 7142, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20215 - }, + "rotation": "15" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 7143, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20216 + "facing": "north" + } }, { + "id": 7144, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20217 + "facing": "south" + } }, { + "id": 7145, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20218 + "facing": "west" + } }, { + "id": 7146, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20219 + "facing": "east" + } + } + ] + }, + "minecraft:yellow_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 8702, + "properties": { + "rotation": "0" + } }, { + "id": 8703, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20220 + "rotation": "1" + } }, { + "id": 8704, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20221 + "rotation": "2" + } }, { + "id": 8705, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20222 + "rotation": "3" + } }, { + "id": 8706, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20223 + "rotation": "4" + } }, { + "id": 8707, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20224 + "rotation": "5" + } }, { + "id": 8708, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20225 + "rotation": "6" + } }, { + "id": 8709, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20226 + "rotation": "7" + } }, { + "id": 8710, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20227 + "rotation": "8" + } }, { + "id": 8711, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20228 + "rotation": "9" + } }, { + "id": 8712, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20229 + "rotation": "10" + } }, { + "id": 8713, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20230 + "rotation": "11" + } }, { + "id": 8714, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20231 + "rotation": "12" + } }, { + "id": 8715, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20232 + "rotation": "13" + } }, { + "id": 8716, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20233 + "rotation": "14" + } }, { + "id": 8717, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20234 + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1343, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } }, { + "id": 1344, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20235 + "facing": "north", + "occupied": "true", + "part": "foot" + } }, { + "id": 1345, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20236 + "facing": "north", + "occupied": "false", + "part": "head" + } }, { + "default": true, + "id": 1346, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20237 + "facing": "north", + "occupied": "false", + "part": "foot" + } }, { + "id": 1347, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20238 + "facing": "south", + "occupied": "true", + "part": "head" + } }, { + "id": 1348, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20239 + "facing": "south", + "occupied": "true", + "part": "foot" + } }, { + "id": 1349, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20240 + "facing": "south", + "occupied": "false", + "part": "head" + } }, { + "id": 1350, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20241 + "facing": "south", + "occupied": "false", + "part": "foot" + } }, { + "id": 1351, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20242 + "facing": "west", + "occupied": "true", + "part": "head" + } }, { + "id": 1352, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20243 + "facing": "west", + "occupied": "true", + "part": "foot" + } }, { + "id": 1353, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20244 + "facing": "west", + "occupied": "false", + "part": "head" + } }, { + "id": 1354, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20245 + "facing": "west", + "occupied": "false", + "part": "foot" + } }, { + "id": 1355, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20246 + "facing": "east", + "occupied": "true", + "part": "head" + } }, { + "id": 1356, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20247 + "facing": "east", + "occupied": "true", + "part": "foot" + } }, { + "id": 1357, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20248 + "facing": "east", + "occupied": "false", + "part": "head" + } }, { + "id": 1358, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20249 - }, + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:yellow_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18393, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20250 + "candles": "1", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18394, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20251 + "candles": "1", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18395, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20252 + "candles": "1", + "lit": "false", + "waterlogged": "true" + } }, { + "default": true, + "id": 18396, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20253 + "candles": "1", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18397, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20254 + "candles": "2", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18398, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20255 + "candles": "2", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18399, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20256 + "candles": "2", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18400, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20257 + "candles": "2", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18401, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20258 + "candles": "3", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18402, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20259 + "candles": "3", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18403, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20260 + "candles": "3", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18404, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20261 + "candles": "3", + "lit": "false", + "waterlogged": "false" + } }, { + "id": 18405, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20262 + "candles": "4", + "lit": "true", + "waterlogged": "true" + } }, { + "id": 18406, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20263 + "candles": "4", + "lit": "true", + "waterlogged": "false" + } }, { + "id": 18407, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20264 + "candles": "4", + "lit": "false", + "waterlogged": "true" + } }, { + "id": 18408, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20265 - }, + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:yellow_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { + "id": 18595, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20266 + "lit": "true" + } }, { + "default": true, + "id": 18596, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20267 - }, + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "states": [ + { + "default": true, + "id": 8611 + } + ] + }, + "minecraft:yellow_concrete": { + "states": [ { + "default": true, + "id": 10323 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "states": [ + { + "default": true, + "id": 10339 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 10271, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20268 + "facing": "north" + } }, { + "id": 10272, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20269 + "facing": "south" + } }, { + "id": 10273, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20270 + "facing": "west" + } }, { + "id": 10274, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20271 - }, + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { + "id": 10183, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20272 + "facing": "north" + } }, { + "id": 10184, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20273 + "facing": "east" + } }, { + "id": 10185, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20274 + "facing": "south" + } }, { + "id": 10186, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20275 + "facing": "west" + } }, { + "default": true, + "id": 10187, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20276 + "facing": "up" + } }, { + "id": 10188, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20277 - }, + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "states": [ + { + "default": true, + "id": 4408 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { + "id": 7620, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 20278 + "west": "true" + } }, { + "id": 7621, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20279 + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7622, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 20280 + "west": "true" + } }, { + "id": 7623, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 20281 + "west": "false" + } }, { + "id": 7624, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 20282 + "west": "true" + } }, { + "id": 7625, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 20283 + "west": "false" + } }, { + "id": 7626, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20284 + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7627, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 20285 + "west": "false" + } }, { + "id": 7628, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20286 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7629, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20287 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7630, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20288 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7631, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20289 + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7632, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" - }, - "id": 20290 + "west": "true" + } }, { + "id": 7633, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20291 + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7634, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" - }, - "id": 20292 + "west": "true" + } }, { + "id": 7635, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" - }, - "id": 20293 + "west": "false" + } }, { + "id": 7636, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" - }, - "id": 20294 + "west": "true" + } }, { + "id": 7637, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" - }, - "id": 20295 + "west": "false" + } }, { + "id": 7638, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20296 + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7639, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" - }, - "id": 20297 + "west": "false" + } }, { + "id": 7640, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20298 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } }, { + "id": 7641, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20299 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7642, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20300 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "id": 7643, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20301 + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } }, { + "id": 7644, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" - }, - "id": 20302 + "west": "true" + } }, { + "id": 7645, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20303 + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } }, { + "id": 7646, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" - }, - "id": 20304 + "west": "true" + } }, { + "id": 7647, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" - }, - "id": 20305 + "west": "false" + } }, { + "id": 7648, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" - }, - "id": 20306 + "west": "true" + } }, { + "id": 7649, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" - }, - "id": 20307 + "west": "false" + } }, { + "id": 7650, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20308 + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } }, { + "default": true, + "id": 7651, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" - }, - "id": 20309 - }, + "west": "false" + } + } + ] + }, + "minecraft:yellow_terracotta": { + "states": [ + { + "default": true, + "id": 7480 + } + ] + }, + "minecraft:yellow_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ { + "default": true, + "id": 8910, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20310 + "facing": "north" + } }, { + "id": 8911, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20311 + "facing": "south" + } }, { + "id": 8912, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20312 + "facing": "west" + } }, { + "id": 8913, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20313 - }, + "facing": "east" + } + } + ] + }, + "minecraft:yellow_wool": { + "states": [ + { + "default": true, + "id": 1642 + } + ] + }, + "minecraft:zombie_head": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { + "default": true, + "id": 7147, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20314 + "rotation": "0" + } }, { + "id": 7148, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20315 + "rotation": "1" + } }, { + "id": 7149, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20316 + "rotation": "2" + } }, { + "id": 7150, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20317 + "rotation": "3" + } }, { + "id": 7151, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - }, - "id": 20318 + "rotation": "4" + } }, { + "id": 7152, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - }, - "id": 20319 + "rotation": "5" + } }, { + "id": 7153, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - }, - "id": 20320 + "rotation": "6" + } }, { + "id": 7154, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - }, - "id": 20321 + "rotation": "7" + } }, { + "id": 7155, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - }, - "id": 20322 + "rotation": "8" + } }, { + "id": 7156, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - }, - "id": 20323 + "rotation": "9" + } }, { + "id": 7157, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - }, - "id": 20324 + "rotation": "10" + } }, { + "id": 7158, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - }, - "id": 20325 + "rotation": "11" + } }, { + "id": 7159, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - }, - "id": 20326 + "rotation": "12" + } }, { + "id": 7160, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - }, - "id": 20327 + "rotation": "13" + } }, { + "id": 7161, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - }, - "id": 20328 + "rotation": "14" + } }, { + "id": 7162, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - }, - "id": 20329 - } - ] - }, - "minecraft:chiseled_deepslate": { - "states": [ - { - "id": 20330, - "default": true - } - ] - }, - "minecraft:cracked_deepslate_bricks": { - "states": [ - { - "id": 20331, - "default": true - } - ] - }, - "minecraft:cracked_deepslate_tiles": { - "states": [ - { - "id": 20332, - "default": true + "rotation": "15" + } } ] }, - "minecraft:infested_deepslate": { + "minecraft:zombie_wall_head": { "properties": { - "axis": [ - "x", - "y", - "z" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { + "default": true, + "id": 7163, "properties": { - "axis": "x" - }, - "id": 20333 + "facing": "north" + } }, { + "id": 7164, "properties": { - "axis": "y" - }, - "id": 20334, - "default": true + "facing": "south" + } }, { + "id": 7165, "properties": { - "axis": "z" - }, - "id": 20335 - } - ] - }, - "minecraft:smooth_basalt": { - "states": [ - { - "id": 20336, - "default": true - } - ] - }, - "minecraft:raw_iron_block": { - "states": [ - { - "id": 20337, - "default": true - } - ] - }, - "minecraft:raw_copper_block": { - "states": [ - { - "id": 20338, - "default": true - } - ] - }, - "minecraft:raw_gold_block": { - "states": [ - { - "id": 20339, - "default": true - } - ] - }, - "minecraft:potted_azalea_bush": { - "states": [ - { - "id": 20340, - "default": true - } - ] - }, - "minecraft:potted_flowering_azalea_bush": { - "states": [ + "facing": "west" + } + }, { - "id": 20341, - "default": true + "id": 7166, + "properties": { + "facing": "east" + } } ] } diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json index 5356990..0818dbf 100644 --- a/src/main/resources/dimension_registry.json +++ b/src/main/resources/dimension_registry.json @@ -1,322 +1,885 @@ { - "type":"CompoundTag", - "value":{ - "minecraft:dimension_type":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:dimension_type" + "type": "CompoundTag", + "value": { + "minecraft:chat_type": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:chat_type" }, - "value":{ - "type":"ListTag", - "value":{ - "type":"CompoundTag", - "list":[ + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ { - "name":{ - "type":"StringTag", - "value":"minecraft:overworld" - }, - "id":{ - "type":"IntTag", - "value":0 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 - }, - "natural":{ - "type":"ByteTag", - "value":1 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_overworld" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 - }, - "has_skylight":{ - "type":"ByteTag", - "value":1 - }, - "bed_works":{ - "type":"ByteTag", - "value":1 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:overworld" - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":0 - }, - "height":{ - "type":"IntTag", - "value":256 + "name": { + "type": "StringTag", + "value": "minecraft:chat" + }, + "id": { + "type": "IntTag", + "value": 0 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:system" + }, + "id": { + "type": "IntTag", + "value": 1 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": {} + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "system" + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:game_info" + }, + "id": { + "type": "IntTag", + "value": 2 + }, + "element": { + "type": "CompoundTag", + "value": { + "overlay": { + "type": "CompoundTag", + "value": {} + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:say_command" + }, + "id": { + "type": "IntTag", + "value": 3 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.announcement" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:msg_command" + }, + "id": { + "type": "IntTag", + "value": 4 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "commands.message.display.incoming" + }, + "style": { + "type": "CompoundTag", + "value": { + "color": { + "type": "StringTag", + "value": "gray" + }, + "italic": { + "type": "ByteTag", + "value": 1 + } + } + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:team_msg_command" + }, + "id": { + "type": "IntTag", + "value": 5 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.team.text" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "team_name", + "sender", + "content" + ] + } + } + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.text.narrate" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:overworld_caves" - }, - "id":{ - "type":"IntTag", - "value":1 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 - }, - "natural":{ - "type":"ByteTag", - "value":1 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_overworld" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 - }, - "has_skylight":{ - "type":"ByteTag", - "value":1 - }, - "bed_works":{ - "type":"ByteTag", - "value":1 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:overworld" - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":1 - }, - "height":{ - "type":"IntTag", - "value":256 + "name": { + "type": "StringTag", + "value": "minecraft:emote_command" + }, + "id": { + "type": "IntTag", + "value": 6 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.emote" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + }, + "decoration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "chat.type.emote" + }, + "style": { + "type": "CompoundTag", + "value": {} + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "sender", + "content" + ] + } + } + } + } + } } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_nether" - }, - "id":{ - "type":"IntTag", - "value":2 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":1 - }, - "natural":{ - "type":"ByteTag", - "value":0 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.1 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_nether" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":1 - }, - "has_skylight":{ - "type":"ByteTag", - "value":0 - }, - "bed_works":{ - "type":"ByteTag", - "value":0 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:the_nether" - }, - "fixed_time":{ - "type":"LongTag", - "value":18000 - }, - "has_raids":{ - "type":"ByteTag", - "value":0 - }, - "logical_height":{ - "type":"IntTag", - "value":128 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":8.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":1 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":1 - }, - "height":{ - "type":"IntTag", - "value":256 + "name": { + "type": "StringTag", + "value": "minecraft:tellraw_command" + }, + "id": { + "type": "IntTag", + "value": 7 + }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": {} + }, + "narration": { + "type": "CompoundTag", + "value": { + "priority": { + "type": "StringTag", + "value": "chat" + } + } + } + } + } + } + ] + } + } + } + }, + "minecraft:dimension_type": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:dimension_type" + }, + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ + { + "name": { + "type": "StringTag", + "value": "minecraft:overworld" + }, + "id": { + "type": "IntTag", + "value": 0 + }, + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 + }, + "natural": { + "type": "ByteTag", + "value": 1 + }, + "ambient_light": { + "type": "FloatTag", + "value": 0 + }, + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_overworld" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 1 + }, + "bed_works": { + "type": "ByteTag", + "value": 1 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:overworld" + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" + }, + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 + }, + "min_inclusive": { + "type": "IntTag", + "value": 0 + } + } + } + } + }, + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 0 + }, + "height": { + "type": "IntTag", + "value": 256 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_end" - }, - "id":{ - "type":"IntTag", - "value":3 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "piglin_safe":{ - "type":"ByteTag", - "value":0 - }, - "natural":{ - "type":"ByteTag", - "value":0 - }, - "ambient_light":{ - "type":"FloatTag", - "value":0.0 - }, - "infiniburn":{ - "type":"StringTag", - "value":"#minecraft:infiniburn_end" - }, - "respawn_anchor_works":{ - "type":"ByteTag", - "value":0 - }, - "has_skylight":{ - "type":"ByteTag", - "value":0 - }, - "bed_works":{ - "type":"ByteTag", - "value":0 - }, - "effects":{ - "type":"StringTag", - "value":"minecraft:the_end" - }, - "fixed_time":{ - "type":"LongTag", - "value":6000 - }, - "has_raids":{ - "type":"ByteTag", - "value":1 - }, - "logical_height":{ - "type":"IntTag", - "value":256 - }, - "coordinate_scale":{ - "type":"DoubleTag", - "value":1.0 - }, - "min_y":{ - "type":"IntTag", - "value":0 - }, - "ultrawarm":{ - "type":"ByteTag", - "value":0 - }, - "has_ceiling":{ - "type":"ByteTag", - "value":0 - }, - "height":{ - "type":"IntTag", - "value":256 + "name": { + "type": "StringTag", + "value": "minecraft:the_nether" + }, + "id": { + "type": "IntTag", + "value": 1 + }, + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 1 + }, + "natural": { + "type": "ByteTag", + "value": 0 + }, + "ambient_light": { + "type": "FloatTag", + "value": 0.1 + }, + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 15 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_nether" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 1 + }, + "has_skylight": { + "type": "ByteTag", + "value": 0 + }, + "bed_works": { + "type": "ByteTag", + "value": 0 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:the_nether" + }, + "fixed_time": { + "type": "LongTag", + "value": 18000 + }, + "has_raids": { + "type": "ByteTag", + "value": 0 + }, + "logical_height": { + "type": "IntTag", + "value": 128 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 8 + }, + "monster_spawn_light_level": { + "type": "IntTag", + "value": 11 + }, + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 1 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 1 + }, + "height": { + "type": "IntTag", + "value": 256 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:the_end" + }, + "id": { + "type": "IntTag", + "value": 2 + }, + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 + }, + "natural": { + "type": "ByteTag", + "value": 0 + }, + "ambient_light": { + "type": "FloatTag", + "value": 0 + }, + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_end" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 0 + }, + "bed_works": { + "type": "ByteTag", + "value": 0 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:the_end" + }, + "fixed_time": { + "type": "LongTag", + "value": 6000 + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" + }, + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 + }, + "min_inclusive": { + "type": "IntTag", + "value": 0 + } + } + } + } + }, + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 0 + }, + "height": { + "type": "IntTag", + "value": 256 + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:overworld_caves" + }, + "id": { + "type": "IntTag", + "value": 3 + }, + "element": { + "type": "CompoundTag", + "value": { + "piglin_safe": { + "type": "ByteTag", + "value": 0 + }, + "natural": { + "type": "ByteTag", + "value": 1 + }, + "ambient_light": { + "type": "FloatTag", + "value": 0 + }, + "monster_spawn_block_light_limit": { + "type": "IntTag", + "value": 0 + }, + "infiniburn": { + "type": "StringTag", + "value": "#minecraft:infiniburn_overworld" + }, + "respawn_anchor_works": { + "type": "ByteTag", + "value": 0 + }, + "has_skylight": { + "type": "ByteTag", + "value": 1 + }, + "bed_works": { + "type": "ByteTag", + "value": 1 + }, + "effects": { + "type": "StringTag", + "value": "minecraft:overworld" + }, + "has_raids": { + "type": "ByteTag", + "value": 1 + }, + "logical_height": { + "type": "IntTag", + "value": 256 + }, + "coordinate_scale": { + "type": "DoubleTag", + "value": 1 + }, + "monster_spawn_light_level": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:uniform" + }, + "value": { + "type": "CompoundTag", + "value": { + "max_inclusive": { + "type": "IntTag", + "value": 7 + }, + "min_inclusive": { + "type": "IntTag", + "value": 0 + } + } + } + } + }, + "min_y": { + "type": "IntTag", + "value": 0 + }, + "ultrawarm": { + "type": "ByteTag", + "value": 0 + }, + "has_ceiling": { + "type": "ByteTag", + "value": 1 + }, + "height": { + "type": "IntTag", + "value": 256 } } } @@ -326,4941 +889,5116 @@ } } }, - "minecraft:worldgen/biome":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:worldgen/biome" + "minecraft:worldgen/biome": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:worldgen/biome" }, - "value":{ - "type":"ListTag", - "value":{ - "type":"CompoundTag", - "list":[ + "value": { + "type": "ListTag", + "value": { + "type": "CompoundTag", + "list": [ + { + "name": { + "type": "StringTag", + "value": "minecraft:the_void" + }, + "id": { + "type": "IntTag", + "value": 0 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } + }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + } + } + } + }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_void" - }, - "id":{ - "type":"IntTag", - "value":0 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:plains" + }, + "id": { + "type": "IntTag", + "value": 1 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"none" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:plains" - }, - "id":{ - "type":"IntTag", - "value":1 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:sunflower_plains" + }, + "id": { + "type": "IntTag", + "value": 2 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"plains" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:sunflower_plains" - }, - "id":{ - "type":"IntTag", - "value":2 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_plains" + }, + "id": { + "type": "IntTag", + "value": 3 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8364543 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"plains" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_plains" - }, - "id":{ - "type":"IntTag", - "value":3 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:ice_spikes" + }, + "id": { + "type": "IntTag", + "value": 4 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8364543 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"icy" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:ice_spikes" - }, - "id":{ - "type":"IntTag", - "value":4 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:desert" + }, + "id": { + "type": "IntTag", + "value": 5 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"icy" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:desert" - }, - "id":{ - "type":"IntTag", - "value":5 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:swamp" + }, + "id": { + "type": "IntTag", + "value": 6 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "swamp" + }, + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.swamp" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "foliage_color": { + "type": "IntTag", + "value": 6975545 + }, + "water_fog_color": { + "type": "IntTag", + "value": 2302743 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 6388580 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"desert" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:swamp" - }, - "id":{ - "type":"IntTag", - "value":6 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "grass_color_modifier":{ - "type":"StringTag", - "value":"swamp" - }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_fog_color":{ - "type":"IntTag", - "value":2302743 - }, - "foliage_color":{ - "type":"IntTag", - "value":6975545 - }, - "water_color":{ - "type":"IntTag", - "value":6388580 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:mangrove_swamp" + }, + "id": { + "type": "IntTag", + "value": 7 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "swamp" + }, + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.swamp" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "foliage_color": { + "type": "IntTag", + "value": 9285927 + }, + "water_fog_color": { + "type": "IntTag", + "value": 5077600 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 3832426 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"swamp" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:forest" - }, - "id":{ - "type":"IntTag", - "value":7 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7972607 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:forest" + }, + "id": { + "type": "IntTag", + "value": 8 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:flower_forest" - }, - "id":{ - "type":"IntTag", - "value":8 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7972607 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:flower_forest" + }, + "id": { + "type": "IntTag", + "value": 9 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:birch_forest" - }, - "id":{ - "type":"IntTag", - "value":9 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.6 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.6 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8037887 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:birch_forest" + }, + "id": { + "type": "IntTag", + "value": 10 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.6 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8037887 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.6 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:dark_forest" - }, - "id":{ - "type":"IntTag", - "value":10 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.7 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "grass_color_modifier":{ - "type":"StringTag", - "value":"dark_forest" - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7972607 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:dark_forest" + }, + "id": { + "type": "IntTag", + "value": 11 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.7 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "grass_color_modifier": { + "type": "StringTag", + "value": "dark_forest" + }, + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "sky_color": { + "type": "IntTag", + "value": 7972607 + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_birch_forest" - }, - "id":{ - "type":"IntTag", - "value":11 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.6 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.6 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8037887 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_birch_forest" + }, + "id": { + "type": "IntTag", + "value": 12 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.6 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8037887 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.6 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_pine_taiga" - }, - "id":{ - "type":"IntTag", - "value":12 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.3 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8168447 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_pine_taiga" + }, + "id": { + "type": "IntTag", + "value": 13 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.3 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.old_growth_taiga" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8168447 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:old_growth_spruce_taiga" - }, - "id":{ - "type":"IntTag", - "value":13 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.25 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233983 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:old_growth_spruce_taiga" + }, + "id": { + "type": "IntTag", + "value": 14 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.25 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.old_growth_taiga" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233983 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:taiga" - }, - "id":{ - "type":"IntTag", - "value":14 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.25 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233983 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:taiga" + }, + "id": { + "type": "IntTag", + "value": 15 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.25 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233983 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_taiga" - }, - "id":{ - "type":"IntTag", - "value":15 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8625919 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_taiga" + }, + "id": { + "type": "IntTag", + "value": 16 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8625919 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"taiga" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:savanna" - }, - "id":{ - "type":"IntTag", - "value":16 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:savanna" + }, + "id": { + "type": "IntTag", + "value": 17 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:savanna_plateau" - }, - "id":{ - "type":"IntTag", - "value":17 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:savanna_plateau" + }, + "id": { + "type": "IntTag", + "value": 18 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_hills" - }, - "id":{ - "type":"IntTag", - "value":18 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233727 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_hills" + }, + "id": { + "type": "IntTag", + "value": 19 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233727 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_gravelly_hills" - }, - "id":{ - "type":"IntTag", - "value":19 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233727 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_gravelly_hills" + }, + "id": { + "type": "IntTag", + "value": 20 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233727 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_forest" - }, - "id":{ - "type":"IntTag", - "value":20 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233727 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_forest" + }, + "id": { + "type": "IntTag", + "value": 21 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233727 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"extreme_hills" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:windswept_savanna" - }, - "id":{ - "type":"IntTag", - "value":21 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:windswept_savanna" + }, + "id": { + "type": "IntTag", + "value": 22 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"savanna" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:jungle" - }, - "id":{ - "type":"IntTag", - "value":22 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7842047 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:jungle" + }, + "id": { + "type": "IntTag", + "value": 23 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:sparse_jungle" - }, - "id":{ - "type":"IntTag", - "value":23 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7842047 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:sparse_jungle" + }, + "id": { + "type": "IntTag", + "value": 24 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:bamboo_jungle" - }, - "id":{ - "type":"IntTag", - "value":24 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.95 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7842047 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:bamboo_jungle" + }, + "id": { + "type": "IntTag", + "value": 25 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.95 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jungle_and_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"jungle" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:badlands" - }, - "id":{ - "type":"IntTag", - "value":25 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "grass_color":{ - "type":"IntTag", - "value":9470285 - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:badlands" + }, + "id": { + "type": "IntTag", + "value": 26 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "grass_color": { + "type": "IntTag", + "value": 9470285 + }, + "foliage_color": { + "type": "IntTag", + "value": 10387789 + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:eroded_badlands" - }, - "id":{ - "type":"IntTag", - "value":26 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "grass_color":{ - "type":"IntTag", - "value":9470285 - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:eroded_badlands" + }, + "id": { + "type": "IntTag", + "value": 27 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "grass_color": { + "type": "IntTag", + "value": 9470285 + }, + "foliage_color": { + "type": "IntTag", + "value": 10387789 + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:wooded_badlands" - }, - "id":{ - "type":"IntTag", - "value":27 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "sky_color":{ - "type":"IntTag", - "value":7254527 - }, - "grass_color":{ - "type":"IntTag", - "value":9470285 - }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "foliage_color":{ - "type":"IntTag", - "value":10387789 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:wooded_badlands" + }, + "id": { + "type": "IntTag", + "value": 28 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "sky_color": { + "type": "IntTag", + "value": 7254527 + }, + "grass_color": { + "type": "IntTag", + "value": 9470285 + }, + "foliage_color": { + "type": "IntTag", + "value": 10387789 + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mesa" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:meadow" - }, - "id":{ - "type":"IntTag", - "value":28 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.meadow" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:meadow" + }, + "id": { + "type": "IntTag", + "value": 29 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.meadow" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "water_color":{ - "type":"IntTag", - "value":937679 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 937679 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:grove" - }, - "id":{ - "type":"IntTag", - "value":29 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.2 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.8 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.grove" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:grove" + }, + "id": { + "type": "IntTag", + "value": 30 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.2 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.grove" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8495359 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "sky_color": { + "type": "IntTag", + "value": 8495359 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"forest" + "downfall": { + "type": "FloatTag", + "value": 0.8 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_slopes" - }, - "id":{ - "type":"IntTag", - "value":30 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.3 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.snowy_slopes" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:snowy_slopes" + }, + "id": { + "type": "IntTag", + "value": 31 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.3 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.snowy_slopes" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8560639 + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8560639 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_peaks" - }, - "id":{ - "type":"IntTag", - "value":31 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.7 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.frozen_peaks" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:frozen_peaks" + }, + "id": { + "type": "IntTag", + "value": 32 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.7 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.frozen_peaks" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8756735 + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8756735 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:jagged_peaks" - }, - "id":{ - "type":"IntTag", - "value":32 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":-0.7 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.9 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.jagged_peaks" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:jagged_peaks" + }, + "id": { + "type": "IntTag", + "value": 33 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": -0.7 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.jagged_peaks" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8756735 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "sky_color": { + "type": "IntTag", + "value": 8756735 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.9 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:stony_peaks" - }, - "id":{ - "type":"IntTag", - "value":33 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":1.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.stony_peaks" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:stony_peaks" + }, + "id": { + "type": "IntTag", + "value": 34 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 1 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.stony_peaks" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7776511 + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7776511 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mountain" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:river" - }, - "id":{ - "type":"IntTag", - "value":34 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:river" + }, + "id": { + "type": "IntTag", + "value": 35 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"river" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_river" - }, - "id":{ - "type":"IntTag", - "value":35 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":3750089 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:frozen_river" + }, + "id": { + "type": "IntTag", + "value": 36 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8364543 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"river" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:beach" - }, - "id":{ - "type":"IntTag", - "value":36 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7907327 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:beach" + }, + "id": { + "type": "IntTag", + "value": 37 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:snowy_beach" - }, - "id":{ - "type":"IntTag", - "value":37 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.05 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:snowy_beach" + }, + "id": { + "type": "IntTag", + "value": 38 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.05 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8364543 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:stony_shore" - }, - "id":{ - "type":"IntTag", - "value":38 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.2 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.3 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8233727 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:stony_shore" + }, + "id": { + "type": "IntTag", + "value": 39 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.2 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8233727 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"beach" + "downfall": { + "type": "FloatTag", + "value": 0.3 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:warm_ocean" - }, - "id":{ - "type":"IntTag", - "value":39 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":270131 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4445678 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:warm_ocean" + }, + "id": { + "type": "IntTag", + "value": 40 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 270131 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4445678 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:lukewarm_ocean" - }, - "id":{ - "type":"IntTag", - "value":40 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":267827 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4566514 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:lukewarm_ocean" + }, + "id": { + "type": "IntTag", + "value": 41 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 267827 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4566514 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_lukewarm_ocean" - }, - "id":{ - "type":"IntTag", - "value":41 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":267827 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4566514 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:deep_lukewarm_ocean" + }, + "id": { + "type": "IntTag", + "value": 42 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 267827 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4566514 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:ocean" - }, - "id":{ - "type":"IntTag", - "value":42 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:ocean" + }, + "id": { + "type": "IntTag", + "value": 43 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_ocean" - }, - "id":{ - "type":"IntTag", - "value":43 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:deep_ocean" + }, + "id": { + "type": "IntTag", + "value": 44 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:cold_ocean" - }, - "id":{ - "type":"IntTag", - "value":44 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:cold_ocean" + }, + "id": { + "type": "IntTag", + "value": 45 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_cold_ocean" - }, - "id":{ - "type":"IntTag", - "value":45 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":4020182 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:deep_cold_ocean" + }, + "id": { + "type": "IntTag", + "value": 46 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4020182 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:frozen_ocean" - }, - "id":{ - "type":"IntTag", - "value":46 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"snow" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8364543 - }, - "water_color":{ - "type":"IntTag", - "value":3750089 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:frozen_ocean" + }, + "id": { + "type": "IntTag", + "value": 47 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0 + }, + "precipitation": { + "type": "StringTag", + "value": "snow" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8364543 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 }, - "temperature_modifier":{ - "type":"StringTag", - "value":"frozen" + "temperature_modifier": { + "type": "StringTag", + "value": "frozen" } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:deep_frozen_ocean" - }, - "id":{ - "type":"IntTag", - "value":47 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":8103167 - }, - "water_color":{ - "type":"IntTag", - "value":3750089 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:deep_frozen_ocean" + }, + "id": { + "type": "IntTag", + "value": 48 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 8103167 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 3750089 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"ocean" + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, + "temperature_modifier": { + "type": "StringTag", + "value": "frozen" + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:mushroom_fields" + }, + "id": { + "type": "IntTag", + "value": 49 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.9 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7842047 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" + } + } + } + } }, - "temperature_modifier":{ - "type":"StringTag", - "value":"frozen" + "downfall": { + "type": "FloatTag", + "value": 1 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:mushroom_fields" - }, - "id":{ - "type":"IntTag", - "value":48 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.9 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":1.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":7842047 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":12638463 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:dripstone_caves" + }, + "id": { + "type": "IntTag", + "value": 50 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.dripstone_caves" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 + } + } + }, + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 + }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"mushroom" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:dripstone_caves" - }, - "id":{ - "type":"IntTag", - "value":49 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.8 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.4 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.dripstone_caves" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:lush_caves" + }, + "id": { + "type": "IntTag", + "value": 51 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.lush_caves" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7907327 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "sky_color": { + "type": "IntTag", + "value": 8103167 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"underground" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:lush_caves" - }, - "id":{ - "type":"IntTag", - "value":50 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"rain" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.overworld.lush_caves" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:deep_dark" + }, + "id": { + "type": "IntTag", + "value": 52 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.8 + }, + "precipitation": { + "type": "StringTag", + "value": "rain" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.overworld.deep_dark" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":8103167 + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 7907327 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 12638463 }, - "fog_color":{ - "type":"IntTag", - "value":12638463 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"underground" + "downfall": { + "type": "FloatTag", + "value": 0.4 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:nether_wastes" - }, - "id":{ - "type":"IntTag", - "value":51 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.nether_wastes" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:nether_wastes" + }, + "id": { + "type": "IntTag", + "value": 53 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.nether_wastes" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.additions" } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 3344392 }, - "fog_color":{ - "type":"IntTag", - "value":3344392 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.nether_wastes.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.nether_wastes.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:warped_forest" - }, - "id":{ - "type":"IntTag", - "value":52 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.warped_forest" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:warped_forest" + }, + "id": { + "type": "IntTag", + "value": 54 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.warped_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:warped_spore" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:warped_spore" } } }, - "probability":{ - "type":"FloatTag", - "value":0.01428 + "probability": { + "type": "FloatTag", + "value": 0.01428 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 1705242 }, - "fog_color":{ - "type":"IntTag", - "value":1705242 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.warped_forest.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.warped_forest.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:crimson_forest" - }, - "id":{ - "type":"IntTag", - "value":53 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.crimson_forest" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:crimson_forest" + }, + "id": { + "type": "IntTag", + "value": 55 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.crimson_forest" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:crimson_spore" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:crimson_spore" } } }, - "probability":{ - "type":"FloatTag", - "value":0.025 + "probability": { + "type": "FloatTag", + "value": 0.025 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 3343107 }, - "fog_color":{ - "type":"IntTag", - "value":3343107 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.crimson_forest.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.crimson_forest.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:soul_sand_valley" - }, - "id":{ - "type":"IntTag", - "value":54 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.soul_sand_valley" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:soul_sand_valley" + }, + "id": { + "type": "IntTag", + "value": 56 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.soul_sand_valley" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:ash" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:ash" } } }, - "probability":{ - "type":"FloatTag", - "value":0.00625 + "probability": { + "type": "FloatTag", + "value": 0.00625 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 1787717 }, - "fog_color":{ - "type":"IntTag", - "value":1787717 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.soul_sand_valley.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.soul_sand_valley.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:basalt_deltas" - }, - "id":{ - "type":"IntTag", - "value":55 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":2.0 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.0 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "music":{ - "type":"CompoundTag", - "value":{ - "replace_current_music":{ - "type":"ByteTag", - "value":0 - }, - "max_delay":{ - "type":"IntTag", - "value":24000 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:music.nether.basalt_deltas" - }, - "min_delay":{ - "type":"IntTag", - "value":12000 + "name": { + "type": "StringTag", + "value": "minecraft:basalt_deltas" + }, + "id": { + "type": "IntTag", + "value": 57 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 2 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "music": { + "type": "CompoundTag", + "value": { + "replace_current_music": { + "type": "ByteTag", + "value": 0 + }, + "max_delay": { + "type": "IntTag", + "value": 24000 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:music.nether.basalt_deltas" + }, + "min_delay": { + "type": "IntTag", + "value": 12000 } } }, - "sky_color":{ - "type":"IntTag", - "value":7254527 + "sky_color": { + "type": "IntTag", + "value": 7254527 }, - "ambient_sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.loop" + "ambient_sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.loop" }, - "additions_sound":{ - "type":"CompoundTag", - "value":{ - "tick_chance":{ - "type":"DoubleTag", - "value":0.0111 + "additions_sound": { + "type": "CompoundTag", + "value": { + "tick_chance": { + "type": "DoubleTag", + "value": 0.0111 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.additions" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.additions" } } }, - "particle":{ - "type":"CompoundTag", - "value":{ - "options":{ - "type":"CompoundTag", - "value":{ - "type":{ - "type":"StringTag", - "value":"minecraft:white_ash" + "particle": { + "type": "CompoundTag", + "value": { + "options": { + "type": "CompoundTag", + "value": { + "type": { + "type": "StringTag", + "value": "minecraft:white_ash" } } }, - "probability":{ - "type":"FloatTag", - "value":0.118093334 + "probability": { + "type": "FloatTag", + "value": 0.118093334 } } }, - "water_fog_color":{ - "type":"IntTag", - "value":329011 + "water_fog_color": { + "type": "IntTag", + "value": 329011 }, - "water_color":{ - "type":"IntTag", - "value":4159204 + "fog_color": { + "type": "IntTag", + "value": 6840176 }, - "fog_color":{ - "type":"IntTag", - "value":6840176 + "water_color": { + "type": "IntTag", + "value": 4159204 }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 }, - "tick_delay":{ - "type":"IntTag", - "value":6000 + "offset": { + "type": "DoubleTag", + "value": 2 }, - "block_search_extent":{ - "type":"IntTag", - "value":8 + "block_search_extent": { + "type": "IntTag", + "value": 8 }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.basalt_deltas.mood" + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.basalt_deltas.mood" } } } } }, - "category":{ - "type":"StringTag", - "value":"nether" + "downfall": { + "type": "FloatTag", + "value": 0 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:the_end" - }, - "id":{ - "type":"IntTag", - "value":56 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":0 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":10518688 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:the_end" + }, + "id": { + "type": "IntTag", + "value": 58 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 0 + }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_highlands" - }, - "id":{ - "type":"IntTag", - "value":57 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":0 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":10518688 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:end_highlands" + }, + "id": { + "type": "IntTag", + "value": 59 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 0 + }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_midlands" - }, - "id":{ - "type":"IntTag", - "value":58 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":0 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":10518688 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:end_midlands" + }, + "id": { + "type": "IntTag", + "value": 60 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 0 + }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:small_end_islands" - }, - "id":{ - "type":"IntTag", - "value":59 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":0 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":10518688 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:small_end_islands" + }, + "id": { + "type": "IntTag", + "value": 61 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 0 + }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } }, { - "name":{ - "type":"StringTag", - "value":"minecraft:end_barrens" - }, - "id":{ - "type":"IntTag", - "value":60 - }, - "element":{ - "type":"CompoundTag", - "value":{ - "temperature":{ - "type":"FloatTag", - "value":0.5 - }, - "precipitation":{ - "type":"StringTag", - "value":"none" - }, - "downfall":{ - "type":"FloatTag", - "value":0.5 - }, - "effects":{ - "type":"CompoundTag", - "value":{ - "water_fog_color":{ - "type":"IntTag", - "value":329011 - }, - "sky_color":{ - "type":"IntTag", - "value":0 - }, - "water_color":{ - "type":"IntTag", - "value":4159204 - }, - "fog_color":{ - "type":"IntTag", - "value":10518688 - }, - "mood_sound":{ - "type":"CompoundTag", - "value":{ - "offset":{ - "type":"DoubleTag", - "value":2.0 - }, - "tick_delay":{ - "type":"IntTag", - "value":6000 - }, - "block_search_extent":{ - "type":"IntTag", - "value":8 - }, - "sound":{ - "type":"StringTag", - "value":"minecraft:ambient.cave" + "name": { + "type": "StringTag", + "value": "minecraft:end_barrens" + }, + "id": { + "type": "IntTag", + "value": 62 + }, + "element": { + "type": "CompoundTag", + "value": { + "temperature": { + "type": "FloatTag", + "value": 0.5 + }, + "precipitation": { + "type": "StringTag", + "value": "none" + }, + "effects": { + "type": "CompoundTag", + "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, + "sky_color": { + "type": "IntTag", + "value": 0 + }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, + "water_color": { + "type": "IntTag", + "value": 4159204 + }, + "mood_sound": { + "type": "CompoundTag", + "value": { + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, + "offset": { + "type": "DoubleTag", + "value": 2 + }, + "block_search_extent": { + "type": "IntTag", + "value": 8 + }, + "sound": { + "type": "StringTag", + "value": "minecraft:ambient.cave" } } } } }, - "category":{ - "type":"StringTag", - "value":"the_end" + "downfall": { + "type": "FloatTag", + "value": 0.5 } } } diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json index d3a9162..9bb9f24 100644 --- a/src/main/resources/mapping.json +++ b/src/main/resources/mapping.json @@ -12,44 +12,45 @@ "PacketLoginOutPluginMessaging": "0x04" }, "PlayIn": { - "0x0F": "PacketPlayInKeepAlive", - "0x03": "PacketPlayInChat", - "0x12": "PacketPlayInPositionAndLook", - "0x11": "PacketPlayInPosition", - "0x13": "PacketPlayInRotation", - "0x0A": "PacketPlayInPluginMessaging", - "0x06": "PacketPlayInTabComplete", - "0x25": "PacketPlayInHeldItemChange", - "0x21": "PacketPlayInResourcePackStatus" + "0x11": "PacketPlayInKeepAlive", + "0x03": "ServerboundChatCommandPacket", + "0x04": "PacketPlayInChat", + "0x14": "PacketPlayInPositionAndLook", + "0x13": "PacketPlayInPosition", + "0x15": "PacketPlayInRotation", + "0x0C": "PacketPlayInPluginMessaging", + "0x08": "PacketPlayInTabComplete", + "0x27": "PacketPlayInHeldItemChange", + "0x23": "PacketPlayInResourcePackStatus" }, "PlayOut": { - "PacketPlayOutLogin": "0x26", - "PacketPlayOutPositionAndLook": "0x38", - "PacketPlayOutSpawnPosition": "0x4B", - "PacketPlayOutChat": "0x0F", - "PacketPlayOutPlayerAbilities": "0x32", - "ClientboundLevelChunkWithLightPacket": "0x22", - "PacketPlayOutUnloadChunk": "0x1D", - "PacketPlayOutKeepAlive": "0x21", - "PacketPlayOutPlayerInfo": "0x36", - "PacketPlayOutUpdateViewPosition": "0x49", - "PacketPlayOutDisconnect": "0x1A", - "PacketPlayOutPluginMessaging": "0x18", - "PacketPlayOutTabComplete": "0x11", - "PacketPlayOutDeclareCommands": "0x12", - "PacketPlayOutRespawn": "0x3D", - "PacketPlayOutGameState": "0x1E", - "PacketPlayOutEntityDestroy": "0x3A", + "PacketPlayOutLogin": "0x23", + "PacketPlayOutPositionAndLook": "0x36", + "PacketPlayOutSpawnPosition": "0x4A", + "ClientboundPlayerChatPacket": "0x30", + "ClientboundSystemChatPacket": "0x5F", + "PacketPlayOutPlayerAbilities": "0x2F", + "ClientboundLevelChunkWithLightPacket": "0x1F", + "PacketPlayOutUnloadChunk": "0x1A", + "PacketPlayOutKeepAlive": "0x1E", + "PacketPlayOutPlayerInfo": "0x34", + "PacketPlayOutUpdateViewPosition": "0x48", + "PacketPlayOutDisconnect": "0x17", + "PacketPlayOutPluginMessaging": "0x15", + "PacketPlayOutTabComplete": "0x0E", + "PacketPlayOutDeclareCommands": "0x0F", + "PacketPlayOutRespawn": "0x3B", + "PacketPlayOutGameState": "0x1B", + "PacketPlayOutEntityDestroy": "0x38", "PacketPlayOutEntityMetadata": "0x4D", "PacketPlayOutSpawnEntity": "0x00", - "PacketPlayOutSpawnEntityLiving": "0x02", - "PacketPlayOutHeldItemChange": "0x48", - "PacketPlayOutPlayerListHeaderFooter": "0x5F", - "PacketPlayOutResourcePackSend": "0x3C", + "PacketPlayOutHeldItemChange": "0x47", + "PacketPlayOutPlayerListHeaderFooter": "0x60", + "PacketPlayOutResourcePackSend": "0x3A", "ClientboundSetTitlesAnimationPacket": "0x5B", "ClientboundSetTitleTextPacket": "0x5A", "ClientboundSetSubtitleTextPacket": "0x58", - "ClientboundClearTitlesPacket": "0x10" + "ClientboundClearTitlesPacket": "0x0D" }, "StatusIn": { "0x01": "PacketStatusInPing", diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json index a2f5462..426b897 100644 --- a/src/main/resources/registries.json +++ b/src/main/resources/registries.json @@ -1,12598 +1,13975 @@ { - "minecraft:game_event": { - "default": "minecraft:step", - "protocol_id": 0, + "minecraft:activity": { "entries": { - "minecraft:block_attach": { + "minecraft:admire_item": { + "protocol_id": 12 + }, + "minecraft:avoid": { + "protocol_id": 13 + }, + "minecraft:celebrate": { + "protocol_id": 11 + }, + "minecraft:core": { "protocol_id": 0 }, - "minecraft:block_change": { + "minecraft:dig": { + "protocol_id": 25 + }, + "minecraft:emerge": { + "protocol_id": 24 + }, + "minecraft:fight": { + "protocol_id": 10 + }, + "minecraft:hide": { + "protocol_id": 9 + }, + "minecraft:idle": { "protocol_id": 1 }, - "minecraft:block_close": { - "protocol_id": 2 + "minecraft:investigate": { + "protocol_id": 22 }, - "minecraft:block_destroy": { - "protocol_id": 3 + "minecraft:lay_spawn": { + "protocol_id": 20 }, - "minecraft:block_detach": { - "protocol_id": 4 + "minecraft:long_jump": { + "protocol_id": 16 }, - "minecraft:block_open": { + "minecraft:meet": { "protocol_id": 5 }, - "minecraft:block_place": { + "minecraft:panic": { "protocol_id": 6 }, - "minecraft:block_press": { - "protocol_id": 7 - }, - "minecraft:block_switch": { - "protocol_id": 8 + "minecraft:play": { + "protocol_id": 3 }, - "minecraft:block_unpress": { - "protocol_id": 9 + "minecraft:play_dead": { + "protocol_id": 15 }, - "minecraft:block_unswitch": { - "protocol_id": 10 + "minecraft:pre_raid": { + "protocol_id": 8 }, - "minecraft:container_close": { - "protocol_id": 11 + "minecraft:raid": { + "protocol_id": 7 }, - "minecraft:container_open": { - "protocol_id": 12 + "minecraft:ram": { + "protocol_id": 17 }, - "minecraft:dispense_fail": { - "protocol_id": 13 + "minecraft:rest": { + "protocol_id": 4 }, - "minecraft:drinking_finish": { + "minecraft:ride": { "protocol_id": 14 }, - "minecraft:eat": { - "protocol_id": 15 + "minecraft:roar": { + "protocol_id": 23 }, - "minecraft:elytra_free_fall": { - "protocol_id": 16 + "minecraft:sniff": { + "protocol_id": 21 }, - "minecraft:entity_damaged": { - "protocol_id": 17 + "minecraft:swim": { + "protocol_id": 19 }, - "minecraft:entity_killed": { + "minecraft:tongue": { "protocol_id": 18 }, - "minecraft:entity_place": { - "protocol_id": 19 + "minecraft:work": { + "protocol_id": 2 + } + }, + "protocol_id": 29 + }, + "minecraft:attribute": { + "entries": { + "minecraft:generic.armor": { + "protocol_id": 8 }, - "minecraft:equip": { - "protocol_id": 20 + "minecraft:generic.armor_toughness": { + "protocol_id": 9 }, - "minecraft:explode": { - "protocol_id": 21 + "minecraft:generic.attack_damage": { + "protocol_id": 5 }, - "minecraft:fishing_rod_cast": { - "protocol_id": 22 + "minecraft:generic.attack_knockback": { + "protocol_id": 6 }, - "minecraft:fishing_rod_reel_in": { - "protocol_id": 23 + "minecraft:generic.attack_speed": { + "protocol_id": 7 }, - "minecraft:flap": { - "protocol_id": 24 + "minecraft:generic.flying_speed": { + "protocol_id": 4 }, - "minecraft:fluid_pickup": { - "protocol_id": 25 + "minecraft:generic.follow_range": { + "protocol_id": 1 }, - "minecraft:fluid_place": { - "protocol_id": 26 + "minecraft:generic.knockback_resistance": { + "protocol_id": 2 }, - "minecraft:hit_ground": { - "protocol_id": 27 + "minecraft:generic.luck": { + "protocol_id": 10 }, - "minecraft:mob_interact": { - "protocol_id": 28 + "minecraft:generic.max_health": { + "protocol_id": 0 }, - "minecraft:lightning_strike": { - "protocol_id": 29 + "minecraft:generic.movement_speed": { + "protocol_id": 3 + }, + "minecraft:horse.jump_strength": { + "protocol_id": 12 + }, + "minecraft:zombie.spawn_reinforcements": { + "protocol_id": 11 + } + }, + "protocol_id": 19 + }, + "minecraft:banner_pattern": { + "entries": { + "minecraft:base": { + "protocol_id": 0 }, - "minecraft:minecart_moving": { + "minecraft:border": { "protocol_id": 30 }, - "minecraft:piston_contract": { + "minecraft:bricks": { + "protocol_id": 34 + }, + "minecraft:circle": { + "protocol_id": 24 + }, + "minecraft:creeper": { + "protocol_id": 36 + }, + "minecraft:cross": { + "protocol_id": 14 + }, + "minecraft:curly_border": { "protocol_id": 31 }, - "minecraft:piston_extend": { - "protocol_id": 32 + "minecraft:diagonal_left": { + "protocol_id": 20 }, - "minecraft:prime_fuse": { - "protocol_id": 33 + "minecraft:diagonal_right": { + "protocol_id": 23 }, - "minecraft:projectile_land": { - "protocol_id": 34 + "minecraft:diagonal_up_left": { + "protocol_id": 22 }, - "minecraft:projectile_shoot": { + "minecraft:diagonal_up_right": { + "protocol_id": 21 + }, + "minecraft:flower": { + "protocol_id": 38 + }, + "minecraft:globe": { "protocol_id": 35 }, - "minecraft:ravager_roar": { - "protocol_id": 36 + "minecraft:gradient": { + "protocol_id": 32 }, - "minecraft:ring_bell": { - "protocol_id": 37 + "minecraft:gradient_up": { + "protocol_id": 33 }, - "minecraft:shear": { - "protocol_id": 38 + "minecraft:half_horizontal": { + "protocol_id": 27 + }, + "minecraft:half_horizontal_bottom": { + "protocol_id": 29 + }, + "minecraft:half_vertical": { + "protocol_id": 26 + }, + "minecraft:half_vertical_right": { + "protocol_id": 28 }, - "minecraft:shulker_close": { + "minecraft:mojang": { "protocol_id": 39 }, - "minecraft:shulker_open": { + "minecraft:piglin": { "protocol_id": 40 }, - "minecraft:splash": { - "protocol_id": 41 - }, - "minecraft:step": { - "protocol_id": 42 + "minecraft:rhombus": { + "protocol_id": 25 }, - "minecraft:swim": { - "protocol_id": 43 + "minecraft:skull": { + "protocol_id": 37 }, - "minecraft:wolf_shaking": { - "protocol_id": 44 - } - } - }, - "minecraft:sound_event": { - "protocol_id": 1, - "entries": { - "minecraft:ambient.cave": { - "protocol_id": 0 + "minecraft:small_stripes": { + "protocol_id": 13 }, - "minecraft:ambient.basalt_deltas.additions": { + "minecraft:square_bottom_left": { "protocol_id": 1 }, - "minecraft:ambient.basalt_deltas.loop": { + "minecraft:square_bottom_right": { "protocol_id": 2 }, - "minecraft:ambient.basalt_deltas.mood": { + "minecraft:square_top_left": { "protocol_id": 3 }, - "minecraft:ambient.crimson_forest.additions": { + "minecraft:square_top_right": { "protocol_id": 4 }, - "minecraft:ambient.crimson_forest.loop": { - "protocol_id": 5 - }, - "minecraft:ambient.crimson_forest.mood": { - "protocol_id": 6 - }, - "minecraft:ambient.nether_wastes.additions": { - "protocol_id": 7 + "minecraft:straight_cross": { + "protocol_id": 15 }, - "minecraft:ambient.nether_wastes.loop": { - "protocol_id": 8 + "minecraft:stripe_bottom": { + "protocol_id": 5 }, - "minecraft:ambient.nether_wastes.mood": { + "minecraft:stripe_center": { "protocol_id": 9 }, - "minecraft:ambient.soul_sand_valley.additions": { - "protocol_id": 10 + "minecraft:stripe_downleft": { + "protocol_id": 12 }, - "minecraft:ambient.soul_sand_valley.loop": { + "minecraft:stripe_downright": { "protocol_id": 11 }, - "minecraft:ambient.soul_sand_valley.mood": { - "protocol_id": 12 + "minecraft:stripe_left": { + "protocol_id": 7 }, - "minecraft:ambient.warped_forest.additions": { - "protocol_id": 13 + "minecraft:stripe_middle": { + "protocol_id": 10 }, - "minecraft:ambient.warped_forest.loop": { - "protocol_id": 14 + "minecraft:stripe_right": { + "protocol_id": 8 }, - "minecraft:ambient.warped_forest.mood": { - "protocol_id": 15 + "minecraft:stripe_top": { + "protocol_id": 6 }, - "minecraft:ambient.underwater.enter": { + "minecraft:triangle_bottom": { "protocol_id": 16 }, - "minecraft:ambient.underwater.exit": { + "minecraft:triangle_top": { "protocol_id": 17 }, - "minecraft:ambient.underwater.loop": { + "minecraft:triangles_bottom": { "protocol_id": 18 }, - "minecraft:ambient.underwater.loop.additions": { + "minecraft:triangles_top": { "protocol_id": 19 + } + }, + "protocol_id": 61 + }, + "minecraft:block": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_button": { + "protocol_id": 342 }, - "minecraft:ambient.underwater.loop.additions.rare": { - "protocol_id": 20 + "minecraft:acacia_door": { + "protocol_id": 525 }, - "minecraft:ambient.underwater.loop.additions.ultra_rare": { - "protocol_id": 21 + "minecraft:acacia_fence": { + "protocol_id": 519 }, - "minecraft:block.amethyst_block.break": { - "protocol_id": 22 + "minecraft:acacia_fence_gate": { + "protocol_id": 513 }, - "minecraft:block.amethyst_block.chime": { - "protocol_id": 23 + "minecraft:acacia_leaves": { + "protocol_id": 74 }, - "minecraft:block.amethyst_block.fall": { - "protocol_id": 24 + "minecraft:acacia_log": { + "protocol_id": 44 }, - "minecraft:block.amethyst_block.hit": { - "protocol_id": 25 + "minecraft:acacia_planks": { + "protocol_id": 17 }, - "minecraft:block.amethyst_block.place": { - "protocol_id": 26 + "minecraft:acacia_pressure_plate": { + "protocol_id": 196 }, - "minecraft:block.amethyst_block.step": { - "protocol_id": 27 + "minecraft:acacia_sapling": { + "protocol_id": 24 }, - "minecraft:block.amethyst_cluster.break": { - "protocol_id": 28 + "minecraft:acacia_sign": { + "protocol_id": 174 }, - "minecraft:block.amethyst_cluster.fall": { - "protocol_id": 29 + "minecraft:acacia_slab": { + "protocol_id": 489 }, - "minecraft:block.amethyst_cluster.hit": { - "protocol_id": 30 + "minecraft:acacia_stairs": { + "protocol_id": 406 }, - "minecraft:block.amethyst_cluster.place": { - "protocol_id": 31 + "minecraft:acacia_trapdoor": { + "protocol_id": 246 }, - "minecraft:block.amethyst_cluster.step": { - "protocol_id": 32 + "minecraft:acacia_wall_sign": { + "protocol_id": 185 }, - "minecraft:block.ancient_debris.break": { - "protocol_id": 33 + "minecraft:acacia_wood": { + "protocol_id": 60 }, - "minecraft:block.ancient_debris.step": { - "protocol_id": 34 + "minecraft:activator_rail": { + "protocol_id": 372 }, - "minecraft:block.ancient_debris.place": { - "protocol_id": 35 + "minecraft:air": { + "protocol_id": 0 }, - "minecraft:block.ancient_debris.hit": { - "protocol_id": 36 + "minecraft:allium": { + "protocol_id": 137 }, - "minecraft:block.ancient_debris.fall": { - "protocol_id": 37 + "minecraft:amethyst_block": { + "protocol_id": 836 }, - "minecraft:block.anvil.break": { - "protocol_id": 38 + "minecraft:amethyst_cluster": { + "protocol_id": 838 }, - "minecraft:block.anvil.destroy": { - "protocol_id": 39 + "minecraft:ancient_debris": { + "protocol_id": 774 }, - "minecraft:block.anvil.fall": { - "protocol_id": 40 + "minecraft:andesite": { + "protocol_id": 6 }, - "minecraft:block.anvil.hit": { - "protocol_id": 41 + "minecraft:andesite_slab": { + "protocol_id": 688 }, - "minecraft:block.anvil.land": { - "protocol_id": 42 + "minecraft:andesite_stairs": { + "protocol_id": 675 }, - "minecraft:block.anvil.place": { - "protocol_id": 43 + "minecraft:andesite_wall": { + "protocol_id": 700 }, - "minecraft:block.anvil.step": { - "protocol_id": 44 + "minecraft:anvil": { + "protocol_id": 357 }, - "minecraft:block.anvil.use": { - "protocol_id": 45 + "minecraft:attached_melon_stem": { + "protocol_id": 269 }, - "minecraft:item.armor.equip_chain": { - "protocol_id": 46 + "minecraft:attached_pumpkin_stem": { + "protocol_id": 268 }, - "minecraft:item.armor.equip_diamond": { - "protocol_id": 47 + "minecraft:azalea": { + "protocol_id": 891 }, - "minecraft:item.armor.equip_elytra": { - "protocol_id": 48 + "minecraft:azalea_leaves": { + "protocol_id": 77 }, - "minecraft:item.armor.equip_generic": { - "protocol_id": 49 + "minecraft:azure_bluet": { + "protocol_id": 138 }, - "minecraft:item.armor.equip_gold": { - "protocol_id": 50 + "minecraft:bamboo": { + "protocol_id": 660 }, - "minecraft:item.armor.equip_iron": { - "protocol_id": 51 + "minecraft:bamboo_sapling": { + "protocol_id": 659 }, - "minecraft:item.armor.equip_leather": { - "protocol_id": 52 + "minecraft:barrel": { + "protocol_id": 707 }, - "minecraft:item.armor.equip_netherite": { - "protocol_id": 53 + "minecraft:barrier": { + "protocol_id": 410 }, - "minecraft:item.armor.equip_turtle": { - "protocol_id": 54 + "minecraft:basalt": { + "protocol_id": 216 }, - "minecraft:entity.armor_stand.break": { - "protocol_id": 55 + "minecraft:beacon": { + "protocol_id": 307 }, - "minecraft:entity.armor_stand.fall": { - "protocol_id": 56 + "minecraft:bedrock": { + "protocol_id": 27 }, - "minecraft:entity.armor_stand.hit": { - "protocol_id": 57 + "minecraft:bee_nest": { + "protocol_id": 769 }, - "minecraft:entity.armor_stand.place": { - "protocol_id": 58 + "minecraft:beehive": { + "protocol_id": 770 }, - "minecraft:entity.arrow.hit": { - "protocol_id": 59 + "minecraft:beetroots": { + "protocol_id": 535 }, - "minecraft:entity.arrow.hit_player": { - "protocol_id": 60 + "minecraft:bell": { + "protocol_id": 716 }, - "minecraft:entity.arrow.shoot": { - "protocol_id": 61 + "minecraft:big_dripleaf": { + "protocol_id": 895 }, - "minecraft:item.axe.strip": { - "protocol_id": 62 + "minecraft:big_dripleaf_stem": { + "protocol_id": 896 }, - "minecraft:item.axe.scrape": { - "protocol_id": 63 + "minecraft:birch_button": { + "protocol_id": 340 }, - "minecraft:item.axe.wax_off": { - "protocol_id": 64 + "minecraft:birch_door": { + "protocol_id": 523 }, - "minecraft:entity.axolotl.attack": { - "protocol_id": 65 + "minecraft:birch_fence": { + "protocol_id": 517 }, - "minecraft:entity.axolotl.death": { - "protocol_id": 66 + "minecraft:birch_fence_gate": { + "protocol_id": 511 }, - "minecraft:entity.axolotl.hurt": { - "protocol_id": 67 + "minecraft:birch_leaves": { + "protocol_id": 72 }, - "minecraft:entity.axolotl.idle_air": { - "protocol_id": 68 + "minecraft:birch_log": { + "protocol_id": 42 }, - "minecraft:entity.axolotl.idle_water": { - "protocol_id": 69 + "minecraft:birch_planks": { + "protocol_id": 15 }, - "minecraft:entity.axolotl.splash": { - "protocol_id": 70 + "minecraft:birch_pressure_plate": { + "protocol_id": 194 }, - "minecraft:entity.axolotl.swim": { - "protocol_id": 71 + "minecraft:birch_sapling": { + "protocol_id": 22 }, - "minecraft:block.azalea.break": { - "protocol_id": 72 + "minecraft:birch_sign": { + "protocol_id": 173 }, - "minecraft:block.azalea.fall": { - "protocol_id": 73 + "minecraft:birch_slab": { + "protocol_id": 487 }, - "minecraft:block.azalea.hit": { - "protocol_id": 74 + "minecraft:birch_stairs": { + "protocol_id": 304 }, - "minecraft:block.azalea.place": { - "protocol_id": 75 + "minecraft:birch_trapdoor": { + "protocol_id": 244 }, - "minecraft:block.azalea.step": { - "protocol_id": 76 + "minecraft:birch_wall_sign": { + "protocol_id": 184 }, - "minecraft:block.azalea_leaves.break": { - "protocol_id": 77 + "minecraft:birch_wood": { + "protocol_id": 58 }, - "minecraft:block.azalea_leaves.fall": { - "protocol_id": 78 + "minecraft:black_banner": { + "protocol_id": 464 }, - "minecraft:block.azalea_leaves.hit": { - "protocol_id": 79 + "minecraft:black_bed": { + "protocol_id": 105 }, - "minecraft:block.azalea_leaves.place": { - "protocol_id": 80 + "minecraft:black_candle": { + "protocol_id": 818 }, - "minecraft:block.azalea_leaves.step": { - "protocol_id": 81 + "minecraft:black_candle_cake": { + "protocol_id": 835 }, - "minecraft:block.bamboo.break": { - "protocol_id": 82 + "minecraft:black_carpet": { + "protocol_id": 439 }, - "minecraft:block.bamboo.fall": { - "protocol_id": 83 + "minecraft:black_concrete": { + "protocol_id": 595 }, - "minecraft:block.bamboo.hit": { - "protocol_id": 84 + "minecraft:black_concrete_powder": { + "protocol_id": 611 }, - "minecraft:block.bamboo.place": { - "protocol_id": 85 + "minecraft:black_glazed_terracotta": { + "protocol_id": 579 }, - "minecraft:block.bamboo.step": { - "protocol_id": 86 + "minecraft:black_shulker_box": { + "protocol_id": 563 }, - "minecraft:block.bamboo_sapling.break": { - "protocol_id": 87 + "minecraft:black_stained_glass": { + "protocol_id": 241 }, - "minecraft:block.bamboo_sapling.hit": { - "protocol_id": 88 + "minecraft:black_stained_glass_pane": { + "protocol_id": 405 }, - "minecraft:block.bamboo_sapling.place": { - "protocol_id": 89 + "minecraft:black_terracotta": { + "protocol_id": 389 }, - "minecraft:block.barrel.close": { - "protocol_id": 90 + "minecraft:black_wall_banner": { + "protocol_id": 480 }, - "minecraft:block.barrel.open": { - "protocol_id": 91 + "minecraft:black_wool": { + "protocol_id": 132 }, - "minecraft:block.basalt.break": { - "protocol_id": 92 + "minecraft:blackstone": { + "protocol_id": 782 }, - "minecraft:block.basalt.step": { - "protocol_id": 93 + "minecraft:blackstone_slab": { + "protocol_id": 785 }, - "minecraft:block.basalt.place": { - "protocol_id": 94 + "minecraft:blackstone_stairs": { + "protocol_id": 783 }, - "minecraft:block.basalt.hit": { - "protocol_id": 95 + "minecraft:blackstone_wall": { + "protocol_id": 784 }, - "minecraft:block.basalt.fall": { - "protocol_id": 96 + "minecraft:blast_furnace": { + "protocol_id": 709 }, - "minecraft:entity.bat.ambient": { - "protocol_id": 97 + "minecraft:blue_banner": { + "protocol_id": 460 }, - "minecraft:entity.bat.death": { - "protocol_id": 98 + "minecraft:blue_bed": { + "protocol_id": 101 }, - "minecraft:entity.bat.hurt": { - "protocol_id": 99 + "minecraft:blue_candle": { + "protocol_id": 814 }, - "minecraft:entity.bat.loop": { - "protocol_id": 100 + "minecraft:blue_candle_cake": { + "protocol_id": 831 }, - "minecraft:entity.bat.takeoff": { - "protocol_id": 101 + "minecraft:blue_carpet": { + "protocol_id": 435 }, - "minecraft:block.beacon.activate": { - "protocol_id": 102 + "minecraft:blue_concrete": { + "protocol_id": 591 }, - "minecraft:block.beacon.ambient": { - "protocol_id": 103 + "minecraft:blue_concrete_powder": { + "protocol_id": 607 }, - "minecraft:block.beacon.deactivate": { - "protocol_id": 104 + "minecraft:blue_glazed_terracotta": { + "protocol_id": 575 }, - "minecraft:block.beacon.power_select": { - "protocol_id": 105 + "minecraft:blue_ice": { + "protocol_id": 657 }, - "minecraft:entity.bee.death": { - "protocol_id": 106 + "minecraft:blue_orchid": { + "protocol_id": 136 }, - "minecraft:entity.bee.hurt": { - "protocol_id": 107 + "minecraft:blue_shulker_box": { + "protocol_id": 559 }, - "minecraft:entity.bee.loop_aggressive": { - "protocol_id": 108 + "minecraft:blue_stained_glass": { + "protocol_id": 237 }, - "minecraft:entity.bee.loop": { - "protocol_id": 109 + "minecraft:blue_stained_glass_pane": { + "protocol_id": 401 }, - "minecraft:entity.bee.sting": { - "protocol_id": 110 + "minecraft:blue_terracotta": { + "protocol_id": 385 }, - "minecraft:entity.bee.pollinate": { - "protocol_id": 111 + "minecraft:blue_wall_banner": { + "protocol_id": 476 }, - "minecraft:block.beehive.drip": { - "protocol_id": 112 + "minecraft:blue_wool": { + "protocol_id": 128 }, - "minecraft:block.beehive.enter": { - "protocol_id": 113 + "minecraft:bone_block": { + "protocol_id": 544 }, - "minecraft:block.beehive.exit": { - "protocol_id": 114 + "minecraft:bookshelf": { + "protocol_id": 153 }, - "minecraft:block.beehive.shear": { - "protocol_id": 115 + "minecraft:brain_coral": { + "protocol_id": 632 }, - "minecraft:block.beehive.work": { - "protocol_id": 116 + "minecraft:brain_coral_block": { + "protocol_id": 622 }, - "minecraft:block.bell.use": { - "protocol_id": 117 + "minecraft:brain_coral_fan": { + "protocol_id": 642 }, - "minecraft:block.bell.resonate": { - "protocol_id": 118 + "minecraft:brain_coral_wall_fan": { + "protocol_id": 652 }, - "minecraft:block.big_dripleaf.break": { - "protocol_id": 119 + "minecraft:brewing_stand": { + "protocol_id": 285 }, - "minecraft:block.big_dripleaf.fall": { - "protocol_id": 120 + "minecraft:brick_slab": { + "protocol_id": 498 }, - "minecraft:block.big_dripleaf.hit": { - "protocol_id": 121 + "minecraft:brick_stairs": { + "protocol_id": 275 }, - "minecraft:block.big_dripleaf.place": { - "protocol_id": 122 + "minecraft:brick_wall": { + "protocol_id": 692 }, - "minecraft:block.big_dripleaf.step": { - "protocol_id": 123 + "minecraft:bricks": { + "protocol_id": 151 }, - "minecraft:entity.blaze.ambient": { - "protocol_id": 124 + "minecraft:brown_banner": { + "protocol_id": 461 }, - "minecraft:entity.blaze.burn": { - "protocol_id": 125 + "minecraft:brown_bed": { + "protocol_id": 102 }, - "minecraft:entity.blaze.death": { - "protocol_id": 126 + "minecraft:brown_candle": { + "protocol_id": 815 }, - "minecraft:entity.blaze.hurt": { - "protocol_id": 127 + "minecraft:brown_candle_cake": { + "protocol_id": 832 }, - "minecraft:entity.blaze.shoot": { - "protocol_id": 128 + "minecraft:brown_carpet": { + "protocol_id": 436 }, - "minecraft:entity.boat.paddle_land": { - "protocol_id": 129 + "minecraft:brown_concrete": { + "protocol_id": 592 }, - "minecraft:entity.boat.paddle_water": { - "protocol_id": 130 + "minecraft:brown_concrete_powder": { + "protocol_id": 608 }, - "minecraft:block.bone_block.break": { - "protocol_id": 131 + "minecraft:brown_glazed_terracotta": { + "protocol_id": 576 }, - "minecraft:block.bone_block.fall": { - "protocol_id": 132 + "minecraft:brown_mushroom": { + "protocol_id": 147 }, - "minecraft:block.bone_block.hit": { - "protocol_id": 133 + "minecraft:brown_mushroom_block": { + "protocol_id": 261 }, - "minecraft:block.bone_block.place": { - "protocol_id": 134 + "minecraft:brown_shulker_box": { + "protocol_id": 560 }, - "minecraft:block.bone_block.step": { - "protocol_id": 135 + "minecraft:brown_stained_glass": { + "protocol_id": 238 }, - "minecraft:item.bone_meal.use": { - "protocol_id": 136 + "minecraft:brown_stained_glass_pane": { + "protocol_id": 402 }, - "minecraft:item.book.page_turn": { - "protocol_id": 137 + "minecraft:brown_terracotta": { + "protocol_id": 386 }, - "minecraft:item.book.put": { - "protocol_id": 138 + "minecraft:brown_wall_banner": { + "protocol_id": 477 }, - "minecraft:block.blastfurnace.fire_crackle": { - "protocol_id": 139 + "minecraft:brown_wool": { + "protocol_id": 129 }, - "minecraft:item.bottle.empty": { - "protocol_id": 140 + "minecraft:bubble_column": { + "protocol_id": 664 }, - "minecraft:item.bottle.fill": { - "protocol_id": 141 + "minecraft:bubble_coral": { + "protocol_id": 633 }, - "minecraft:item.bottle.fill_dragonbreath": { - "protocol_id": 142 + "minecraft:bubble_coral_block": { + "protocol_id": 623 }, - "minecraft:block.brewing_stand.brew": { - "protocol_id": 143 + "minecraft:bubble_coral_fan": { + "protocol_id": 643 }, - "minecraft:block.bubble_column.bubble_pop": { - "protocol_id": 144 + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 653 }, - "minecraft:block.bubble_column.upwards_ambient": { - "protocol_id": 145 + "minecraft:budding_amethyst": { + "protocol_id": 837 }, - "minecraft:block.bubble_column.upwards_inside": { - "protocol_id": 146 + "minecraft:cactus": { + "protocol_id": 207 }, - "minecraft:block.bubble_column.whirlpool_ambient": { - "protocol_id": 147 + "minecraft:cake": { + "protocol_id": 224 }, - "minecraft:block.bubble_column.whirlpool_inside": { - "protocol_id": 148 + "minecraft:calcite": { + "protocol_id": 843 }, - "minecraft:item.bucket.empty": { - "protocol_id": 149 + "minecraft:campfire": { + "protocol_id": 719 }, - "minecraft:item.bucket.empty_axolotl": { - "protocol_id": 150 + "minecraft:candle": { + "protocol_id": 802 }, - "minecraft:item.bucket.empty_fish": { - "protocol_id": 151 + "minecraft:candle_cake": { + "protocol_id": 819 }, - "minecraft:item.bucket.empty_lava": { - "protocol_id": 152 + "minecraft:carrots": { + "protocol_id": 336 }, - "minecraft:item.bucket.empty_powder_snow": { - "protocol_id": 153 + "minecraft:cartography_table": { + "protocol_id": 710 }, - "minecraft:item.bucket.fill": { - "protocol_id": 154 - }, - "minecraft:item.bucket.fill_axolotl": { - "protocol_id": 155 + "minecraft:carved_pumpkin": { + "protocol_id": 222 }, - "minecraft:item.bucket.fill_fish": { - "protocol_id": 156 + "minecraft:cauldron": { + "protocol_id": 286 }, - "minecraft:item.bucket.fill_lava": { - "protocol_id": 157 + "minecraft:cave_air": { + "protocol_id": 663 }, - "minecraft:item.bucket.fill_powder_snow": { - "protocol_id": 158 + "minecraft:cave_vines": { + "protocol_id": 888 }, - "minecraft:item.bundle.drop_contents": { - "protocol_id": 159 + "minecraft:cave_vines_plant": { + "protocol_id": 889 }, - "minecraft:item.bundle.insert": { - "protocol_id": 160 + "minecraft:chain": { + "protocol_id": 265 }, - "minecraft:item.bundle.remove_one": { - "protocol_id": 161 + "minecraft:chain_command_block": { + "protocol_id": 539 }, - "minecraft:block.cake.add_candle": { + "minecraft:chest": { "protocol_id": 162 }, - "minecraft:block.calcite.break": { - "protocol_id": 163 + "minecraft:chipped_anvil": { + "protocol_id": 358 }, - "minecraft:block.calcite.step": { - "protocol_id": 164 + "minecraft:chiseled_deepslate": { + "protocol_id": 918 }, - "minecraft:block.calcite.place": { - "protocol_id": 165 + "minecraft:chiseled_nether_bricks": { + "protocol_id": 799 }, - "minecraft:block.calcite.hit": { - "protocol_id": 166 + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 789 }, - "minecraft:block.calcite.fall": { - "protocol_id": 167 + "minecraft:chiseled_quartz_block": { + "protocol_id": 369 }, - "minecraft:block.campfire.crackle": { - "protocol_id": 168 + "minecraft:chiseled_red_sandstone": { + "protocol_id": 482 }, - "minecraft:block.candle.ambient": { - "protocol_id": 169 + "minecraft:chiseled_sandstone": { + "protocol_id": 87 }, - "minecraft:block.candle.break": { - "protocol_id": 170 + "minecraft:chiseled_stone_bricks": { + "protocol_id": 252 }, - "minecraft:block.candle.extinguish": { - "protocol_id": 171 + "minecraft:chorus_flower": { + "protocol_id": 530 }, - "minecraft:block.candle.fall": { - "protocol_id": 172 + "minecraft:chorus_plant": { + "protocol_id": 529 }, - "minecraft:block.candle.hit": { - "protocol_id": 173 + "minecraft:clay": { + "protocol_id": 208 }, - "minecraft:block.candle.place": { - "protocol_id": 174 + "minecraft:coal_block": { + "protocol_id": 441 }, - "minecraft:block.candle.step": { - "protocol_id": 175 + "minecraft:coal_ore": { + "protocol_id": 37 }, - "minecraft:entity.cat.ambient": { - "protocol_id": 176 + "minecraft:coarse_dirt": { + "protocol_id": 10 }, - "minecraft:entity.cat.stray_ambient": { - "protocol_id": 177 + "minecraft:cobbled_deepslate": { + "protocol_id": 902 }, - "minecraft:entity.cat.death": { - "protocol_id": 178 + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 904 }, - "minecraft:entity.cat.eat": { - "protocol_id": 179 + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 903 }, - "minecraft:entity.cat.hiss": { - "protocol_id": 180 + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 905 }, - "minecraft:entity.cat.beg_for_food": { - "protocol_id": 181 + "minecraft:cobblestone": { + "protocol_id": 12 }, - "minecraft:entity.cat.hurt": { - "protocol_id": 182 + "minecraft:cobblestone_slab": { + "protocol_id": 497 }, - "minecraft:entity.cat.purr": { - "protocol_id": 183 + "minecraft:cobblestone_stairs": { + "protocol_id": 181 }, - "minecraft:entity.cat.purreow": { - "protocol_id": 184 + "minecraft:cobblestone_wall": { + "protocol_id": 308 }, - "minecraft:block.cave_vines.break": { - "protocol_id": 185 + "minecraft:cobweb": { + "protocol_id": 109 }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 186 + "minecraft:cocoa": { + "protocol_id": 295 }, - "minecraft:block.cave_vines.hit": { - "protocol_id": 187 + "minecraft:command_block": { + "protocol_id": 306 }, - "minecraft:block.cave_vines.place": { - "protocol_id": 188 + "minecraft:comparator": { + "protocol_id": 363 }, - "minecraft:block.cave_vines.step": { - "protocol_id": 189 + "minecraft:composter": { + "protocol_id": 767 }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 190 + "minecraft:conduit": { + "protocol_id": 658 }, - "minecraft:block.chain.break": { - "protocol_id": 191 + "minecraft:copper_block": { + "protocol_id": 854 }, - "minecraft:block.chain.fall": { - "protocol_id": 192 + "minecraft:copper_ore": { + "protocol_id": 855 }, - "minecraft:block.chain.hit": { - "protocol_id": 193 + "minecraft:cornflower": { + "protocol_id": 144 }, - "minecraft:block.chain.place": { - "protocol_id": 194 + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 919 }, - "minecraft:block.chain.step": { - "protocol_id": 195 + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 920 }, - "minecraft:block.chest.close": { - "protocol_id": 196 + "minecraft:cracked_nether_bricks": { + "protocol_id": 800 }, - "minecraft:block.chest.locked": { - "protocol_id": 197 + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 788 }, - "minecraft:block.chest.open": { - "protocol_id": 198 + "minecraft:cracked_stone_bricks": { + "protocol_id": 251 }, - "minecraft:entity.chicken.ambient": { - "protocol_id": 199 + "minecraft:crafting_table": { + "protocol_id": 167 }, - "minecraft:entity.chicken.death": { - "protocol_id": 200 + "minecraft:creeper_head": { + "protocol_id": 353 }, - "minecraft:entity.chicken.egg": { - "protocol_id": 201 + "minecraft:creeper_wall_head": { + "protocol_id": 354 }, - "minecraft:entity.chicken.hurt": { - "protocol_id": 202 + "minecraft:crimson_button": { + "protocol_id": 757 }, - "minecraft:entity.chicken.step": { - "protocol_id": 203 + "minecraft:crimson_door": { + "protocol_id": 759 }, - "minecraft:block.chorus_flower.death": { - "protocol_id": 204 + "minecraft:crimson_fence": { + "protocol_id": 749 }, - "minecraft:block.chorus_flower.grow": { - "protocol_id": 205 + "minecraft:crimson_fence_gate": { + "protocol_id": 753 }, - "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 206 + "minecraft:crimson_fungus": { + "protocol_id": 736 }, - "minecraft:entity.cod.ambient": { - "protocol_id": 207 + "minecraft:crimson_hyphae": { + "protocol_id": 733 }, - "minecraft:entity.cod.death": { - "protocol_id": 208 + "minecraft:crimson_nylium": { + "protocol_id": 735 }, - "minecraft:entity.cod.flop": { - "protocol_id": 209 + "minecraft:crimson_planks": { + "protocol_id": 743 }, - "minecraft:entity.cod.hurt": { - "protocol_id": 210 + "minecraft:crimson_pressure_plate": { + "protocol_id": 747 }, - "minecraft:block.comparator.click": { - "protocol_id": 211 + "minecraft:crimson_roots": { + "protocol_id": 742 }, - "minecraft:block.composter.empty": { - "protocol_id": 212 + "minecraft:crimson_sign": { + "protocol_id": 761 }, - "minecraft:block.composter.fill": { - "protocol_id": 213 + "minecraft:crimson_slab": { + "protocol_id": 745 }, - "minecraft:block.composter.fill_success": { - "protocol_id": 214 + "minecraft:crimson_stairs": { + "protocol_id": 755 }, - "minecraft:block.composter.ready": { - "protocol_id": 215 + "minecraft:crimson_stem": { + "protocol_id": 731 }, - "minecraft:block.conduit.activate": { - "protocol_id": 216 + "minecraft:crimson_trapdoor": { + "protocol_id": 751 }, - "minecraft:block.conduit.ambient": { - "protocol_id": 217 + "minecraft:crimson_wall_sign": { + "protocol_id": 763 }, - "minecraft:block.conduit.ambient.short": { - "protocol_id": 218 + "minecraft:crying_obsidian": { + "protocol_id": 775 }, - "minecraft:block.conduit.attack.target": { - "protocol_id": 219 + "minecraft:cut_copper": { + "protocol_id": 860 }, - "minecraft:block.conduit.deactivate": { - "protocol_id": 220 + "minecraft:cut_copper_slab": { + "protocol_id": 868 }, - "minecraft:block.copper.break": { - "protocol_id": 221 + "minecraft:cut_copper_stairs": { + "protocol_id": 864 }, - "minecraft:block.copper.step": { - "protocol_id": 222 + "minecraft:cut_red_sandstone": { + "protocol_id": 483 }, - "minecraft:block.copper.place": { - "protocol_id": 223 + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 504 }, - "minecraft:block.copper.hit": { - "protocol_id": 224 + "minecraft:cut_sandstone": { + "protocol_id": 88 }, - "minecraft:block.copper.fall": { - "protocol_id": 225 + "minecraft:cut_sandstone_slab": { + "protocol_id": 495 }, - "minecraft:block.coral_block.break": { - "protocol_id": 226 + "minecraft:cyan_banner": { + "protocol_id": 458 }, - "minecraft:block.coral_block.fall": { - "protocol_id": 227 + "minecraft:cyan_bed": { + "protocol_id": 99 }, - "minecraft:block.coral_block.hit": { - "protocol_id": 228 + "minecraft:cyan_candle": { + "protocol_id": 812 }, - "minecraft:block.coral_block.place": { - "protocol_id": 229 + "minecraft:cyan_candle_cake": { + "protocol_id": 829 }, - "minecraft:block.coral_block.step": { - "protocol_id": 230 + "minecraft:cyan_carpet": { + "protocol_id": 433 }, - "minecraft:entity.cow.ambient": { - "protocol_id": 231 + "minecraft:cyan_concrete": { + "protocol_id": 589 }, - "minecraft:entity.cow.death": { - "protocol_id": 232 + "minecraft:cyan_concrete_powder": { + "protocol_id": 605 }, - "minecraft:entity.cow.hurt": { - "protocol_id": 233 + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 573 }, - "minecraft:entity.cow.milk": { - "protocol_id": 234 + "minecraft:cyan_shulker_box": { + "protocol_id": 557 }, - "minecraft:entity.cow.step": { + "minecraft:cyan_stained_glass": { "protocol_id": 235 }, - "minecraft:entity.creeper.death": { - "protocol_id": 236 + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 399 }, - "minecraft:entity.creeper.hurt": { - "protocol_id": 237 + "minecraft:cyan_terracotta": { + "protocol_id": 383 }, - "minecraft:entity.creeper.primed": { - "protocol_id": 238 + "minecraft:cyan_wall_banner": { + "protocol_id": 474 }, - "minecraft:block.crop.break": { - "protocol_id": 239 + "minecraft:cyan_wool": { + "protocol_id": 126 }, - "minecraft:item.crop.plant": { - "protocol_id": 240 + "minecraft:damaged_anvil": { + "protocol_id": 359 }, - "minecraft:item.crossbow.hit": { - "protocol_id": 241 + "minecraft:dandelion": { + "protocol_id": 134 }, - "minecraft:item.crossbow.loading_end": { - "protocol_id": 242 + "minecraft:dark_oak_button": { + "protocol_id": 343 }, - "minecraft:item.crossbow.loading_middle": { - "protocol_id": 243 + "minecraft:dark_oak_door": { + "protocol_id": 526 }, - "minecraft:item.crossbow.loading_start": { - "protocol_id": 244 + "minecraft:dark_oak_fence": { + "protocol_id": 520 }, - "minecraft:item.crossbow.quick_charge_1": { - "protocol_id": 245 + "minecraft:dark_oak_fence_gate": { + "protocol_id": 514 }, - "minecraft:item.crossbow.quick_charge_2": { - "protocol_id": 246 + "minecraft:dark_oak_leaves": { + "protocol_id": 75 }, - "minecraft:item.crossbow.quick_charge_3": { - "protocol_id": 247 + "minecraft:dark_oak_log": { + "protocol_id": 45 }, - "minecraft:item.crossbow.shoot": { - "protocol_id": 248 + "minecraft:dark_oak_planks": { + "protocol_id": 18 }, - "minecraft:block.deepslate_bricks.break": { - "protocol_id": 249 + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 197 }, - "minecraft:block.deepslate_bricks.fall": { - "protocol_id": 250 + "minecraft:dark_oak_sapling": { + "protocol_id": 25 }, - "minecraft:block.deepslate_bricks.hit": { - "protocol_id": 251 + "minecraft:dark_oak_sign": { + "protocol_id": 176 }, - "minecraft:block.deepslate_bricks.place": { - "protocol_id": 252 + "minecraft:dark_oak_slab": { + "protocol_id": 490 }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 253 + "minecraft:dark_oak_stairs": { + "protocol_id": 407 }, - "minecraft:block.deepslate.break": { - "protocol_id": 254 + "minecraft:dark_oak_trapdoor": { + "protocol_id": 247 }, - "minecraft:block.deepslate.fall": { - "protocol_id": 255 + "minecraft:dark_oak_wall_sign": { + "protocol_id": 187 }, - "minecraft:block.deepslate.hit": { - "protocol_id": 256 + "minecraft:dark_oak_wood": { + "protocol_id": 61 }, - "minecraft:block.deepslate.place": { - "protocol_id": 257 + "minecraft:dark_prismarine": { + "protocol_id": 415 }, - "minecraft:block.deepslate.step": { - "protocol_id": 258 + "minecraft:dark_prismarine_slab": { + "protocol_id": 421 }, - "minecraft:block.deepslate_tiles.break": { - "protocol_id": 259 + "minecraft:dark_prismarine_stairs": { + "protocol_id": 418 }, - "minecraft:block.deepslate_tiles.fall": { - "protocol_id": 260 + "minecraft:daylight_detector": { + "protocol_id": 364 }, - "minecraft:block.deepslate_tiles.hit": { - "protocol_id": 261 + "minecraft:dead_brain_coral": { + "protocol_id": 627 }, - "minecraft:block.deepslate_tiles.place": { - "protocol_id": 262 + "minecraft:dead_brain_coral_block": { + "protocol_id": 617 }, - "minecraft:block.deepslate_tiles.step": { - "protocol_id": 263 + "minecraft:dead_brain_coral_fan": { + "protocol_id": 637 }, - "minecraft:block.dispenser.dispense": { - "protocol_id": 264 + "minecraft:dead_brain_coral_wall_fan": { + "protocol_id": 647 }, - "minecraft:block.dispenser.fail": { - "protocol_id": 265 + "minecraft:dead_bubble_coral": { + "protocol_id": 628 }, - "minecraft:block.dispenser.launch": { - "protocol_id": 266 + "minecraft:dead_bubble_coral_block": { + "protocol_id": 618 }, - "minecraft:entity.dolphin.ambient": { - "protocol_id": 267 + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 638 }, - "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 268 + "minecraft:dead_bubble_coral_wall_fan": { + "protocol_id": 648 }, - "minecraft:entity.dolphin.attack": { - "protocol_id": 269 + "minecraft:dead_bush": { + "protocol_id": 112 }, - "minecraft:entity.dolphin.death": { - "protocol_id": 270 + "minecraft:dead_fire_coral": { + "protocol_id": 629 }, - "minecraft:entity.dolphin.eat": { - "protocol_id": 271 + "minecraft:dead_fire_coral_block": { + "protocol_id": 619 }, - "minecraft:entity.dolphin.hurt": { - "protocol_id": 272 + "minecraft:dead_fire_coral_fan": { + "protocol_id": 639 }, - "minecraft:entity.dolphin.jump": { - "protocol_id": 273 + "minecraft:dead_fire_coral_wall_fan": { + "protocol_id": 649 }, - "minecraft:entity.dolphin.play": { - "protocol_id": 274 + "minecraft:dead_horn_coral": { + "protocol_id": 630 }, - "minecraft:entity.dolphin.splash": { - "protocol_id": 275 + "minecraft:dead_horn_coral_block": { + "protocol_id": 620 }, - "minecraft:entity.dolphin.swim": { - "protocol_id": 276 + "minecraft:dead_horn_coral_fan": { + "protocol_id": 640 }, - "minecraft:entity.donkey.ambient": { - "protocol_id": 277 + "minecraft:dead_horn_coral_wall_fan": { + "protocol_id": 650 }, - "minecraft:entity.donkey.angry": { - "protocol_id": 278 + "minecraft:dead_tube_coral": { + "protocol_id": 626 }, - "minecraft:entity.donkey.chest": { - "protocol_id": 279 + "minecraft:dead_tube_coral_block": { + "protocol_id": 616 }, - "minecraft:entity.donkey.death": { - "protocol_id": 280 + "minecraft:dead_tube_coral_fan": { + "protocol_id": 636 }, - "minecraft:entity.donkey.eat": { - "protocol_id": 281 + "minecraft:dead_tube_coral_wall_fan": { + "protocol_id": 646 }, - "minecraft:entity.donkey.hurt": { - "protocol_id": 282 + "minecraft:deepslate": { + "protocol_id": 901 }, - "minecraft:block.dripstone_block.break": { - "protocol_id": 283 - }, - "minecraft:block.dripstone_block.step": { - "protocol_id": 284 + "minecraft:deepslate_brick_slab": { + "protocol_id": 916 }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 285 + "minecraft:deepslate_brick_stairs": { + "protocol_id": 915 }, - "minecraft:block.dripstone_block.hit": { - "protocol_id": 286 + "minecraft:deepslate_brick_wall": { + "protocol_id": 917 }, - "minecraft:block.dripstone_block.fall": { - "protocol_id": 287 + "minecraft:deepslate_bricks": { + "protocol_id": 914 }, - "minecraft:block.pointed_dripstone.break": { - "protocol_id": 288 + "minecraft:deepslate_coal_ore": { + "protocol_id": 38 }, - "minecraft:block.pointed_dripstone.step": { - "protocol_id": 289 + "minecraft:deepslate_copper_ore": { + "protocol_id": 856 }, - "minecraft:block.pointed_dripstone.place": { - "protocol_id": 290 + "minecraft:deepslate_diamond_ore": { + "protocol_id": 165 }, - "minecraft:block.pointed_dripstone.hit": { - "protocol_id": 291 + "minecraft:deepslate_emerald_ore": { + "protocol_id": 298 }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 292 + "minecraft:deepslate_gold_ore": { + "protocol_id": 34 }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 293 + "minecraft:deepslate_iron_ore": { + "protocol_id": 36 }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 294 + "minecraft:deepslate_lapis_ore": { + "protocol_id": 83 }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 295 + "minecraft:deepslate_redstone_ore": { + "protocol_id": 200 }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 296 + "minecraft:deepslate_tile_slab": { + "protocol_id": 912 }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 297 + "minecraft:deepslate_tile_stairs": { + "protocol_id": 911 }, - "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 298 + "minecraft:deepslate_tile_wall": { + "protocol_id": 913 }, - "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 299 + "minecraft:deepslate_tiles": { + "protocol_id": 910 }, - "minecraft:entity.drowned.ambient": { - "protocol_id": 300 + "minecraft:detector_rail": { + "protocol_id": 107 }, - "minecraft:entity.drowned.ambient_water": { - "protocol_id": 301 + "minecraft:diamond_block": { + "protocol_id": 166 }, - "minecraft:entity.drowned.death": { - "protocol_id": 302 + "minecraft:diamond_ore": { + "protocol_id": 164 }, - "minecraft:entity.drowned.death_water": { - "protocol_id": 303 + "minecraft:diorite": { + "protocol_id": 4 }, - "minecraft:entity.drowned.hurt": { - "protocol_id": 304 + "minecraft:diorite_slab": { + "protocol_id": 691 }, - "minecraft:entity.drowned.hurt_water": { - "protocol_id": 305 + "minecraft:diorite_stairs": { + "protocol_id": 678 }, - "minecraft:entity.drowned.shoot": { - "protocol_id": 306 + "minecraft:diorite_wall": { + "protocol_id": 704 }, - "minecraft:entity.drowned.step": { - "protocol_id": 307 + "minecraft:dirt": { + "protocol_id": 9 }, - "minecraft:entity.drowned.swim": { - "protocol_id": 308 + "minecraft:dirt_path": { + "protocol_id": 536 }, - "minecraft:item.dye.use": { - "protocol_id": 309 + "minecraft:dispenser": { + "protocol_id": 85 }, - "minecraft:entity.egg.throw": { - "protocol_id": 310 + "minecraft:dragon_egg": { + "protocol_id": 293 }, - "minecraft:entity.elder_guardian.ambient": { - "protocol_id": 311 + "minecraft:dragon_head": { + "protocol_id": 355 }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 312 + "minecraft:dragon_wall_head": { + "protocol_id": 356 }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 313 + "minecraft:dried_kelp_block": { + "protocol_id": 614 }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 314 + "minecraft:dripstone_block": { + "protocol_id": 887 }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 315 + "minecraft:dropper": { + "protocol_id": 373 }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 316 + "minecraft:emerald_block": { + "protocol_id": 302 }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 317 + "minecraft:emerald_ore": { + "protocol_id": 297 }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 318 + "minecraft:enchanting_table": { + "protocol_id": 284 }, - "minecraft:item.elytra.flying": { - "protocol_id": 319 + "minecraft:end_gateway": { + "protocol_id": 537 }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 320 + "minecraft:end_portal": { + "protocol_id": 290 }, - "minecraft:block.ender_chest.close": { - "protocol_id": 321 + "minecraft:end_portal_frame": { + "protocol_id": 291 }, - "minecraft:block.ender_chest.open": { - "protocol_id": 322 + "minecraft:end_rod": { + "protocol_id": 528 }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 323 + "minecraft:end_stone": { + "protocol_id": 292 }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 324 + "minecraft:end_stone_brick_slab": { + "protocol_id": 684 }, - "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 325 + "minecraft:end_stone_brick_stairs": { + "protocol_id": 670 }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 326 + "minecraft:end_stone_brick_wall": { + "protocol_id": 703 }, - "minecraft:entity.ender_dragon.growl": { - "protocol_id": 327 + "minecraft:end_stone_bricks": { + "protocol_id": 534 }, - "minecraft:entity.ender_dragon.hurt": { - "protocol_id": 328 + "minecraft:ender_chest": { + "protocol_id": 299 }, - "minecraft:entity.ender_dragon.shoot": { - "protocol_id": 329 + "minecraft:exposed_copper": { + "protocol_id": 853 }, - "minecraft:entity.ender_eye.death": { - "protocol_id": 330 + "minecraft:exposed_cut_copper": { + "protocol_id": 859 }, - "minecraft:entity.ender_eye.launch": { - "protocol_id": 331 + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 867 }, - "minecraft:entity.enderman.ambient": { - "protocol_id": 332 + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 863 }, - "minecraft:entity.enderman.death": { - "protocol_id": 333 + "minecraft:farmland": { + "protocol_id": 169 }, - "minecraft:entity.enderman.hurt": { - "protocol_id": 334 + "minecraft:fern": { + "protocol_id": 111 }, - "minecraft:entity.enderman.scream": { - "protocol_id": 335 + "minecraft:fire": { + "protocol_id": 158 }, - "minecraft:entity.enderman.stare": { - "protocol_id": 336 + "minecraft:fire_coral": { + "protocol_id": 634 }, - "minecraft:entity.enderman.teleport": { - "protocol_id": 337 + "minecraft:fire_coral_block": { + "protocol_id": 624 }, - "minecraft:entity.endermite.ambient": { - "protocol_id": 338 + "minecraft:fire_coral_fan": { + "protocol_id": 644 }, - "minecraft:entity.endermite.death": { - "protocol_id": 339 + "minecraft:fire_coral_wall_fan": { + "protocol_id": 654 }, - "minecraft:entity.endermite.hurt": { - "protocol_id": 340 + "minecraft:fletching_table": { + "protocol_id": 711 }, - "minecraft:entity.endermite.step": { - "protocol_id": 341 + "minecraft:flower_pot": { + "protocol_id": 310 }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 342 + "minecraft:flowering_azalea": { + "protocol_id": 892 }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 343 + "minecraft:flowering_azalea_leaves": { + "protocol_id": 78 }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 344 + "minecraft:frogspawn": { + "protocol_id": 931 }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 345 + "minecraft:frosted_ice": { + "protocol_id": 540 }, - "minecraft:entity.evoker.ambient": { - "protocol_id": 346 + "minecraft:furnace": { + "protocol_id": 170 }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 347 + "minecraft:gilded_blackstone": { + "protocol_id": 793 }, - "minecraft:entity.evoker.celebrate": { - "protocol_id": 348 - }, - "minecraft:entity.evoker.death": { - "protocol_id": 349 + "minecraft:glass": { + "protocol_id": 81 }, - "minecraft:entity.evoker_fangs.attack": { - "protocol_id": 350 + "minecraft:glass_pane": { + "protocol_id": 266 }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 351 + "minecraft:glow_lichen": { + "protocol_id": 273 }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 352 + "minecraft:glowstone": { + "protocol_id": 220 }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 353 + "minecraft:gold_block": { + "protocol_id": 149 }, - "minecraft:entity.evoker.prepare_wololo": { - "protocol_id": 354 + "minecraft:gold_ore": { + "protocol_id": 33 }, - "minecraft:entity.experience_bottle.throw": { - "protocol_id": 355 + "minecraft:granite": { + "protocol_id": 2 }, - "minecraft:entity.experience_orb.pickup": { - "protocol_id": 356 + "minecraft:granite_slab": { + "protocol_id": 687 }, - "minecraft:block.fence_gate.close": { - "protocol_id": 357 + "minecraft:granite_stairs": { + "protocol_id": 674 }, - "minecraft:block.fence_gate.open": { - "protocol_id": 358 + "minecraft:granite_wall": { + "protocol_id": 696 }, - "minecraft:item.firecharge.use": { - "protocol_id": 359 + "minecraft:grass": { + "protocol_id": 110 }, - "minecraft:entity.firework_rocket.blast": { - "protocol_id": 360 + "minecraft:grass_block": { + "protocol_id": 8 }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 361 + "minecraft:gravel": { + "protocol_id": 32 }, - "minecraft:entity.firework_rocket.large_blast": { - "protocol_id": 362 + "minecraft:gray_banner": { + "protocol_id": 456 }, - "minecraft:entity.firework_rocket.large_blast_far": { - "protocol_id": 363 + "minecraft:gray_bed": { + "protocol_id": 97 }, - "minecraft:entity.firework_rocket.launch": { - "protocol_id": 364 + "minecraft:gray_candle": { + "protocol_id": 810 }, - "minecraft:entity.firework_rocket.shoot": { - "protocol_id": 365 + "minecraft:gray_candle_cake": { + "protocol_id": 827 }, - "minecraft:entity.firework_rocket.twinkle": { - "protocol_id": 366 + "minecraft:gray_carpet": { + "protocol_id": 431 }, - "minecraft:entity.firework_rocket.twinkle_far": { - "protocol_id": 367 + "minecraft:gray_concrete": { + "protocol_id": 587 }, - "minecraft:block.fire.ambient": { - "protocol_id": 368 + "minecraft:gray_concrete_powder": { + "protocol_id": 603 }, - "minecraft:block.fire.extinguish": { - "protocol_id": 369 + "minecraft:gray_glazed_terracotta": { + "protocol_id": 571 }, - "minecraft:entity.fish.swim": { - "protocol_id": 370 + "minecraft:gray_shulker_box": { + "protocol_id": 555 }, - "minecraft:entity.fishing_bobber.retrieve": { - "protocol_id": 371 + "minecraft:gray_stained_glass": { + "protocol_id": 233 }, - "minecraft:entity.fishing_bobber.splash": { - "protocol_id": 372 + "minecraft:gray_stained_glass_pane": { + "protocol_id": 397 }, - "minecraft:entity.fishing_bobber.throw": { - "protocol_id": 373 + "minecraft:gray_terracotta": { + "protocol_id": 381 }, - "minecraft:item.flintandsteel.use": { - "protocol_id": 374 + "minecraft:gray_wall_banner": { + "protocol_id": 472 }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 375 + "minecraft:gray_wool": { + "protocol_id": 124 }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 376 + "minecraft:green_banner": { + "protocol_id": 462 }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 377 + "minecraft:green_bed": { + "protocol_id": 103 }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 378 + "minecraft:green_candle": { + "protocol_id": 816 }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 379 + "minecraft:green_candle_cake": { + "protocol_id": 833 }, - "minecraft:entity.fox.aggro": { - "protocol_id": 380 + "minecraft:green_carpet": { + "protocol_id": 437 }, - "minecraft:entity.fox.ambient": { - "protocol_id": 381 + "minecraft:green_concrete": { + "protocol_id": 593 }, - "minecraft:entity.fox.bite": { - "protocol_id": 382 + "minecraft:green_concrete_powder": { + "protocol_id": 609 }, - "minecraft:entity.fox.death": { - "protocol_id": 383 + "minecraft:green_glazed_terracotta": { + "protocol_id": 577 }, - "minecraft:entity.fox.eat": { - "protocol_id": 384 + "minecraft:green_shulker_box": { + "protocol_id": 561 }, - "minecraft:entity.fox.hurt": { - "protocol_id": 385 + "minecraft:green_stained_glass": { + "protocol_id": 239 }, - "minecraft:entity.fox.screech": { - "protocol_id": 386 + "minecraft:green_stained_glass_pane": { + "protocol_id": 403 }, - "minecraft:entity.fox.sleep": { + "minecraft:green_terracotta": { "protocol_id": 387 }, - "minecraft:entity.fox.sniff": { - "protocol_id": 388 - }, - "minecraft:entity.fox.spit": { - "protocol_id": 389 + "minecraft:green_wall_banner": { + "protocol_id": 478 }, - "minecraft:entity.fox.teleport": { - "protocol_id": 390 + "minecraft:green_wool": { + "protocol_id": 130 }, - "minecraft:block.roots.break": { - "protocol_id": 391 + "minecraft:grindstone": { + "protocol_id": 712 }, - "minecraft:block.roots.step": { - "protocol_id": 392 + "minecraft:hanging_roots": { + "protocol_id": 898 }, - "minecraft:block.roots.place": { - "protocol_id": 393 + "minecraft:hay_block": { + "protocol_id": 423 }, - "minecraft:block.roots.hit": { - "protocol_id": 394 + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 362 }, - "minecraft:block.roots.fall": { - "protocol_id": 395 + "minecraft:honey_block": { + "protocol_id": 771 }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 396 + "minecraft:honeycomb_block": { + "protocol_id": 772 }, - "minecraft:entity.generic.big_fall": { - "protocol_id": 397 + "minecraft:hopper": { + "protocol_id": 367 }, - "minecraft:entity.generic.burn": { - "protocol_id": 398 + "minecraft:horn_coral": { + "protocol_id": 635 }, - "minecraft:entity.generic.death": { - "protocol_id": 399 + "minecraft:horn_coral_block": { + "protocol_id": 625 }, - "minecraft:entity.generic.drink": { - "protocol_id": 400 + "minecraft:horn_coral_fan": { + "protocol_id": 645 }, - "minecraft:entity.generic.eat": { - "protocol_id": 401 + "minecraft:horn_coral_wall_fan": { + "protocol_id": 655 }, - "minecraft:entity.generic.explode": { - "protocol_id": 402 + "minecraft:ice": { + "protocol_id": 205 }, - "minecraft:entity.generic.extinguish_fire": { - "protocol_id": 403 + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 260 }, - "minecraft:entity.generic.hurt": { - "protocol_id": 404 + "minecraft:infested_cobblestone": { + "protocol_id": 256 }, - "minecraft:entity.generic.small_fall": { - "protocol_id": 405 + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 259 }, - "minecraft:entity.generic.splash": { - "protocol_id": 406 + "minecraft:infested_deepslate": { + "protocol_id": 921 }, - "minecraft:entity.generic.swim": { - "protocol_id": 407 + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 258 }, - "minecraft:entity.ghast.ambient": { - "protocol_id": 408 + "minecraft:infested_stone": { + "protocol_id": 255 }, - "minecraft:entity.ghast.death": { - "protocol_id": 409 + "minecraft:infested_stone_bricks": { + "protocol_id": 257 }, - "minecraft:entity.ghast.hurt": { - "protocol_id": 410 + "minecraft:iron_bars": { + "protocol_id": 264 }, - "minecraft:entity.ghast.scream": { - "protocol_id": 411 + "minecraft:iron_block": { + "protocol_id": 150 }, - "minecraft:entity.ghast.shoot": { - "protocol_id": 412 + "minecraft:iron_door": { + "protocol_id": 191 }, - "minecraft:entity.ghast.warn": { - "protocol_id": 413 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 414 + "minecraft:iron_ore": { + "protocol_id": 35 }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 415 + "minecraft:iron_trapdoor": { + "protocol_id": 412 }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 416 + "minecraft:jack_o_lantern": { + "protocol_id": 223 }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 417 + "minecraft:jigsaw": { + "protocol_id": 766 }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 418 + "minecraft:jukebox": { + "protocol_id": 210 }, - "minecraft:block.glass.break": { - "protocol_id": 419 + "minecraft:jungle_button": { + "protocol_id": 341 }, - "minecraft:block.glass.fall": { - "protocol_id": 420 + "minecraft:jungle_door": { + "protocol_id": 524 }, - "minecraft:block.glass.hit": { - "protocol_id": 421 + "minecraft:jungle_fence": { + "protocol_id": 518 }, - "minecraft:block.glass.place": { - "protocol_id": 422 + "minecraft:jungle_fence_gate": { + "protocol_id": 512 }, - "minecraft:block.glass.step": { - "protocol_id": 423 + "minecraft:jungle_leaves": { + "protocol_id": 73 }, - "minecraft:item.glow_ink_sac.use": { - "protocol_id": 424 + "minecraft:jungle_log": { + "protocol_id": 43 }, - "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 425 + "minecraft:jungle_planks": { + "protocol_id": 16 }, - "minecraft:entity.glow_item_frame.break": { - "protocol_id": 426 + "minecraft:jungle_pressure_plate": { + "protocol_id": 195 }, - "minecraft:entity.glow_item_frame.place": { - "protocol_id": 427 + "minecraft:jungle_sapling": { + "protocol_id": 23 }, - "minecraft:entity.glow_item_frame.remove_item": { - "protocol_id": 428 + "minecraft:jungle_sign": { + "protocol_id": 175 }, - "minecraft:entity.glow_item_frame.rotate_item": { - "protocol_id": 429 + "minecraft:jungle_slab": { + "protocol_id": 488 }, - "minecraft:entity.glow_squid.ambient": { - "protocol_id": 430 + "minecraft:jungle_stairs": { + "protocol_id": 305 }, - "minecraft:entity.glow_squid.death": { - "protocol_id": 431 + "minecraft:jungle_trapdoor": { + "protocol_id": 245 }, - "minecraft:entity.glow_squid.hurt": { - "protocol_id": 432 + "minecraft:jungle_wall_sign": { + "protocol_id": 186 }, - "minecraft:entity.glow_squid.squirt": { - "protocol_id": 433 + "minecraft:jungle_wood": { + "protocol_id": 59 }, - "minecraft:entity.goat.ambient": { - "protocol_id": 434 + "minecraft:kelp": { + "protocol_id": 612 }, - "minecraft:entity.goat.death": { - "protocol_id": 435 + "minecraft:kelp_plant": { + "protocol_id": 613 }, - "minecraft:entity.goat.eat": { - "protocol_id": 436 + "minecraft:ladder": { + "protocol_id": 179 }, - "minecraft:entity.goat.hurt": { - "protocol_id": 437 + "minecraft:lantern": { + "protocol_id": 717 }, - "minecraft:entity.goat.long_jump": { - "protocol_id": 438 + "minecraft:lapis_block": { + "protocol_id": 84 }, - "minecraft:entity.goat.milk": { - "protocol_id": 439 + "minecraft:lapis_ore": { + "protocol_id": 82 }, - "minecraft:entity.goat.prepare_ram": { - "protocol_id": 440 + "minecraft:large_amethyst_bud": { + "protocol_id": 839 }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 441 + "minecraft:large_fern": { + "protocol_id": 448 }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 442 + "minecraft:lava": { + "protocol_id": 29 }, - "minecraft:entity.goat.screaming.death": { - "protocol_id": 443 + "minecraft:lava_cauldron": { + "protocol_id": 288 }, - "minecraft:entity.goat.screaming.eat": { - "protocol_id": 444 + "minecraft:lectern": { + "protocol_id": 713 }, - "minecraft:entity.goat.screaming.hurt": { - "protocol_id": 445 + "minecraft:lever": { + "protocol_id": 189 }, - "minecraft:entity.goat.screaming.long_jump": { - "protocol_id": 446 + "minecraft:light": { + "protocol_id": 411 }, - "minecraft:entity.goat.screaming.milk": { - "protocol_id": 447 + "minecraft:light_blue_banner": { + "protocol_id": 452 }, - "minecraft:entity.goat.screaming.prepare_ram": { - "protocol_id": 448 + "minecraft:light_blue_bed": { + "protocol_id": 93 }, - "minecraft:entity.goat.screaming.ram_impact": { - "protocol_id": 449 + "minecraft:light_blue_candle": { + "protocol_id": 806 }, - "minecraft:entity.goat.step": { - "protocol_id": 450 + "minecraft:light_blue_candle_cake": { + "protocol_id": 823 }, - "minecraft:block.grass.break": { - "protocol_id": 451 + "minecraft:light_blue_carpet": { + "protocol_id": 427 }, - "minecraft:block.grass.fall": { - "protocol_id": 452 + "minecraft:light_blue_concrete": { + "protocol_id": 583 }, - "minecraft:block.grass.hit": { - "protocol_id": 453 + "minecraft:light_blue_concrete_powder": { + "protocol_id": 599 }, - "minecraft:block.grass.place": { - "protocol_id": 454 + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 567 }, - "minecraft:block.grass.step": { - "protocol_id": 455 + "minecraft:light_blue_shulker_box": { + "protocol_id": 551 }, - "minecraft:block.gravel.break": { - "protocol_id": 456 + "minecraft:light_blue_stained_glass": { + "protocol_id": 229 }, - "minecraft:block.gravel.fall": { - "protocol_id": 457 + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 393 }, - "minecraft:block.gravel.hit": { - "protocol_id": 458 + "minecraft:light_blue_terracotta": { + "protocol_id": 377 }, - "minecraft:block.gravel.place": { - "protocol_id": 459 + "minecraft:light_blue_wall_banner": { + "protocol_id": 468 }, - "minecraft:block.gravel.step": { - "protocol_id": 460 + "minecraft:light_blue_wool": { + "protocol_id": 120 }, - "minecraft:block.grindstone.use": { - "protocol_id": 461 + "minecraft:light_gray_banner": { + "protocol_id": 457 }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 462 + "minecraft:light_gray_bed": { + "protocol_id": 98 }, - "minecraft:entity.guardian.ambient": { - "protocol_id": 463 + "minecraft:light_gray_candle": { + "protocol_id": 811 }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 464 + "minecraft:light_gray_candle_cake": { + "protocol_id": 828 }, - "minecraft:entity.guardian.attack": { - "protocol_id": 465 + "minecraft:light_gray_carpet": { + "protocol_id": 432 }, - "minecraft:entity.guardian.death": { - "protocol_id": 466 + "minecraft:light_gray_concrete": { + "protocol_id": 588 }, - "minecraft:entity.guardian.death_land": { - "protocol_id": 467 + "minecraft:light_gray_concrete_powder": { + "protocol_id": 604 }, - "minecraft:entity.guardian.flop": { - "protocol_id": 468 + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 572 }, - "minecraft:entity.guardian.hurt": { - "protocol_id": 469 + "minecraft:light_gray_shulker_box": { + "protocol_id": 556 }, - "minecraft:entity.guardian.hurt_land": { - "protocol_id": 470 + "minecraft:light_gray_stained_glass": { + "protocol_id": 234 }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 471 + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 398 }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 472 + "minecraft:light_gray_terracotta": { + "protocol_id": 382 }, - "minecraft:block.hanging_roots.hit": { + "minecraft:light_gray_wall_banner": { "protocol_id": 473 }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 474 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 475 + "minecraft:light_gray_wool": { + "protocol_id": 125 }, - "minecraft:item.hoe.till": { - "protocol_id": 476 + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 361 }, - "minecraft:entity.hoglin.ambient": { - "protocol_id": 477 + "minecraft:lightning_rod": { + "protocol_id": 885 }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 478 + "minecraft:lilac": { + "protocol_id": 444 }, - "minecraft:entity.hoglin.attack": { - "protocol_id": 479 + "minecraft:lily_of_the_valley": { + "protocol_id": 146 }, - "minecraft:entity.hoglin.converted_to_zombified": { - "protocol_id": 480 + "minecraft:lily_pad": { + "protocol_id": 279 }, - "minecraft:entity.hoglin.death": { - "protocol_id": 481 + "minecraft:lime_banner": { + "protocol_id": 454 }, - "minecraft:entity.hoglin.hurt": { - "protocol_id": 482 + "minecraft:lime_bed": { + "protocol_id": 95 }, - "minecraft:entity.hoglin.retreat": { - "protocol_id": 483 + "minecraft:lime_candle": { + "protocol_id": 808 }, - "minecraft:entity.hoglin.step": { - "protocol_id": 484 + "minecraft:lime_candle_cake": { + "protocol_id": 825 }, - "minecraft:block.honey_block.break": { - "protocol_id": 485 + "minecraft:lime_carpet": { + "protocol_id": 429 }, - "minecraft:block.honey_block.fall": { - "protocol_id": 486 + "minecraft:lime_concrete": { + "protocol_id": 585 }, - "minecraft:block.honey_block.hit": { - "protocol_id": 487 + "minecraft:lime_concrete_powder": { + "protocol_id": 601 }, - "minecraft:block.honey_block.place": { - "protocol_id": 488 + "minecraft:lime_glazed_terracotta": { + "protocol_id": 569 }, - "minecraft:block.honey_block.slide": { - "protocol_id": 489 + "minecraft:lime_shulker_box": { + "protocol_id": 553 }, - "minecraft:block.honey_block.step": { - "protocol_id": 490 + "minecraft:lime_stained_glass": { + "protocol_id": 231 }, - "minecraft:item.honeycomb.wax_on": { - "protocol_id": 491 + "minecraft:lime_stained_glass_pane": { + "protocol_id": 395 }, - "minecraft:item.honey_bottle.drink": { - "protocol_id": 492 + "minecraft:lime_terracotta": { + "protocol_id": 379 }, - "minecraft:entity.horse.ambient": { - "protocol_id": 493 + "minecraft:lime_wall_banner": { + "protocol_id": 470 }, - "minecraft:entity.horse.angry": { - "protocol_id": 494 + "minecraft:lime_wool": { + "protocol_id": 122 }, - "minecraft:entity.horse.armor": { - "protocol_id": 495 + "minecraft:lodestone": { + "protocol_id": 781 }, - "minecraft:entity.horse.breathe": { - "protocol_id": 496 + "minecraft:loom": { + "protocol_id": 706 }, - "minecraft:entity.horse.death": { - "protocol_id": 497 + "minecraft:magenta_banner": { + "protocol_id": 451 }, - "minecraft:entity.horse.eat": { - "protocol_id": 498 + "minecraft:magenta_bed": { + "protocol_id": 92 }, - "minecraft:entity.horse.gallop": { - "protocol_id": 499 + "minecraft:magenta_candle": { + "protocol_id": 805 }, - "minecraft:entity.horse.hurt": { - "protocol_id": 500 + "minecraft:magenta_candle_cake": { + "protocol_id": 822 }, - "minecraft:entity.horse.jump": { - "protocol_id": 501 + "minecraft:magenta_carpet": { + "protocol_id": 426 }, - "minecraft:entity.horse.land": { - "protocol_id": 502 + "minecraft:magenta_concrete": { + "protocol_id": 582 }, - "minecraft:entity.horse.saddle": { - "protocol_id": 503 + "minecraft:magenta_concrete_powder": { + "protocol_id": 598 }, - "minecraft:entity.horse.step": { - "protocol_id": 504 + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 566 }, - "minecraft:entity.horse.step_wood": { - "protocol_id": 505 + "minecraft:magenta_shulker_box": { + "protocol_id": 550 }, - "minecraft:entity.hostile.big_fall": { - "protocol_id": 506 + "minecraft:magenta_stained_glass": { + "protocol_id": 228 }, - "minecraft:entity.hostile.death": { - "protocol_id": 507 + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 392 }, - "minecraft:entity.hostile.hurt": { - "protocol_id": 508 + "minecraft:magenta_terracotta": { + "protocol_id": 376 }, - "minecraft:entity.hostile.small_fall": { - "protocol_id": 509 + "minecraft:magenta_wall_banner": { + "protocol_id": 467 }, - "minecraft:entity.hostile.splash": { - "protocol_id": 510 + "minecraft:magenta_wool": { + "protocol_id": 119 }, - "minecraft:entity.hostile.swim": { - "protocol_id": 511 + "minecraft:magma_block": { + "protocol_id": 541 }, - "minecraft:entity.husk.ambient": { - "protocol_id": 512 + "minecraft:mangrove_button": { + "protocol_id": 344 }, - "minecraft:entity.husk.converted_to_zombie": { - "protocol_id": 513 + "minecraft:mangrove_door": { + "protocol_id": 527 }, - "minecraft:entity.husk.death": { - "protocol_id": 514 + "minecraft:mangrove_fence": { + "protocol_id": 521 }, - "minecraft:entity.husk.hurt": { + "minecraft:mangrove_fence_gate": { "protocol_id": 515 }, - "minecraft:entity.husk.step": { - "protocol_id": 516 + "minecraft:mangrove_leaves": { + "protocol_id": 76 }, - "minecraft:entity.illusioner.ambient": { - "protocol_id": 517 + "minecraft:mangrove_log": { + "protocol_id": 46 }, - "minecraft:entity.illusioner.cast_spell": { - "protocol_id": 518 + "minecraft:mangrove_planks": { + "protocol_id": 19 }, - "minecraft:entity.illusioner.death": { - "protocol_id": 519 + "minecraft:mangrove_pressure_plate": { + "protocol_id": 198 }, - "minecraft:entity.illusioner.hurt": { - "protocol_id": 520 + "minecraft:mangrove_propagule": { + "protocol_id": 26 }, - "minecraft:entity.illusioner.mirror_move": { - "protocol_id": 521 + "minecraft:mangrove_roots": { + "protocol_id": 47 }, - "minecraft:entity.illusioner.prepare_blindness": { - "protocol_id": 522 + "minecraft:mangrove_sign": { + "protocol_id": 177 }, - "minecraft:entity.illusioner.prepare_mirror": { - "protocol_id": 523 + "minecraft:mangrove_slab": { + "protocol_id": 491 }, - "minecraft:item.ink_sac.use": { - "protocol_id": 524 + "minecraft:mangrove_stairs": { + "protocol_id": 408 }, - "minecraft:block.iron_door.close": { - "protocol_id": 525 + "minecraft:mangrove_trapdoor": { + "protocol_id": 248 }, - "minecraft:block.iron_door.open": { - "protocol_id": 526 + "minecraft:mangrove_wall_sign": { + "protocol_id": 188 }, - "minecraft:entity.iron_golem.attack": { - "protocol_id": 527 + "minecraft:mangrove_wood": { + "protocol_id": 62 }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 528 + "minecraft:medium_amethyst_bud": { + "protocol_id": 840 }, - "minecraft:entity.iron_golem.death": { - "protocol_id": 529 + "minecraft:melon": { + "protocol_id": 267 }, - "minecraft:entity.iron_golem.hurt": { - "protocol_id": 530 + "minecraft:melon_stem": { + "protocol_id": 271 }, - "minecraft:entity.iron_golem.repair": { - "protocol_id": 531 + "minecraft:moss_block": { + "protocol_id": 894 }, - "minecraft:entity.iron_golem.step": { - "protocol_id": 532 + "minecraft:moss_carpet": { + "protocol_id": 893 }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 533 + "minecraft:mossy_cobblestone": { + "protocol_id": 154 }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 534 + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 683 }, - "minecraft:entity.item_frame.add_item": { - "protocol_id": 535 + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 669 }, - "minecraft:entity.item_frame.break": { - "protocol_id": 536 + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 309 }, - "minecraft:entity.item_frame.place": { - "protocol_id": 537 + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 681 }, - "minecraft:entity.item_frame.remove_item": { - "protocol_id": 538 + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 667 }, - "minecraft:entity.item_frame.rotate_item": { - "protocol_id": 539 + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 695 }, - "minecraft:entity.item.break": { - "protocol_id": 540 + "minecraft:mossy_stone_bricks": { + "protocol_id": 250 }, - "minecraft:entity.item.pickup": { - "protocol_id": 541 + "minecraft:moving_piston": { + "protocol_id": 133 }, - "minecraft:block.ladder.break": { - "protocol_id": 542 + "minecraft:mud": { + "protocol_id": 900 }, - "minecraft:block.ladder.fall": { - "protocol_id": 543 + "minecraft:mud_brick_slab": { + "protocol_id": 500 }, - "minecraft:block.ladder.hit": { - "protocol_id": 544 + "minecraft:mud_brick_stairs": { + "protocol_id": 277 }, - "minecraft:block.ladder.place": { - "protocol_id": 545 + "minecraft:mud_brick_wall": { + "protocol_id": 698 }, - "minecraft:block.ladder.step": { - "protocol_id": 546 + "minecraft:mud_bricks": { + "protocol_id": 254 }, - "minecraft:block.lantern.break": { - "protocol_id": 547 + "minecraft:muddy_mangrove_roots": { + "protocol_id": 48 }, - "minecraft:block.lantern.fall": { - "protocol_id": 548 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 549 + "minecraft:mushroom_stem": { + "protocol_id": 263 }, - "minecraft:block.lantern.place": { - "protocol_id": 550 + "minecraft:mycelium": { + "protocol_id": 278 }, - "minecraft:block.lantern.step": { - "protocol_id": 551 + "minecraft:nether_brick_fence": { + "protocol_id": 281 }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 552 + "minecraft:nether_brick_slab": { + "protocol_id": 501 }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 553 + "minecraft:nether_brick_stairs": { + "protocol_id": 282 }, - "minecraft:block.lava.ambient": { - "protocol_id": 554 + "minecraft:nether_brick_wall": { + "protocol_id": 699 }, - "minecraft:block.lava.extinguish": { - "protocol_id": 555 + "minecraft:nether_bricks": { + "protocol_id": 280 }, - "minecraft:block.lava.pop": { - "protocol_id": 556 + "minecraft:nether_gold_ore": { + "protocol_id": 39 }, - "minecraft:entity.leash_knot.break": { - "protocol_id": 557 + "minecraft:nether_portal": { + "protocol_id": 221 }, - "minecraft:entity.leash_knot.place": { - "protocol_id": 558 + "minecraft:nether_quartz_ore": { + "protocol_id": 366 }, - "minecraft:block.lever.click": { - "protocol_id": 559 + "minecraft:nether_sprouts": { + "protocol_id": 730 }, - "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 560 + "minecraft:nether_wart": { + "protocol_id": 283 }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 561 + "minecraft:nether_wart_block": { + "protocol_id": 542 }, - "minecraft:entity.lingering_potion.throw": { - "protocol_id": 562 + "minecraft:netherite_block": { + "protocol_id": 773 }, - "minecraft:entity.llama.ambient": { - "protocol_id": 563 + "minecraft:netherrack": { + "protocol_id": 213 }, - "minecraft:entity.llama.angry": { - "protocol_id": 564 + "minecraft:note_block": { + "protocol_id": 89 }, - "minecraft:entity.llama.chest": { - "protocol_id": 565 + "minecraft:oak_button": { + "protocol_id": 338 }, - "minecraft:entity.llama.death": { - "protocol_id": 566 + "minecraft:oak_door": { + "protocol_id": 178 }, - "minecraft:entity.llama.eat": { - "protocol_id": 567 + "minecraft:oak_fence": { + "protocol_id": 211 }, - "minecraft:entity.llama.hurt": { - "protocol_id": 568 + "minecraft:oak_fence_gate": { + "protocol_id": 274 }, - "minecraft:entity.llama.spit": { - "protocol_id": 569 + "minecraft:oak_leaves": { + "protocol_id": 70 }, - "minecraft:entity.llama.step": { - "protocol_id": 570 + "minecraft:oak_log": { + "protocol_id": 40 }, - "minecraft:entity.llama.swag": { - "protocol_id": 571 + "minecraft:oak_planks": { + "protocol_id": 13 }, - "minecraft:entity.magma_cube.death_small": { - "protocol_id": 572 + "minecraft:oak_pressure_plate": { + "protocol_id": 192 }, - "minecraft:block.lodestone.break": { - "protocol_id": 573 + "minecraft:oak_sapling": { + "protocol_id": 20 }, - "minecraft:block.lodestone.step": { - "protocol_id": 574 + "minecraft:oak_sign": { + "protocol_id": 171 }, - "minecraft:block.lodestone.place": { - "protocol_id": 575 + "minecraft:oak_slab": { + "protocol_id": 485 }, - "minecraft:block.lodestone.hit": { - "protocol_id": 576 + "minecraft:oak_stairs": { + "protocol_id": 161 }, - "minecraft:block.lodestone.fall": { - "protocol_id": 577 + "minecraft:oak_trapdoor": { + "protocol_id": 242 }, - "minecraft:item.lodestone_compass.lock": { - "protocol_id": 578 + "minecraft:oak_wall_sign": { + "protocol_id": 182 }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 579 + "minecraft:oak_wood": { + "protocol_id": 56 }, - "minecraft:entity.magma_cube.hurt": { - "protocol_id": 580 + "minecraft:observer": { + "protocol_id": 546 }, - "minecraft:entity.magma_cube.hurt_small": { - "protocol_id": 581 + "minecraft:obsidian": { + "protocol_id": 155 }, - "minecraft:entity.magma_cube.jump": { - "protocol_id": 582 + "minecraft:ochre_froglight": { + "protocol_id": 928 }, - "minecraft:entity.magma_cube.squish": { - "protocol_id": 583 + "minecraft:orange_banner": { + "protocol_id": 450 }, - "minecraft:entity.magma_cube.squish_small": { - "protocol_id": 584 + "minecraft:orange_bed": { + "protocol_id": 91 }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 585 + "minecraft:orange_candle": { + "protocol_id": 804 }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 586 + "minecraft:orange_candle_cake": { + "protocol_id": 821 }, - "minecraft:block.metal.break": { - "protocol_id": 587 + "minecraft:orange_carpet": { + "protocol_id": 425 }, - "minecraft:block.metal.fall": { - "protocol_id": 588 + "minecraft:orange_concrete": { + "protocol_id": 581 }, - "minecraft:block.metal.hit": { - "protocol_id": 589 + "minecraft:orange_concrete_powder": { + "protocol_id": 597 }, - "minecraft:block.metal.place": { - "protocol_id": 590 + "minecraft:orange_glazed_terracotta": { + "protocol_id": 565 }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 591 + "minecraft:orange_shulker_box": { + "protocol_id": 549 }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 592 + "minecraft:orange_stained_glass": { + "protocol_id": 227 }, - "minecraft:block.metal.step": { - "protocol_id": 593 + "minecraft:orange_stained_glass_pane": { + "protocol_id": 391 }, - "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 594 + "minecraft:orange_terracotta": { + "protocol_id": 375 }, - "minecraft:entity.minecart.inside": { - "protocol_id": 595 + "minecraft:orange_tulip": { + "protocol_id": 140 }, - "minecraft:entity.minecart.riding": { - "protocol_id": 596 + "minecraft:orange_wall_banner": { + "protocol_id": 466 }, - "minecraft:entity.mooshroom.convert": { - "protocol_id": 597 + "minecraft:orange_wool": { + "protocol_id": 118 }, - "minecraft:entity.mooshroom.eat": { - "protocol_id": 598 + "minecraft:oxeye_daisy": { + "protocol_id": 143 }, - "minecraft:entity.mooshroom.milk": { - "protocol_id": 599 + "minecraft:oxidized_copper": { + "protocol_id": 851 }, - "minecraft:entity.mooshroom.suspicious_milk": { - "protocol_id": 600 + "minecraft:oxidized_cut_copper": { + "protocol_id": 857 }, - "minecraft:entity.mooshroom.shear": { - "protocol_id": 601 + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 865 }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 602 + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 861 }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 603 + "minecraft:packed_ice": { + "protocol_id": 442 }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 604 + "minecraft:packed_mud": { + "protocol_id": 253 }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 605 + "minecraft:pearlescent_froglight": { + "protocol_id": 930 }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 606 + "minecraft:peony": { + "protocol_id": 446 }, - "minecraft:block.moss.break": { - "protocol_id": 607 + "minecraft:petrified_oak_slab": { + "protocol_id": 496 }, - "minecraft:block.moss.fall": { - "protocol_id": 608 + "minecraft:pink_banner": { + "protocol_id": 455 }, - "minecraft:block.moss.hit": { - "protocol_id": 609 + "minecraft:pink_bed": { + "protocol_id": 96 }, - "minecraft:block.moss.place": { - "protocol_id": 610 + "minecraft:pink_candle": { + "protocol_id": 809 }, - "minecraft:block.moss.step": { - "protocol_id": 611 + "minecraft:pink_candle_cake": { + "protocol_id": 826 }, - "minecraft:entity.mule.ambient": { - "protocol_id": 612 + "minecraft:pink_carpet": { + "protocol_id": 430 }, - "minecraft:entity.mule.angry": { - "protocol_id": 613 - }, - "minecraft:entity.mule.chest": { - "protocol_id": 614 - }, - "minecraft:entity.mule.death": { - "protocol_id": 615 + "minecraft:pink_concrete": { + "protocol_id": 586 }, - "minecraft:entity.mule.eat": { - "protocol_id": 616 + "minecraft:pink_concrete_powder": { + "protocol_id": 602 }, - "minecraft:entity.mule.hurt": { - "protocol_id": 617 + "minecraft:pink_glazed_terracotta": { + "protocol_id": 570 }, - "minecraft:music.creative": { - "protocol_id": 618 + "minecraft:pink_shulker_box": { + "protocol_id": 554 }, - "minecraft:music.credits": { - "protocol_id": 619 + "minecraft:pink_stained_glass": { + "protocol_id": 232 }, - "minecraft:music_disc.11": { - "protocol_id": 620 + "minecraft:pink_stained_glass_pane": { + "protocol_id": 396 }, - "minecraft:music_disc.13": { - "protocol_id": 621 + "minecraft:pink_terracotta": { + "protocol_id": 380 }, - "minecraft:music_disc.blocks": { - "protocol_id": 622 + "minecraft:pink_tulip": { + "protocol_id": 142 }, - "minecraft:music_disc.cat": { - "protocol_id": 623 + "minecraft:pink_wall_banner": { + "protocol_id": 471 }, - "minecraft:music_disc.chirp": { - "protocol_id": 624 + "minecraft:pink_wool": { + "protocol_id": 123 }, - "minecraft:music_disc.far": { - "protocol_id": 625 + "minecraft:piston": { + "protocol_id": 115 }, - "minecraft:music_disc.mall": { - "protocol_id": 626 + "minecraft:piston_head": { + "protocol_id": 116 }, - "minecraft:music_disc.mellohi": { - "protocol_id": 627 + "minecraft:player_head": { + "protocol_id": 351 }, - "minecraft:music_disc.pigstep": { - "protocol_id": 628 + "minecraft:player_wall_head": { + "protocol_id": 352 }, - "minecraft:music_disc.stal": { - "protocol_id": 629 + "minecraft:podzol": { + "protocol_id": 11 }, - "minecraft:music_disc.strad": { - "protocol_id": 630 + "minecraft:pointed_dripstone": { + "protocol_id": 886 }, - "minecraft:music_disc.wait": { - "protocol_id": 631 + "minecraft:polished_andesite": { + "protocol_id": 7 }, - "minecraft:music_disc.ward": { - "protocol_id": 632 + "minecraft:polished_andesite_slab": { + "protocol_id": 690 }, - "minecraft:music_disc.otherside": { - "protocol_id": 633 + "minecraft:polished_andesite_stairs": { + "protocol_id": 677 }, - "minecraft:music.dragon": { - "protocol_id": 634 + "minecraft:polished_basalt": { + "protocol_id": 217 }, - "minecraft:music.end": { - "protocol_id": 635 + "minecraft:polished_blackstone": { + "protocol_id": 786 }, - "minecraft:music.game": { - "protocol_id": 636 + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 790 }, - "minecraft:music.menu": { - "protocol_id": 637 + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 791 }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 638 + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 792 }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 639 + "minecraft:polished_blackstone_bricks": { + "protocol_id": 787 }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 640 + "minecraft:polished_blackstone_button": { + "protocol_id": 797 }, - "minecraft:music.overworld.grove": { - "protocol_id": 641 + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 796 }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 642 + "minecraft:polished_blackstone_slab": { + "protocol_id": 795 }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 643 + "minecraft:polished_blackstone_stairs": { + "protocol_id": 794 }, - "minecraft:music.overworld.meadow": { - "protocol_id": 644 + "minecraft:polished_blackstone_wall": { + "protocol_id": 798 }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 645 + "minecraft:polished_deepslate": { + "protocol_id": 906 }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 646 + "minecraft:polished_deepslate_slab": { + "protocol_id": 908 }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 647 + "minecraft:polished_deepslate_stairs": { + "protocol_id": 907 }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 648 + "minecraft:polished_deepslate_wall": { + "protocol_id": 909 }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 649 + "minecraft:polished_diorite": { + "protocol_id": 5 }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 650 + "minecraft:polished_diorite_slab": { + "protocol_id": 682 }, - "minecraft:music.under_water": { - "protocol_id": 651 + "minecraft:polished_diorite_stairs": { + "protocol_id": 668 }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 652 + "minecraft:polished_granite": { + "protocol_id": 3 }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 653 + "minecraft:polished_granite_slab": { + "protocol_id": 679 }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 654 + "minecraft:polished_granite_stairs": { + "protocol_id": 665 }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 655 + "minecraft:poppy": { + "protocol_id": 135 }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 656 + "minecraft:potatoes": { + "protocol_id": 337 }, - "minecraft:block.nether_wart.break": { - "protocol_id": 657 + "minecraft:potted_acacia_sapling": { + "protocol_id": 315 }, - "minecraft:item.nether_wart.plant": { - "protocol_id": 658 + "minecraft:potted_allium": { + "protocol_id": 322 }, - "minecraft:block.stem.break": { - "protocol_id": 659 + "minecraft:potted_azalea_bush": { + "protocol_id": 926 }, - "minecraft:block.stem.step": { - "protocol_id": 660 + "minecraft:potted_azure_bluet": { + "protocol_id": 323 }, - "minecraft:block.stem.place": { + "minecraft:potted_bamboo": { "protocol_id": 661 }, - "minecraft:block.stem.hit": { - "protocol_id": 662 + "minecraft:potted_birch_sapling": { + "protocol_id": 313 }, - "minecraft:block.stem.fall": { - "protocol_id": 663 + "minecraft:potted_blue_orchid": { + "protocol_id": 321 }, - "minecraft:block.nylium.break": { - "protocol_id": 664 + "minecraft:potted_brown_mushroom": { + "protocol_id": 333 }, - "minecraft:block.nylium.step": { - "protocol_id": 665 + "minecraft:potted_cactus": { + "protocol_id": 335 }, - "minecraft:block.nylium.place": { - "protocol_id": 666 + "minecraft:potted_cornflower": { + "protocol_id": 329 }, - "minecraft:block.nylium.hit": { - "protocol_id": 667 + "minecraft:potted_crimson_fungus": { + "protocol_id": 777 }, - "minecraft:block.nylium.fall": { - "protocol_id": 668 + "minecraft:potted_crimson_roots": { + "protocol_id": 779 }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 669 + "minecraft:potted_dandelion": { + "protocol_id": 319 }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 670 + "minecraft:potted_dark_oak_sapling": { + "protocol_id": 316 }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 671 + "minecraft:potted_dead_bush": { + "protocol_id": 334 }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 672 + "minecraft:potted_fern": { + "protocol_id": 318 }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 673 + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 927 }, - "minecraft:block.fungus.break": { - "protocol_id": 674 + "minecraft:potted_jungle_sapling": { + "protocol_id": 314 }, - "minecraft:block.fungus.step": { - "protocol_id": 675 + "minecraft:potted_lily_of_the_valley": { + "protocol_id": 330 }, - "minecraft:block.fungus.place": { - "protocol_id": 676 + "minecraft:potted_mangrove_propagule": { + "protocol_id": 317 }, - "minecraft:block.fungus.hit": { - "protocol_id": 677 + "minecraft:potted_oak_sapling": { + "protocol_id": 311 }, - "minecraft:block.fungus.fall": { - "protocol_id": 678 + "minecraft:potted_orange_tulip": { + "protocol_id": 325 }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 679 + "minecraft:potted_oxeye_daisy": { + "protocol_id": 328 }, - "minecraft:block.weeping_vines.step": { - "protocol_id": 680 + "minecraft:potted_pink_tulip": { + "protocol_id": 327 }, - "minecraft:block.weeping_vines.place": { - "protocol_id": 681 + "minecraft:potted_poppy": { + "protocol_id": 320 }, - "minecraft:block.weeping_vines.hit": { - "protocol_id": 682 + "minecraft:potted_red_mushroom": { + "protocol_id": 332 }, - "minecraft:block.weeping_vines.fall": { - "protocol_id": 683 + "minecraft:potted_red_tulip": { + "protocol_id": 324 }, - "minecraft:block.wart_block.break": { - "protocol_id": 684 + "minecraft:potted_spruce_sapling": { + "protocol_id": 312 }, - "minecraft:block.wart_block.step": { - "protocol_id": 685 + "minecraft:potted_warped_fungus": { + "protocol_id": 778 }, - "minecraft:block.wart_block.place": { - "protocol_id": 686 + "minecraft:potted_warped_roots": { + "protocol_id": 780 }, - "minecraft:block.wart_block.hit": { - "protocol_id": 687 + "minecraft:potted_white_tulip": { + "protocol_id": 326 }, - "minecraft:block.wart_block.fall": { - "protocol_id": 688 + "minecraft:potted_wither_rose": { + "protocol_id": 331 }, - "minecraft:block.netherite_block.break": { - "protocol_id": 689 + "minecraft:powder_snow": { + "protocol_id": 845 }, - "minecraft:block.netherite_block.step": { - "protocol_id": 690 + "minecraft:powder_snow_cauldron": { + "protocol_id": 289 }, - "minecraft:block.netherite_block.place": { - "protocol_id": 691 + "minecraft:powered_rail": { + "protocol_id": 106 }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 692 + "minecraft:prismarine": { + "protocol_id": 413 }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 693 + "minecraft:prismarine_brick_slab": { + "protocol_id": 420 }, - "minecraft:block.netherrack.break": { - "protocol_id": 694 + "minecraft:prismarine_brick_stairs": { + "protocol_id": 417 }, - "minecraft:block.netherrack.step": { - "protocol_id": 695 + "minecraft:prismarine_bricks": { + "protocol_id": 414 }, - "minecraft:block.netherrack.place": { - "protocol_id": 696 + "minecraft:prismarine_slab": { + "protocol_id": 419 }, - "minecraft:block.netherrack.hit": { - "protocol_id": 697 + "minecraft:prismarine_stairs": { + "protocol_id": 416 }, - "minecraft:block.netherrack.fall": { - "protocol_id": 698 + "minecraft:prismarine_wall": { + "protocol_id": 693 }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 699 + "minecraft:pumpkin": { + "protocol_id": 212 }, - "minecraft:block.note_block.bass": { - "protocol_id": 700 + "minecraft:pumpkin_stem": { + "protocol_id": 270 }, - "minecraft:block.note_block.bell": { - "protocol_id": 701 + "minecraft:purple_banner": { + "protocol_id": 459 }, - "minecraft:block.note_block.chime": { - "protocol_id": 702 + "minecraft:purple_bed": { + "protocol_id": 100 }, - "minecraft:block.note_block.flute": { - "protocol_id": 703 + "minecraft:purple_candle": { + "protocol_id": 813 }, - "minecraft:block.note_block.guitar": { - "protocol_id": 704 + "minecraft:purple_candle_cake": { + "protocol_id": 830 }, - "minecraft:block.note_block.harp": { - "protocol_id": 705 + "minecraft:purple_carpet": { + "protocol_id": 434 }, - "minecraft:block.note_block.hat": { - "protocol_id": 706 + "minecraft:purple_concrete": { + "protocol_id": 590 }, - "minecraft:block.note_block.pling": { - "protocol_id": 707 + "minecraft:purple_concrete_powder": { + "protocol_id": 606 }, - "minecraft:block.note_block.snare": { - "protocol_id": 708 + "minecraft:purple_glazed_terracotta": { + "protocol_id": 574 }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 709 + "minecraft:purple_shulker_box": { + "protocol_id": 558 }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 710 + "minecraft:purple_stained_glass": { + "protocol_id": 236 }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 711 + "minecraft:purple_stained_glass_pane": { + "protocol_id": 400 }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 712 + "minecraft:purple_terracotta": { + "protocol_id": 384 }, - "minecraft:block.note_block.bit": { - "protocol_id": 713 + "minecraft:purple_wall_banner": { + "protocol_id": 475 }, - "minecraft:block.note_block.banjo": { - "protocol_id": 714 + "minecraft:purple_wool": { + "protocol_id": 127 }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 715 + "minecraft:purpur_block": { + "protocol_id": 531 }, - "minecraft:entity.ocelot.ambient": { - "protocol_id": 716 + "minecraft:purpur_pillar": { + "protocol_id": 532 }, - "minecraft:entity.ocelot.death": { - "protocol_id": 717 + "minecraft:purpur_slab": { + "protocol_id": 505 }, - "minecraft:entity.painting.break": { - "protocol_id": 718 + "minecraft:purpur_stairs": { + "protocol_id": 533 }, - "minecraft:entity.painting.place": { - "protocol_id": 719 + "minecraft:quartz_block": { + "protocol_id": 368 }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 720 + "minecraft:quartz_bricks": { + "protocol_id": 801 }, - "minecraft:entity.panda.sneeze": { - "protocol_id": 721 + "minecraft:quartz_pillar": { + "protocol_id": 370 }, - "minecraft:entity.panda.ambient": { - "protocol_id": 722 + "minecraft:quartz_slab": { + "protocol_id": 502 }, - "minecraft:entity.panda.death": { - "protocol_id": 723 + "minecraft:quartz_stairs": { + "protocol_id": 371 }, - "minecraft:entity.panda.eat": { - "protocol_id": 724 + "minecraft:rail": { + "protocol_id": 180 }, - "minecraft:entity.panda.step": { - "protocol_id": 725 + "minecraft:raw_copper_block": { + "protocol_id": 924 }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 726 + "minecraft:raw_gold_block": { + "protocol_id": 925 }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 727 + "minecraft:raw_iron_block": { + "protocol_id": 923 }, - "minecraft:entity.panda.worried_ambient": { - "protocol_id": 728 + "minecraft:red_banner": { + "protocol_id": 463 }, - "minecraft:entity.panda.hurt": { - "protocol_id": 729 + "minecraft:red_bed": { + "protocol_id": 104 }, - "minecraft:entity.panda.bite": { - "protocol_id": 730 + "minecraft:red_candle": { + "protocol_id": 817 }, - "minecraft:entity.parrot.ambient": { - "protocol_id": 731 + "minecraft:red_candle_cake": { + "protocol_id": 834 }, - "minecraft:entity.parrot.death": { - "protocol_id": 732 + "minecraft:red_carpet": { + "protocol_id": 438 }, - "minecraft:entity.parrot.eat": { - "protocol_id": 733 + "minecraft:red_concrete": { + "protocol_id": 594 }, - "minecraft:entity.parrot.fly": { - "protocol_id": 734 + "minecraft:red_concrete_powder": { + "protocol_id": 610 }, - "minecraft:entity.parrot.hurt": { - "protocol_id": 735 + "minecraft:red_glazed_terracotta": { + "protocol_id": 578 }, - "minecraft:entity.parrot.imitate.blaze": { - "protocol_id": 736 + "minecraft:red_mushroom": { + "protocol_id": 148 }, - "minecraft:entity.parrot.imitate.creeper": { - "protocol_id": 737 + "minecraft:red_mushroom_block": { + "protocol_id": 262 }, - "minecraft:entity.parrot.imitate.drowned": { - "protocol_id": 738 + "minecraft:red_nether_brick_slab": { + "protocol_id": 689 }, - "minecraft:entity.parrot.imitate.elder_guardian": { - "protocol_id": 739 + "minecraft:red_nether_brick_stairs": { + "protocol_id": 676 }, - "minecraft:entity.parrot.imitate.ender_dragon": { - "protocol_id": 740 + "minecraft:red_nether_brick_wall": { + "protocol_id": 701 }, - "minecraft:entity.parrot.imitate.endermite": { - "protocol_id": 741 + "minecraft:red_nether_bricks": { + "protocol_id": 543 }, - "minecraft:entity.parrot.imitate.evoker": { - "protocol_id": 742 + "minecraft:red_sand": { + "protocol_id": 31 }, - "minecraft:entity.parrot.imitate.ghast": { - "protocol_id": 743 + "minecraft:red_sandstone": { + "protocol_id": 481 }, - "minecraft:entity.parrot.imitate.guardian": { - "protocol_id": 744 + "minecraft:red_sandstone_slab": { + "protocol_id": 503 }, - "minecraft:entity.parrot.imitate.hoglin": { - "protocol_id": 745 + "minecraft:red_sandstone_stairs": { + "protocol_id": 484 }, - "minecraft:entity.parrot.imitate.husk": { - "protocol_id": 746 + "minecraft:red_sandstone_wall": { + "protocol_id": 694 }, - "minecraft:entity.parrot.imitate.illusioner": { - "protocol_id": 747 + "minecraft:red_shulker_box": { + "protocol_id": 562 }, - "minecraft:entity.parrot.imitate.magma_cube": { - "protocol_id": 748 + "minecraft:red_stained_glass": { + "protocol_id": 240 }, - "minecraft:entity.parrot.imitate.phantom": { - "protocol_id": 749 + "minecraft:red_stained_glass_pane": { + "protocol_id": 404 }, - "minecraft:entity.parrot.imitate.piglin": { - "protocol_id": 750 + "minecraft:red_terracotta": { + "protocol_id": 388 }, - "minecraft:entity.parrot.imitate.piglin_brute": { - "protocol_id": 751 + "minecraft:red_tulip": { + "protocol_id": 139 }, - "minecraft:entity.parrot.imitate.pillager": { - "protocol_id": 752 + "minecraft:red_wall_banner": { + "protocol_id": 479 }, - "minecraft:entity.parrot.imitate.ravager": { - "protocol_id": 753 + "minecraft:red_wool": { + "protocol_id": 131 }, - "minecraft:entity.parrot.imitate.shulker": { - "protocol_id": 754 + "minecraft:redstone_block": { + "protocol_id": 365 }, - "minecraft:entity.parrot.imitate.silverfish": { - "protocol_id": 755 + "minecraft:redstone_lamp": { + "protocol_id": 294 }, - "minecraft:entity.parrot.imitate.skeleton": { - "protocol_id": 756 + "minecraft:redstone_ore": { + "protocol_id": 199 }, - "minecraft:entity.parrot.imitate.slime": { - "protocol_id": 757 + "minecraft:redstone_torch": { + "protocol_id": 201 }, - "minecraft:entity.parrot.imitate.spider": { - "protocol_id": 758 + "minecraft:redstone_wall_torch": { + "protocol_id": 202 }, - "minecraft:entity.parrot.imitate.stray": { - "protocol_id": 759 + "minecraft:redstone_wire": { + "protocol_id": 163 }, - "minecraft:entity.parrot.imitate.vex": { - "protocol_id": 760 + "minecraft:reinforced_deepslate": { + "protocol_id": 932 }, - "minecraft:entity.parrot.imitate.vindicator": { - "protocol_id": 761 + "minecraft:repeater": { + "protocol_id": 225 }, - "minecraft:entity.parrot.imitate.witch": { - "protocol_id": 762 + "minecraft:repeating_command_block": { + "protocol_id": 538 }, - "minecraft:entity.parrot.imitate.wither": { - "protocol_id": 763 + "minecraft:respawn_anchor": { + "protocol_id": 776 }, - "minecraft:entity.parrot.imitate.wither_skeleton": { - "protocol_id": 764 + "minecraft:rooted_dirt": { + "protocol_id": 899 }, - "minecraft:entity.parrot.imitate.zoglin": { - "protocol_id": 765 + "minecraft:rose_bush": { + "protocol_id": 445 }, - "minecraft:entity.parrot.imitate.zombie": { - "protocol_id": 766 + "minecraft:sand": { + "protocol_id": 30 }, - "minecraft:entity.parrot.imitate.zombie_villager": { - "protocol_id": 767 + "minecraft:sandstone": { + "protocol_id": 86 }, - "minecraft:entity.parrot.step": { - "protocol_id": 768 + "minecraft:sandstone_slab": { + "protocol_id": 494 }, - "minecraft:entity.phantom.ambient": { - "protocol_id": 769 + "minecraft:sandstone_stairs": { + "protocol_id": 296 }, - "minecraft:entity.phantom.bite": { - "protocol_id": 770 + "minecraft:sandstone_wall": { + "protocol_id": 702 }, - "minecraft:entity.phantom.death": { - "protocol_id": 771 + "minecraft:scaffolding": { + "protocol_id": 705 }, - "minecraft:entity.phantom.flap": { - "protocol_id": 772 + "minecraft:sculk": { + "protocol_id": 847 }, - "minecraft:entity.phantom.hurt": { - "protocol_id": 773 + "minecraft:sculk_catalyst": { + "protocol_id": 849 }, - "minecraft:entity.phantom.swoop": { - "protocol_id": 774 + "minecraft:sculk_sensor": { + "protocol_id": 846 }, - "minecraft:entity.pig.ambient": { - "protocol_id": 775 + "minecraft:sculk_shrieker": { + "protocol_id": 850 }, - "minecraft:entity.pig.death": { - "protocol_id": 776 + "minecraft:sculk_vein": { + "protocol_id": 848 }, - "minecraft:entity.pig.hurt": { - "protocol_id": 777 + "minecraft:sea_lantern": { + "protocol_id": 422 }, - "minecraft:entity.pig.saddle": { - "protocol_id": 778 + "minecraft:sea_pickle": { + "protocol_id": 656 }, - "minecraft:entity.pig.step": { - "protocol_id": 779 + "minecraft:seagrass": { + "protocol_id": 113 }, - "minecraft:entity.piglin.admiring_item": { - "protocol_id": 780 + "minecraft:shroomlight": { + "protocol_id": 737 }, - "minecraft:entity.piglin.ambient": { - "protocol_id": 781 + "minecraft:shulker_box": { + "protocol_id": 547 }, - "minecraft:entity.piglin.angry": { - "protocol_id": 782 + "minecraft:skeleton_skull": { + "protocol_id": 345 }, - "minecraft:entity.piglin.celebrate": { - "protocol_id": 783 + "minecraft:skeleton_wall_skull": { + "protocol_id": 346 }, - "minecraft:entity.piglin.death": { - "protocol_id": 784 + "minecraft:slime_block": { + "protocol_id": 409 }, - "minecraft:entity.piglin.jealous": { - "protocol_id": 785 + "minecraft:small_amethyst_bud": { + "protocol_id": 841 }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 786 + "minecraft:small_dripleaf": { + "protocol_id": 897 }, - "minecraft:entity.piglin.retreat": { - "protocol_id": 787 + "minecraft:smithing_table": { + "protocol_id": 714 }, - "minecraft:entity.piglin.step": { - "protocol_id": 788 + "minecraft:smoker": { + "protocol_id": 708 }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 789 + "minecraft:smooth_basalt": { + "protocol_id": 922 }, - "minecraft:entity.piglin_brute.ambient": { - "protocol_id": 790 + "minecraft:smooth_quartz": { + "protocol_id": 508 }, - "minecraft:entity.piglin_brute.angry": { - "protocol_id": 791 + "minecraft:smooth_quartz_slab": { + "protocol_id": 686 }, - "minecraft:entity.piglin_brute.death": { - "protocol_id": 792 + "minecraft:smooth_quartz_stairs": { + "protocol_id": 673 }, - "minecraft:entity.piglin_brute.hurt": { - "protocol_id": 793 + "minecraft:smooth_red_sandstone": { + "protocol_id": 509 }, - "minecraft:entity.piglin_brute.step": { - "protocol_id": 794 + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 680 }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 795 + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 666 }, - "minecraft:entity.pillager.ambient": { - "protocol_id": 796 + "minecraft:smooth_sandstone": { + "protocol_id": 507 }, - "minecraft:entity.pillager.celebrate": { - "protocol_id": 797 + "minecraft:smooth_sandstone_slab": { + "protocol_id": 685 }, - "minecraft:entity.pillager.death": { - "protocol_id": 798 + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 672 }, - "minecraft:entity.pillager.hurt": { - "protocol_id": 799 + "minecraft:smooth_stone": { + "protocol_id": 506 }, - "minecraft:block.piston.contract": { - "protocol_id": 800 + "minecraft:smooth_stone_slab": { + "protocol_id": 493 }, - "minecraft:block.piston.extend": { - "protocol_id": 801 + "minecraft:snow": { + "protocol_id": 204 }, - "minecraft:entity.player.attack.crit": { - "protocol_id": 802 + "minecraft:snow_block": { + "protocol_id": 206 }, - "minecraft:entity.player.attack.knockback": { - "protocol_id": 803 + "minecraft:soul_campfire": { + "protocol_id": 720 }, - "minecraft:entity.player.attack.nodamage": { - "protocol_id": 804 + "minecraft:soul_fire": { + "protocol_id": 159 }, - "minecraft:entity.player.attack.strong": { - "protocol_id": 805 + "minecraft:soul_lantern": { + "protocol_id": 718 }, - "minecraft:entity.player.attack.sweep": { - "protocol_id": 806 + "minecraft:soul_sand": { + "protocol_id": 214 }, - "minecraft:entity.player.attack.weak": { - "protocol_id": 807 + "minecraft:soul_soil": { + "protocol_id": 215 }, - "minecraft:entity.player.big_fall": { - "protocol_id": 808 + "minecraft:soul_torch": { + "protocol_id": 218 }, - "minecraft:entity.player.breath": { - "protocol_id": 809 + "minecraft:soul_wall_torch": { + "protocol_id": 219 }, - "minecraft:entity.player.burp": { - "protocol_id": 810 + "minecraft:spawner": { + "protocol_id": 160 }, - "minecraft:entity.player.death": { - "protocol_id": 811 + "minecraft:sponge": { + "protocol_id": 79 }, - "minecraft:entity.player.hurt": { - "protocol_id": 812 + "minecraft:spore_blossom": { + "protocol_id": 890 }, - "minecraft:entity.player.hurt_drown": { - "protocol_id": 813 + "minecraft:spruce_button": { + "protocol_id": 339 }, - "minecraft:entity.player.hurt_freeze": { - "protocol_id": 814 + "minecraft:spruce_door": { + "protocol_id": 522 }, - "minecraft:entity.player.hurt_on_fire": { - "protocol_id": 815 + "minecraft:spruce_fence": { + "protocol_id": 516 }, - "minecraft:entity.player.hurt_sweet_berry_bush": { - "protocol_id": 816 + "minecraft:spruce_fence_gate": { + "protocol_id": 510 }, - "minecraft:entity.player.levelup": { - "protocol_id": 817 + "minecraft:spruce_leaves": { + "protocol_id": 71 }, - "minecraft:entity.player.small_fall": { - "protocol_id": 818 + "minecraft:spruce_log": { + "protocol_id": 41 }, - "minecraft:entity.player.splash": { - "protocol_id": 819 + "minecraft:spruce_planks": { + "protocol_id": 14 }, - "minecraft:entity.player.splash.high_speed": { - "protocol_id": 820 + "minecraft:spruce_pressure_plate": { + "protocol_id": 193 }, - "minecraft:entity.player.swim": { - "protocol_id": 821 + "minecraft:spruce_sapling": { + "protocol_id": 21 }, - "minecraft:entity.polar_bear.ambient": { - "protocol_id": 822 + "minecraft:spruce_sign": { + "protocol_id": 172 }, - "minecraft:entity.polar_bear.ambient_baby": { - "protocol_id": 823 + "minecraft:spruce_slab": { + "protocol_id": 486 }, - "minecraft:entity.polar_bear.death": { - "protocol_id": 824 + "minecraft:spruce_stairs": { + "protocol_id": 303 }, - "minecraft:entity.polar_bear.hurt": { - "protocol_id": 825 + "minecraft:spruce_trapdoor": { + "protocol_id": 243 }, - "minecraft:entity.polar_bear.step": { - "protocol_id": 826 + "minecraft:spruce_wall_sign": { + "protocol_id": 183 }, - "minecraft:entity.polar_bear.warning": { - "protocol_id": 827 + "minecraft:spruce_wood": { + "protocol_id": 57 }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 828 + "minecraft:sticky_piston": { + "protocol_id": 108 }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 829 + "minecraft:stone": { + "protocol_id": 1 }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 830 + "minecraft:stone_brick_slab": { + "protocol_id": 499 }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 831 + "minecraft:stone_brick_stairs": { + "protocol_id": 276 }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 832 + "minecraft:stone_brick_wall": { + "protocol_id": 697 }, - "minecraft:block.portal.ambient": { - "protocol_id": 833 + "minecraft:stone_bricks": { + "protocol_id": 249 }, - "minecraft:block.portal.travel": { - "protocol_id": 834 + "minecraft:stone_button": { + "protocol_id": 203 }, - "minecraft:block.portal.trigger": { - "protocol_id": 835 + "minecraft:stone_pressure_plate": { + "protocol_id": 190 }, - "minecraft:block.powder_snow.break": { - "protocol_id": 836 + "minecraft:stone_slab": { + "protocol_id": 492 }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 837 + "minecraft:stone_stairs": { + "protocol_id": 671 }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 838 + "minecraft:stonecutter": { + "protocol_id": 715 }, - "minecraft:block.powder_snow.place": { - "protocol_id": 839 + "minecraft:stripped_acacia_log": { + "protocol_id": 52 }, - "minecraft:block.powder_snow.step": { - "protocol_id": 840 + "minecraft:stripped_acacia_wood": { + "protocol_id": 67 }, - "minecraft:entity.puffer_fish.ambient": { - "protocol_id": 841 + "minecraft:stripped_birch_log": { + "protocol_id": 50 }, - "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 842 + "minecraft:stripped_birch_wood": { + "protocol_id": 65 }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 843 + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 734 }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 844 + "minecraft:stripped_crimson_stem": { + "protocol_id": 732 }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 845 + "minecraft:stripped_dark_oak_log": { + "protocol_id": 53 }, - "minecraft:entity.puffer_fish.hurt": { - "protocol_id": 846 + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 68 }, - "minecraft:entity.puffer_fish.sting": { - "protocol_id": 847 + "minecraft:stripped_jungle_log": { + "protocol_id": 51 }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 848 + "minecraft:stripped_jungle_wood": { + "protocol_id": 66 }, - "minecraft:entity.rabbit.ambient": { - "protocol_id": 849 + "minecraft:stripped_mangrove_log": { + "protocol_id": 55 }, - "minecraft:entity.rabbit.attack": { - "protocol_id": 850 + "minecraft:stripped_mangrove_wood": { + "protocol_id": 69 }, - "minecraft:entity.rabbit.death": { - "protocol_id": 851 + "minecraft:stripped_oak_log": { + "protocol_id": 54 }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 852 + "minecraft:stripped_oak_wood": { + "protocol_id": 63 }, - "minecraft:entity.rabbit.jump": { - "protocol_id": 853 + "minecraft:stripped_spruce_log": { + "protocol_id": 49 }, - "minecraft:event.raid.horn": { - "protocol_id": 854 + "minecraft:stripped_spruce_wood": { + "protocol_id": 64 }, - "minecraft:entity.ravager.ambient": { - "protocol_id": 855 + "minecraft:stripped_warped_hyphae": { + "protocol_id": 725 }, - "minecraft:entity.ravager.attack": { - "protocol_id": 856 + "minecraft:stripped_warped_stem": { + "protocol_id": 723 }, - "minecraft:entity.ravager.celebrate": { - "protocol_id": 857 + "minecraft:structure_block": { + "protocol_id": 765 }, - "minecraft:entity.ravager.death": { - "protocol_id": 858 + "minecraft:structure_void": { + "protocol_id": 545 }, - "minecraft:entity.ravager.hurt": { - "protocol_id": 859 + "minecraft:sugar_cane": { + "protocol_id": 209 }, - "minecraft:entity.ravager.step": { - "protocol_id": 860 + "minecraft:sunflower": { + "protocol_id": 443 }, - "minecraft:entity.ravager.stunned": { - "protocol_id": 861 + "minecraft:sweet_berry_bush": { + "protocol_id": 721 }, - "minecraft:entity.ravager.roar": { - "protocol_id": 862 + "minecraft:tall_grass": { + "protocol_id": 447 }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 863 + "minecraft:tall_seagrass": { + "protocol_id": 114 }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 864 + "minecraft:target": { + "protocol_id": 768 }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 865 + "minecraft:terracotta": { + "protocol_id": 440 }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 866 + "minecraft:tinted_glass": { + "protocol_id": 844 }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 867 + "minecraft:tnt": { + "protocol_id": 152 }, - "minecraft:block.nether_ore.break": { - "protocol_id": 868 + "minecraft:torch": { + "protocol_id": 156 }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 869 + "minecraft:trapped_chest": { + "protocol_id": 360 }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 870 + "minecraft:tripwire": { + "protocol_id": 301 }, - "minecraft:block.nether_ore.place": { - "protocol_id": 871 + "minecraft:tripwire_hook": { + "protocol_id": 300 }, - "minecraft:block.nether_ore.step": { - "protocol_id": 872 + "minecraft:tube_coral": { + "protocol_id": 631 }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 873 + "minecraft:tube_coral_block": { + "protocol_id": 621 }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 874 + "minecraft:tube_coral_fan": { + "protocol_id": 641 }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 875 + "minecraft:tube_coral_wall_fan": { + "protocol_id": 651 }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 876 + "minecraft:tuff": { + "protocol_id": 842 }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 877 + "minecraft:turtle_egg": { + "protocol_id": 615 }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 878 + "minecraft:twisting_vines": { + "protocol_id": 740 }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 879 + "minecraft:twisting_vines_plant": { + "protocol_id": 741 }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 880 + "minecraft:verdant_froglight": { + "protocol_id": 929 }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 881 + "minecraft:vine": { + "protocol_id": 272 }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 882 + "minecraft:void_air": { + "protocol_id": 662 }, - "minecraft:entity.salmon.ambient": { - "protocol_id": 883 + "minecraft:wall_torch": { + "protocol_id": 157 }, - "minecraft:entity.salmon.death": { - "protocol_id": 884 + "minecraft:warped_button": { + "protocol_id": 758 }, - "minecraft:entity.salmon.flop": { - "protocol_id": 885 + "minecraft:warped_door": { + "protocol_id": 760 }, - "minecraft:entity.salmon.hurt": { - "protocol_id": 886 + "minecraft:warped_fence": { + "protocol_id": 750 }, - "minecraft:block.sand.break": { - "protocol_id": 887 + "minecraft:warped_fence_gate": { + "protocol_id": 754 }, - "minecraft:block.sand.fall": { - "protocol_id": 888 + "minecraft:warped_fungus": { + "protocol_id": 727 }, - "minecraft:block.sand.hit": { - "protocol_id": 889 + "minecraft:warped_hyphae": { + "protocol_id": 724 }, - "minecraft:block.sand.place": { - "protocol_id": 890 + "minecraft:warped_nylium": { + "protocol_id": 726 }, - "minecraft:block.sand.step": { - "protocol_id": 891 + "minecraft:warped_planks": { + "protocol_id": 744 }, - "minecraft:block.scaffolding.break": { - "protocol_id": 892 + "minecraft:warped_pressure_plate": { + "protocol_id": 748 }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 893 + "minecraft:warped_roots": { + "protocol_id": 729 }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 894 + "minecraft:warped_sign": { + "protocol_id": 762 }, - "minecraft:block.scaffolding.place": { - "protocol_id": 895 + "minecraft:warped_slab": { + "protocol_id": 746 }, - "minecraft:block.scaffolding.step": { - "protocol_id": 896 + "minecraft:warped_stairs": { + "protocol_id": 756 }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 897 + "minecraft:warped_stem": { + "protocol_id": 722 }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 898 + "minecraft:warped_trapdoor": { + "protocol_id": 752 }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 899 + "minecraft:warped_wall_sign": { + "protocol_id": 764 }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 900 + "minecraft:warped_wart_block": { + "protocol_id": 728 }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 901 + "minecraft:water": { + "protocol_id": 28 }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 902 + "minecraft:water_cauldron": { + "protocol_id": 287 }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 903 + "minecraft:waxed_copper_block": { + "protocol_id": 869 }, - "minecraft:entity.sheep.ambient": { - "protocol_id": 904 + "minecraft:waxed_cut_copper": { + "protocol_id": 876 }, - "minecraft:entity.sheep.death": { - "protocol_id": 905 + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 884 }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 906 + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 880 }, - "minecraft:entity.sheep.shear": { - "protocol_id": 907 + "minecraft:waxed_exposed_copper": { + "protocol_id": 871 }, - "minecraft:entity.sheep.step": { - "protocol_id": 908 + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 875 }, - "minecraft:item.shield.block": { - "protocol_id": 909 + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 883 }, - "minecraft:item.shield.break": { - "protocol_id": 910 + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 879 }, - "minecraft:block.shroomlight.break": { - "protocol_id": 911 + "minecraft:waxed_oxidized_copper": { + "protocol_id": 872 }, - "minecraft:block.shroomlight.step": { - "protocol_id": 912 + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 873 }, - "minecraft:block.shroomlight.place": { - "protocol_id": 913 + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 881 }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 914 + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 877 }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 915 + "minecraft:waxed_weathered_copper": { + "protocol_id": 870 }, - "minecraft:item.shovel.flatten": { - "protocol_id": 916 + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 874 }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 917 + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 882 }, - "minecraft:block.shulker_box.close": { - "protocol_id": 918 + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 878 }, - "minecraft:block.shulker_box.open": { - "protocol_id": 919 + "minecraft:weathered_copper": { + "protocol_id": 852 }, - "minecraft:entity.shulker_bullet.hit": { - "protocol_id": 920 + "minecraft:weathered_cut_copper": { + "protocol_id": 858 }, - "minecraft:entity.shulker_bullet.hurt": { - "protocol_id": 921 + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 866 }, - "minecraft:entity.shulker.close": { - "protocol_id": 922 + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 862 }, - "minecraft:entity.shulker.death": { - "protocol_id": 923 + "minecraft:weeping_vines": { + "protocol_id": 738 }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 924 + "minecraft:weeping_vines_plant": { + "protocol_id": 739 }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 925 + "minecraft:wet_sponge": { + "protocol_id": 80 }, - "minecraft:entity.shulker.open": { - "protocol_id": 926 + "minecraft:wheat": { + "protocol_id": 168 }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 927 + "minecraft:white_banner": { + "protocol_id": 449 }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 928 + "minecraft:white_bed": { + "protocol_id": 90 }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 929 + "minecraft:white_candle": { + "protocol_id": 803 }, - "minecraft:entity.silverfish.death": { - "protocol_id": 930 + "minecraft:white_candle_cake": { + "protocol_id": 820 }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 931 + "minecraft:white_carpet": { + "protocol_id": 424 }, - "minecraft:entity.silverfish.step": { - "protocol_id": 932 + "minecraft:white_concrete": { + "protocol_id": 580 }, - "minecraft:entity.skeleton.ambient": { - "protocol_id": 933 + "minecraft:white_concrete_powder": { + "protocol_id": 596 }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 934 + "minecraft:white_glazed_terracotta": { + "protocol_id": 564 }, - "minecraft:entity.skeleton.death": { - "protocol_id": 935 + "minecraft:white_shulker_box": { + "protocol_id": 548 }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 936 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 937 + "minecraft:white_stained_glass": { + "protocol_id": 226 }, - "minecraft:entity.skeleton_horse.hurt": { - "protocol_id": 938 + "minecraft:white_stained_glass_pane": { + "protocol_id": 390 }, - "minecraft:entity.skeleton_horse.swim": { - "protocol_id": 939 + "minecraft:white_terracotta": { + "protocol_id": 374 }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 940 + "minecraft:white_tulip": { + "protocol_id": 141 }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 941 + "minecraft:white_wall_banner": { + "protocol_id": 465 }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 942 + "minecraft:white_wool": { + "protocol_id": 117 }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 943 + "minecraft:wither_rose": { + "protocol_id": 145 }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 944 + "minecraft:wither_skeleton_skull": { + "protocol_id": 347 }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 945 + "minecraft:wither_skeleton_wall_skull": { + "protocol_id": 348 }, - "minecraft:entity.skeleton.step": { - "protocol_id": 946 + "minecraft:yellow_banner": { + "protocol_id": 453 }, - "minecraft:entity.slime.attack": { - "protocol_id": 947 + "minecraft:yellow_bed": { + "protocol_id": 94 }, - "minecraft:entity.slime.death": { - "protocol_id": 948 + "minecraft:yellow_candle": { + "protocol_id": 807 }, - "minecraft:entity.slime.hurt": { - "protocol_id": 949 + "minecraft:yellow_candle_cake": { + "protocol_id": 824 }, - "minecraft:entity.slime.jump": { - "protocol_id": 950 + "minecraft:yellow_carpet": { + "protocol_id": 428 }, - "minecraft:entity.slime.squish": { - "protocol_id": 951 + "minecraft:yellow_concrete": { + "protocol_id": 584 }, - "minecraft:block.slime_block.break": { - "protocol_id": 952 + "minecraft:yellow_concrete_powder": { + "protocol_id": 600 }, - "minecraft:block.slime_block.fall": { - "protocol_id": 953 + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 568 }, - "minecraft:block.slime_block.hit": { - "protocol_id": 954 + "minecraft:yellow_shulker_box": { + "protocol_id": 552 }, - "minecraft:block.slime_block.place": { - "protocol_id": 955 + "minecraft:yellow_stained_glass": { + "protocol_id": 230 }, - "minecraft:block.slime_block.step": { - "protocol_id": 956 + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 394 }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 957 + "minecraft:yellow_terracotta": { + "protocol_id": 378 }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 958 + "minecraft:yellow_wall_banner": { + "protocol_id": 469 }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 959 + "minecraft:yellow_wool": { + "protocol_id": 121 }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 960 + "minecraft:zombie_head": { + "protocol_id": 349 }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 961 + "minecraft:zombie_wall_head": { + "protocol_id": 350 + } + }, + "protocol_id": 4 + }, + "minecraft:block_entity_type": { + "entries": { + "minecraft:banner": { + "protocol_id": 18 }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 962 + "minecraft:barrel": { + "protocol_id": 25 }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 963 + "minecraft:beacon": { + "protocol_id": 13 }, - "minecraft:block.soul_sand.break": { - "protocol_id": 964 + "minecraft:bed": { + "protocol_id": 23 }, - "minecraft:block.soul_sand.step": { - "protocol_id": 965 + "minecraft:beehive": { + "protocol_id": 32 }, - "minecraft:block.soul_sand.place": { - "protocol_id": 966 + "minecraft:bell": { + "protocol_id": 29 }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 967 + "minecraft:blast_furnace": { + "protocol_id": 27 }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 968 + "minecraft:brewing_stand": { + "protocol_id": 10 }, - "minecraft:block.soul_soil.break": { - "protocol_id": 969 + "minecraft:campfire": { + "protocol_id": 31 }, - "minecraft:block.soul_soil.step": { - "protocol_id": 970 + "minecraft:chest": { + "protocol_id": 1 }, - "minecraft:block.soul_soil.place": { - "protocol_id": 971 + "minecraft:command_block": { + "protocol_id": 21 }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 972 + "minecraft:comparator": { + "protocol_id": 17 }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 973 + "minecraft:conduit": { + "protocol_id": 24 }, - "minecraft:particle.soul_escape": { - "protocol_id": 974 + "minecraft:daylight_detector": { + "protocol_id": 15 }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 975 + "minecraft:dispenser": { + "protocol_id": 5 }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 976 + "minecraft:dropper": { + "protocol_id": 6 }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 977 + "minecraft:enchanting_table": { + "protocol_id": 11 }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 978 + "minecraft:end_gateway": { + "protocol_id": 20 }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 979 + "minecraft:end_portal": { + "protocol_id": 12 }, - "minecraft:entity.strider.ambient": { - "protocol_id": 980 + "minecraft:ender_chest": { + "protocol_id": 3 }, - "minecraft:entity.strider.happy": { - "protocol_id": 981 + "minecraft:furnace": { + "protocol_id": 0 }, - "minecraft:entity.strider.retreat": { - "protocol_id": 982 + "minecraft:hopper": { + "protocol_id": 16 }, - "minecraft:entity.strider.death": { - "protocol_id": 983 + "minecraft:jigsaw": { + "protocol_id": 30 }, - "minecraft:entity.strider.hurt": { - "protocol_id": 984 + "minecraft:jukebox": { + "protocol_id": 4 }, - "minecraft:entity.strider.step": { - "protocol_id": 985 + "minecraft:lectern": { + "protocol_id": 28 }, - "minecraft:entity.strider.step_lava": { - "protocol_id": 986 + "minecraft:mob_spawner": { + "protocol_id": 8 }, - "minecraft:entity.strider.eat": { - "protocol_id": 987 + "minecraft:piston": { + "protocol_id": 9 }, - "minecraft:entity.strider.saddle": { - "protocol_id": 988 + "minecraft:sculk_catalyst": { + "protocol_id": 34 }, - "minecraft:entity.slime.death_small": { - "protocol_id": 989 + "minecraft:sculk_sensor": { + "protocol_id": 33 }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 990 + "minecraft:sculk_shrieker": { + "protocol_id": 35 }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 991 + "minecraft:shulker_box": { + "protocol_id": 22 }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 992 + "minecraft:sign": { + "protocol_id": 7 }, - "minecraft:block.smithing_table.use": { - "protocol_id": 993 + "minecraft:skull": { + "protocol_id": 14 }, - "minecraft:block.smoker.smoke": { - "protocol_id": 994 + "minecraft:smoker": { + "protocol_id": 26 }, - "minecraft:entity.snowball.throw": { - "protocol_id": 995 + "minecraft:structure_block": { + "protocol_id": 19 }, - "minecraft:block.snow.break": { - "protocol_id": 996 + "minecraft:trapped_chest": { + "protocol_id": 2 + } + }, + "protocol_id": 10 + }, + "minecraft:block_predicate_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 9 }, - "minecraft:block.snow.fall": { - "protocol_id": 997 + "minecraft:any_of": { + "protocol_id": 8 }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 998 + "minecraft:has_sturdy_face": { + "protocol_id": 3 }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 999 + "minecraft:inside_world_bounds": { + "protocol_id": 7 }, - "minecraft:entity.snow_golem.hurt": { - "protocol_id": 1000 + "minecraft:matching_block_tag": { + "protocol_id": 1 }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1001 + "minecraft:matching_blocks": { + "protocol_id": 0 }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1002 + "minecraft:matching_fluids": { + "protocol_id": 2 }, - "minecraft:block.snow.hit": { - "protocol_id": 1003 + "minecraft:not": { + "protocol_id": 10 }, - "minecraft:block.snow.place": { - "protocol_id": 1004 + "minecraft:replaceable": { + "protocol_id": 5 }, - "minecraft:block.snow.step": { - "protocol_id": 1005 + "minecraft:solid": { + "protocol_id": 4 }, - "minecraft:entity.spider.ambient": { - "protocol_id": 1006 + "minecraft:true": { + "protocol_id": 11 }, - "minecraft:entity.spider.death": { - "protocol_id": 1007 + "minecraft:would_survive": { + "protocol_id": 6 + } + }, + "protocol_id": 39 + }, + "minecraft:cat_variant": { + "entries": { + "minecraft:all_black": { + "protocol_id": 10 }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1008 + "minecraft:black": { + "protocol_id": 1 }, - "minecraft:entity.spider.step": { - "protocol_id": 1009 + "minecraft:british_shorthair": { + "protocol_id": 4 }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1010 + "minecraft:calico": { + "protocol_id": 5 }, - "minecraft:entity.splash_potion.throw": { - "protocol_id": 1011 + "minecraft:jellie": { + "protocol_id": 9 }, - "minecraft:item.spyglass.use": { - "protocol_id": 1012 + "minecraft:persian": { + "protocol_id": 6 }, - "minecraft:item.spyglass.stop_using": { - "protocol_id": 1013 + "minecraft:ragdoll": { + "protocol_id": 7 }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1014 + "minecraft:red": { + "protocol_id": 2 }, - "minecraft:entity.squid.death": { - "protocol_id": 1015 + "minecraft:siamese": { + "protocol_id": 3 }, - "minecraft:entity.squid.hurt": { - "protocol_id": 1016 + "minecraft:tabby": { + "protocol_id": 0 }, - "minecraft:entity.squid.squirt": { - "protocol_id": 1017 + "minecraft:white": { + "protocol_id": 8 + } + }, + "protocol_id": 59 + }, + "minecraft:chunk_status": { + "default": "minecraft:empty", + "entries": { + "minecraft:biomes": { + "protocol_id": 3 }, - "minecraft:block.stone.break": { - "protocol_id": 1018 + "minecraft:carvers": { + "protocol_id": 6 }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1019 + "minecraft:empty": { + "protocol_id": 0 }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1020 + "minecraft:features": { + "protocol_id": 8 }, - "minecraft:block.stone.fall": { - "protocol_id": 1021 + "minecraft:full": { + "protocol_id": 12 }, - "minecraft:block.stone.hit": { - "protocol_id": 1022 + "minecraft:heightmaps": { + "protocol_id": 11 }, - "minecraft:block.stone.place": { - "protocol_id": 1023 + "minecraft:light": { + "protocol_id": 9 }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1024 + "minecraft:liquid_carvers": { + "protocol_id": 7 }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1025 + "minecraft:noise": { + "protocol_id": 4 }, - "minecraft:block.stone.step": { - "protocol_id": 1026 + "minecraft:spawn": { + "protocol_id": 10 }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1027 + "minecraft:structure_references": { + "protocol_id": 2 }, - "minecraft:entity.stray.death": { - "protocol_id": 1028 + "minecraft:structure_starts": { + "protocol_id": 1 }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1029 + "minecraft:surface": { + "protocol_id": 5 + } + }, + "protocol_id": 13 + }, + "minecraft:command_argument_type": { + "entries": { + "brigadier:bool": { + "protocol_id": 0 }, - "minecraft:entity.stray.step": { - "protocol_id": 1030 + "brigadier:double": { + "protocol_id": 2 }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1031 + "brigadier:float": { + "protocol_id": 1 }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1032 + "brigadier:integer": { + "protocol_id": 3 }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1033 + "brigadier:long": { + "protocol_id": 4 }, - "minecraft:enchant.thorns.hit": { - "protocol_id": 1034 + "brigadier:string": { + "protocol_id": 5 }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1035 + "minecraft:angle": { + "protocol_id": 26 }, - "minecraft:item.totem.use": { - "protocol_id": 1036 + "minecraft:block_pos": { + "protocol_id": 8 }, - "minecraft:item.trident.hit": { - "protocol_id": 1037 + "minecraft:block_predicate": { + "protocol_id": 13 }, - "minecraft:item.trident.hit_ground": { - "protocol_id": 1038 + "minecraft:block_state": { + "protocol_id": 12 }, - "minecraft:item.trident.return": { - "protocol_id": 1039 + "minecraft:color": { + "protocol_id": 16 }, - "minecraft:item.trident.riptide_1": { - "protocol_id": 1040 + "minecraft:column_pos": { + "protocol_id": 9 }, - "minecraft:item.trident.riptide_2": { - "protocol_id": 1041 + "minecraft:component": { + "protocol_id": 17 }, - "minecraft:item.trident.riptide_3": { - "protocol_id": 1042 + "minecraft:dimension": { + "protocol_id": 41 }, - "minecraft:item.trident.throw": { - "protocol_id": 1043 + "minecraft:entity": { + "protocol_id": 6 }, - "minecraft:item.trident.thunder": { - "protocol_id": 1044 + "minecraft:entity_anchor": { + "protocol_id": 36 }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1045 + "minecraft:entity_summon": { + "protocol_id": 40 }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1046 + "minecraft:float_range": { + "protocol_id": 38 }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1047 + "minecraft:function": { + "protocol_id": 35 }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1048 + "minecraft:game_profile": { + "protocol_id": 7 }, - "minecraft:entity.tropical_fish.ambient": { - "protocol_id": 1049 + "minecraft:int_range": { + "protocol_id": 37 }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1050 + "minecraft:item_enchantment": { + "protocol_id": 39 }, - "minecraft:entity.tropical_fish.flop": { - "protocol_id": 1051 + "minecraft:item_predicate": { + "protocol_id": 15 }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1052 + "minecraft:item_slot": { + "protocol_id": 32 }, - "minecraft:block.tuff.break": { - "protocol_id": 1053 + "minecraft:item_stack": { + "protocol_id": 14 }, - "minecraft:block.tuff.step": { - "protocol_id": 1054 + "minecraft:message": { + "protocol_id": 18 }, - "minecraft:block.tuff.place": { - "protocol_id": 1055 + "minecraft:mob_effect": { + "protocol_id": 34 }, - "minecraft:block.tuff.hit": { - "protocol_id": 1056 + "minecraft:nbt_compound_tag": { + "protocol_id": 19 }, - "minecraft:block.tuff.fall": { - "protocol_id": 1057 + "minecraft:nbt_path": { + "protocol_id": 21 }, - "minecraft:entity.turtle.ambient_land": { - "protocol_id": 1058 + "minecraft:nbt_tag": { + "protocol_id": 20 }, - "minecraft:entity.turtle.death": { - "protocol_id": 1059 + "minecraft:objective": { + "protocol_id": 22 }, - "minecraft:entity.turtle.death_baby": { - "protocol_id": 1060 + "minecraft:objective_criteria": { + "protocol_id": 23 }, - "minecraft:entity.turtle.egg_break": { - "protocol_id": 1061 + "minecraft:operation": { + "protocol_id": 24 }, - "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1062 + "minecraft:particle": { + "protocol_id": 25 }, - "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1063 + "minecraft:resource": { + "protocol_id": 44 }, - "minecraft:entity.turtle.hurt": { - "protocol_id": 1064 + "minecraft:resource_location": { + "protocol_id": 33 }, - "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1065 + "minecraft:resource_or_tag": { + "protocol_id": 43 }, - "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1066 + "minecraft:rotation": { + "protocol_id": 27 }, - "minecraft:entity.turtle.shamble": { - "protocol_id": 1067 + "minecraft:score_holder": { + "protocol_id": 29 }, - "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1068 + "minecraft:scoreboard_slot": { + "protocol_id": 28 }, - "minecraft:entity.turtle.swim": { - "protocol_id": 1069 + "minecraft:swizzle": { + "protocol_id": 30 }, - "minecraft:ui.button.click": { - "protocol_id": 1070 - }, - "minecraft:ui.loom.select_pattern": { - "protocol_id": 1071 + "minecraft:team": { + "protocol_id": 31 }, - "minecraft:ui.loom.take_result": { - "protocol_id": 1072 + "minecraft:template_mirror": { + "protocol_id": 45 }, - "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1073 + "minecraft:template_rotation": { + "protocol_id": 46 }, - "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1074 + "minecraft:time": { + "protocol_id": 42 }, - "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1075 + "minecraft:uuid": { + "protocol_id": 47 }, - "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1076 + "minecraft:vec2": { + "protocol_id": 11 }, - "minecraft:ui.toast.in": { - "protocol_id": 1077 + "minecraft:vec3": { + "protocol_id": 10 + } + }, + "protocol_id": 21 + }, + "minecraft:custom_stat": { + "entries": { + "minecraft:animals_bred": { + "protocol_id": 32 }, - "minecraft:ui.toast.out": { - "protocol_id": 1078 + "minecraft:aviate_one_cm": { + "protocol_id": 18 }, - "minecraft:entity.vex.ambient": { - "protocol_id": 1079 + "minecraft:bell_ring": { + "protocol_id": 68 }, - "minecraft:entity.vex.charge": { - "protocol_id": 1080 + "minecraft:boat_one_cm": { + "protocol_id": 15 }, - "minecraft:entity.vex.death": { - "protocol_id": 1081 + "minecraft:clean_armor": { + "protocol_id": 40 }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1082 + "minecraft:clean_banner": { + "protocol_id": 41 }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1083 + "minecraft:clean_shulker_box": { + "protocol_id": 42 }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1084 + "minecraft:climb_one_cm": { + "protocol_id": 11 }, - "minecraft:entity.villager.death": { - "protocol_id": 1085 + "minecraft:crouch_one_cm": { + "protocol_id": 7 }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1086 + "minecraft:damage_absorbed": { + "protocol_id": 28 }, - "minecraft:entity.villager.no": { - "protocol_id": 1087 + "minecraft:damage_blocked_by_shield": { + "protocol_id": 27 }, - "minecraft:entity.villager.trade": { - "protocol_id": 1088 + "minecraft:damage_dealt": { + "protocol_id": 23 }, - "minecraft:entity.villager.yes": { - "protocol_id": 1089 + "minecraft:damage_dealt_absorbed": { + "protocol_id": 24 }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1090 + "minecraft:damage_dealt_resisted": { + "protocol_id": 25 }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1091 + "minecraft:damage_resisted": { + "protocol_id": 29 }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1092 + "minecraft:damage_taken": { + "protocol_id": 26 }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1093 + "minecraft:deaths": { + "protocol_id": 30 }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1094 + "minecraft:drop": { + "protocol_id": 22 }, - "minecraft:entity.villager.work_fisherman": { - "protocol_id": 1095 + "minecraft:eat_cake_slice": { + "protocol_id": 37 }, - "minecraft:entity.villager.work_fletcher": { - "protocol_id": 1096 + "minecraft:enchant_item": { + "protocol_id": 53 }, - "minecraft:entity.villager.work_leatherworker": { - "protocol_id": 1097 + "minecraft:fall_one_cm": { + "protocol_id": 10 }, - "minecraft:entity.villager.work_librarian": { - "protocol_id": 1098 + "minecraft:fill_cauldron": { + "protocol_id": 38 }, - "minecraft:entity.villager.work_mason": { - "protocol_id": 1099 + "minecraft:fish_caught": { + "protocol_id": 34 }, - "minecraft:entity.villager.work_shepherd": { - "protocol_id": 1100 + "minecraft:fly_one_cm": { + "protocol_id": 12 }, - "minecraft:entity.villager.work_toolsmith": { - "protocol_id": 1101 + "minecraft:horse_one_cm": { + "protocol_id": 17 }, - "minecraft:entity.villager.work_weaponsmith": { - "protocol_id": 1102 + "minecraft:inspect_dispenser": { + "protocol_id": 47 }, - "minecraft:entity.vindicator.ambient": { - "protocol_id": 1103 + "minecraft:inspect_dropper": { + "protocol_id": 45 }, - "minecraft:entity.vindicator.celebrate": { - "protocol_id": 1104 + "minecraft:inspect_hopper": { + "protocol_id": 46 }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1105 + "minecraft:interact_with_anvil": { + "protocol_id": 71 }, - "minecraft:entity.vindicator.hurt": { - "protocol_id": 1106 + "minecraft:interact_with_beacon": { + "protocol_id": 44 }, - "minecraft:block.vine.break": { - "protocol_id": 1107 + "minecraft:interact_with_blast_furnace": { + "protocol_id": 61 }, - "minecraft:block.vine.fall": { - "protocol_id": 1108 + "minecraft:interact_with_brewingstand": { + "protocol_id": 43 }, - "minecraft:block.vine.hit": { - "protocol_id": 1109 + "minecraft:interact_with_campfire": { + "protocol_id": 64 }, - "minecraft:block.vine.place": { - "protocol_id": 1110 + "minecraft:interact_with_cartography_table": { + "protocol_id": 65 }, - "minecraft:block.vine.step": { - "protocol_id": 1111 + "minecraft:interact_with_crafting_table": { + "protocol_id": 56 }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1112 + "minecraft:interact_with_furnace": { + "protocol_id": 55 }, - "minecraft:entity.wandering_trader.ambient": { - "protocol_id": 1113 + "minecraft:interact_with_grindstone": { + "protocol_id": 72 }, - "minecraft:entity.wandering_trader.death": { - "protocol_id": 1114 + "minecraft:interact_with_lectern": { + "protocol_id": 63 }, - "minecraft:entity.wandering_trader.disappeared": { - "protocol_id": 1115 + "minecraft:interact_with_loom": { + "protocol_id": 66 }, - "minecraft:entity.wandering_trader.drink_milk": { - "protocol_id": 1116 + "minecraft:interact_with_smithing_table": { + "protocol_id": 74 }, - "minecraft:entity.wandering_trader.drink_potion": { - "protocol_id": 1117 + "minecraft:interact_with_smoker": { + "protocol_id": 62 }, - "minecraft:entity.wandering_trader.hurt": { - "protocol_id": 1118 + "minecraft:interact_with_stonecutter": { + "protocol_id": 67 }, - "minecraft:entity.wandering_trader.no": { - "protocol_id": 1119 + "minecraft:jump": { + "protocol_id": 21 }, - "minecraft:entity.wandering_trader.reappeared": { - "protocol_id": 1120 + "minecraft:leave_game": { + "protocol_id": 0 }, - "minecraft:entity.wandering_trader.trade": { - "protocol_id": 1121 + "minecraft:minecart_one_cm": { + "protocol_id": 14 }, - "minecraft:entity.wandering_trader.yes": { - "protocol_id": 1122 + "minecraft:mob_kills": { + "protocol_id": 31 }, - "minecraft:block.water.ambient": { - "protocol_id": 1123 + "minecraft:open_barrel": { + "protocol_id": 60 }, - "minecraft:weather.rain": { - "protocol_id": 1124 + "minecraft:open_chest": { + "protocol_id": 57 }, - "minecraft:weather.rain.above": { - "protocol_id": 1125 + "minecraft:open_enderchest": { + "protocol_id": 52 }, - "minecraft:block.wet_grass.break": { - "protocol_id": 1126 + "minecraft:open_shulker_box": { + "protocol_id": 59 }, - "minecraft:block.wet_grass.fall": { - "protocol_id": 1127 + "minecraft:pig_one_cm": { + "protocol_id": 16 }, - "minecraft:block.wet_grass.hit": { - "protocol_id": 1128 + "minecraft:play_noteblock": { + "protocol_id": 48 }, - "minecraft:block.wet_grass.place": { - "protocol_id": 1129 + "minecraft:play_record": { + "protocol_id": 54 }, - "minecraft:block.wet_grass.step": { - "protocol_id": 1130 + "minecraft:play_time": { + "protocol_id": 1 }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1131 + "minecraft:player_kills": { + "protocol_id": 33 }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1132 + "minecraft:pot_flower": { + "protocol_id": 50 }, - "minecraft:entity.witch.death": { - "protocol_id": 1133 + "minecraft:raid_trigger": { + "protocol_id": 69 }, - "minecraft:entity.witch.drink": { - "protocol_id": 1134 + "minecraft:raid_win": { + "protocol_id": 70 }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1135 + "minecraft:sleep_in_bed": { + "protocol_id": 58 }, - "minecraft:entity.witch.throw": { - "protocol_id": 1136 + "minecraft:sneak_time": { + "protocol_id": 5 }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1137 + "minecraft:sprint_one_cm": { + "protocol_id": 8 }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1138 + "minecraft:strider_one_cm": { + "protocol_id": 20 }, - "minecraft:entity.wither.death": { - "protocol_id": 1139 + "minecraft:swim_one_cm": { + "protocol_id": 19 }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1140 + "minecraft:talked_to_villager": { + "protocol_id": 35 }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1141 + "minecraft:target_hit": { + "protocol_id": 73 }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1142 + "minecraft:time_since_death": { + "protocol_id": 3 }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1143 + "minecraft:time_since_rest": { + "protocol_id": 4 }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1144 + "minecraft:total_world_time": { + "protocol_id": 2 }, - "minecraft:entity.wither_skeleton.step": { - "protocol_id": 1145 + "minecraft:traded_with_villager": { + "protocol_id": 36 }, - "minecraft:entity.wither.spawn": { - "protocol_id": 1146 + "minecraft:trigger_trapped_chest": { + "protocol_id": 51 }, - "minecraft:entity.wolf.ambient": { - "protocol_id": 1147 + "minecraft:tune_noteblock": { + "protocol_id": 49 }, - "minecraft:entity.wolf.death": { - "protocol_id": 1148 + "minecraft:use_cauldron": { + "protocol_id": 39 }, - "minecraft:entity.wolf.growl": { - "protocol_id": 1149 + "minecraft:walk_on_water_one_cm": { + "protocol_id": 9 }, - "minecraft:entity.wolf.howl": { - "protocol_id": 1150 + "minecraft:walk_one_cm": { + "protocol_id": 6 }, - "minecraft:entity.wolf.hurt": { - "protocol_id": 1151 + "minecraft:walk_under_water_one_cm": { + "protocol_id": 13 + } + }, + "protocol_id": 12 + }, + "minecraft:enchantment": { + "entries": { + "minecraft:aqua_affinity": { + "protocol_id": 6 }, - "minecraft:entity.wolf.pant": { - "protocol_id": 1152 + "minecraft:bane_of_arthropods": { + "protocol_id": 15 }, - "minecraft:entity.wolf.shake": { - "protocol_id": 1153 + "minecraft:binding_curse": { + "protocol_id": 10 }, - "minecraft:entity.wolf.step": { - "protocol_id": 1154 + "minecraft:blast_protection": { + "protocol_id": 3 }, - "minecraft:entity.wolf.whine": { - "protocol_id": 1155 + "minecraft:channeling": { + "protocol_id": 33 }, - "minecraft:block.wooden_door.close": { - "protocol_id": 1156 + "minecraft:depth_strider": { + "protocol_id": 8 }, - "minecraft:block.wooden_door.open": { - "protocol_id": 1157 + "minecraft:efficiency": { + "protocol_id": 20 }, - "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1158 + "minecraft:feather_falling": { + "protocol_id": 2 }, - "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1159 + "minecraft:fire_aspect": { + "protocol_id": 17 }, - "minecraft:block.wood.break": { - "protocol_id": 1160 + "minecraft:fire_protection": { + "protocol_id": 1 }, - "minecraft:block.wooden_button.click_off": { - "protocol_id": 1161 + "minecraft:flame": { + "protocol_id": 26 }, - "minecraft:block.wooden_button.click_on": { - "protocol_id": 1162 + "minecraft:fortune": { + "protocol_id": 23 }, - "minecraft:block.wood.fall": { - "protocol_id": 1163 + "minecraft:frost_walker": { + "protocol_id": 9 }, - "minecraft:block.wood.hit": { - "protocol_id": 1164 + "minecraft:impaling": { + "protocol_id": 31 }, - "minecraft:block.wood.place": { - "protocol_id": 1165 + "minecraft:infinity": { + "protocol_id": 27 }, - "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1166 + "minecraft:knockback": { + "protocol_id": 16 }, - "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1167 + "minecraft:looting": { + "protocol_id": 18 }, - "minecraft:block.wood.step": { - "protocol_id": 1168 + "minecraft:loyalty": { + "protocol_id": 30 }, - "minecraft:block.wool.break": { - "protocol_id": 1169 + "minecraft:luck_of_the_sea": { + "protocol_id": 28 }, - "minecraft:block.wool.fall": { - "protocol_id": 1170 + "minecraft:lure": { + "protocol_id": 29 }, - "minecraft:block.wool.hit": { - "protocol_id": 1171 + "minecraft:mending": { + "protocol_id": 37 }, - "minecraft:block.wool.place": { - "protocol_id": 1172 + "minecraft:multishot": { + "protocol_id": 34 }, - "minecraft:block.wool.step": { - "protocol_id": 1173 + "minecraft:piercing": { + "protocol_id": 36 }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1174 + "minecraft:power": { + "protocol_id": 24 }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1175 + "minecraft:projectile_protection": { + "protocol_id": 4 }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1176 + "minecraft:protection": { + "protocol_id": 0 }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1177 + "minecraft:punch": { + "protocol_id": 25 }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1178 + "minecraft:quick_charge": { + "protocol_id": 35 }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1179 + "minecraft:respiration": { + "protocol_id": 5 }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1180 + "minecraft:riptide": { + "protocol_id": 32 }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1181 + "minecraft:sharpness": { + "protocol_id": 13 }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1182 + "minecraft:silk_touch": { + "protocol_id": 21 }, - "minecraft:entity.zombie.break_wooden_door": { - "protocol_id": 1183 + "minecraft:smite": { + "protocol_id": 14 }, - "minecraft:entity.zombie.converted_to_drowned": { - "protocol_id": 1184 + "minecraft:soul_speed": { + "protocol_id": 11 }, - "minecraft:entity.zombie.death": { - "protocol_id": 1185 + "minecraft:sweeping": { + "protocol_id": 19 }, - "minecraft:entity.zombie.destroy_egg": { - "protocol_id": 1186 + "minecraft:swift_sneak": { + "protocol_id": 12 }, - "minecraft:entity.zombie_horse.ambient": { - "protocol_id": 1187 + "minecraft:thorns": { + "protocol_id": 7 }, - "minecraft:entity.zombie_horse.death": { - "protocol_id": 1188 + "minecraft:unbreaking": { + "protocol_id": 22 }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1189 + "minecraft:vanishing_curse": { + "protocol_id": 38 + } + }, + "protocol_id": 5 + }, + "minecraft:entity_type": { + "default": "minecraft:pig", + "entries": { + "minecraft:allay": { + "protocol_id": 0 }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1190 + "minecraft:area_effect_cloud": { + "protocol_id": 1 }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1191 + "minecraft:armor_stand": { + "protocol_id": 2 }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1192 + "minecraft:arrow": { + "protocol_id": 3 }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1193 + "minecraft:axolotl": { + "protocol_id": 4 }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1194 + "minecraft:bat": { + "protocol_id": 5 }, - "minecraft:entity.zombified_piglin.hurt": { - "protocol_id": 1195 + "minecraft:bee": { + "protocol_id": 6 }, - "minecraft:entity.zombie.step": { - "protocol_id": 1196 - }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1197 - }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1198 - }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1199 - }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1200 - }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1201 - }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1202 - } - } - }, - "minecraft:fluid": { - "default": "minecraft:empty", - "protocol_id": 2, - "entries": { - "minecraft:empty": { - "protocol_id": 0 - }, - "minecraft:flowing_water": { - "protocol_id": 1 - }, - "minecraft:water": { - "protocol_id": 2 - }, - "minecraft:flowing_lava": { - "protocol_id": 3 - }, - "minecraft:lava": { - "protocol_id": 4 - } - } - }, - "minecraft:mob_effect": { - "protocol_id": 3, - "entries": { - "minecraft:speed": { - "protocol_id": 1 - }, - "minecraft:slowness": { - "protocol_id": 2 - }, - "minecraft:haste": { - "protocol_id": 3 - }, - "minecraft:mining_fatigue": { - "protocol_id": 4 - }, - "minecraft:strength": { - "protocol_id": 5 - }, - "minecraft:instant_health": { - "protocol_id": 6 - }, - "minecraft:instant_damage": { + "minecraft:blaze": { "protocol_id": 7 }, - "minecraft:jump_boost": { + "minecraft:boat": { "protocol_id": 8 }, - "minecraft:nausea": { - "protocol_id": 9 - }, - "minecraft:regeneration": { + "minecraft:cat": { "protocol_id": 10 }, - "minecraft:resistance": { + "minecraft:cave_spider": { "protocol_id": 11 }, - "minecraft:fire_resistance": { + "minecraft:chest_boat": { + "protocol_id": 9 + }, + "minecraft:chest_minecart": { + "protocol_id": 54 + }, + "minecraft:chicken": { "protocol_id": 12 }, - "minecraft:water_breathing": { + "minecraft:cod": { "protocol_id": 13 }, - "minecraft:invisibility": { + "minecraft:command_block_minecart": { + "protocol_id": 55 + }, + "minecraft:cow": { "protocol_id": 14 }, - "minecraft:blindness": { + "minecraft:creeper": { "protocol_id": 15 }, - "minecraft:night_vision": { + "minecraft:dolphin": { "protocol_id": 16 }, - "minecraft:hunger": { + "minecraft:donkey": { "protocol_id": 17 }, - "minecraft:weakness": { + "minecraft:dragon_fireball": { "protocol_id": 18 }, - "minecraft:poison": { + "minecraft:drowned": { "protocol_id": 19 }, - "minecraft:wither": { + "minecraft:egg": { + "protocol_id": 93 + }, + "minecraft:elder_guardian": { "protocol_id": 20 }, - "minecraft:health_boost": { + "minecraft:end_crystal": { "protocol_id": 21 }, - "minecraft:absorption": { + "minecraft:ender_dragon": { "protocol_id": 22 }, - "minecraft:saturation": { + "minecraft:ender_pearl": { + "protocol_id": 94 + }, + "minecraft:enderman": { "protocol_id": 23 }, - "minecraft:glowing": { + "minecraft:endermite": { "protocol_id": 24 }, - "minecraft:levitation": { + "minecraft:evoker": { "protocol_id": 25 }, - "minecraft:luck": { + "minecraft:evoker_fangs": { "protocol_id": 26 }, - "minecraft:unluck": { + "minecraft:experience_bottle": { + "protocol_id": 95 + }, + "minecraft:experience_orb": { "protocol_id": 27 }, - "minecraft:slow_falling": { + "minecraft:eye_of_ender": { "protocol_id": 28 }, - "minecraft:conduit_power": { + "minecraft:falling_block": { "protocol_id": 29 }, - "minecraft:dolphins_grace": { + "minecraft:fireball": { + "protocol_id": 46 + }, + "minecraft:firework_rocket": { "protocol_id": 30 }, - "minecraft:bad_omen": { + "minecraft:fishing_bobber": { + "protocol_id": 117 + }, + "minecraft:fox": { "protocol_id": 31 }, - "minecraft:hero_of_the_village": { + "minecraft:frog": { "protocol_id": 32 - } - } - }, - "minecraft:block": { - "default": "minecraft:air", - "protocol_id": 4, - "entries": { - "minecraft:air": { - "protocol_id": 0 }, - "minecraft:stone": { - "protocol_id": 1 + "minecraft:furnace_minecart": { + "protocol_id": 56 }, - "minecraft:granite": { - "protocol_id": 2 + "minecraft:ghast": { + "protocol_id": 33 }, - "minecraft:polished_granite": { - "protocol_id": 3 + "minecraft:giant": { + "protocol_id": 34 }, - "minecraft:diorite": { - "protocol_id": 4 + "minecraft:glow_item_frame": { + "protocol_id": 35 }, - "minecraft:polished_diorite": { - "protocol_id": 5 + "minecraft:glow_squid": { + "protocol_id": 36 }, - "minecraft:andesite": { - "protocol_id": 6 + "minecraft:goat": { + "protocol_id": 37 }, - "minecraft:polished_andesite": { - "protocol_id": 7 + "minecraft:guardian": { + "protocol_id": 38 }, - "minecraft:grass_block": { - "protocol_id": 8 + "minecraft:hoglin": { + "protocol_id": 39 }, - "minecraft:dirt": { - "protocol_id": 9 + "minecraft:hopper_minecart": { + "protocol_id": 57 }, - "minecraft:coarse_dirt": { - "protocol_id": 10 + "minecraft:horse": { + "protocol_id": 40 }, - "minecraft:podzol": { - "protocol_id": 11 + "minecraft:husk": { + "protocol_id": 41 }, - "minecraft:cobblestone": { - "protocol_id": 12 + "minecraft:illusioner": { + "protocol_id": 42 }, - "minecraft:oak_planks": { - "protocol_id": 13 + "minecraft:iron_golem": { + "protocol_id": 43 }, - "minecraft:spruce_planks": { - "protocol_id": 14 + "minecraft:item": { + "protocol_id": 44 }, - "minecraft:birch_planks": { - "protocol_id": 15 + "minecraft:item_frame": { + "protocol_id": 45 }, - "minecraft:jungle_planks": { - "protocol_id": 16 + "minecraft:leash_knot": { + "protocol_id": 47 }, - "minecraft:acacia_planks": { - "protocol_id": 17 + "minecraft:lightning_bolt": { + "protocol_id": 48 }, - "minecraft:dark_oak_planks": { - "protocol_id": 18 + "minecraft:llama": { + "protocol_id": 49 }, - "minecraft:oak_sapling": { - "protocol_id": 19 + "minecraft:llama_spit": { + "protocol_id": 50 }, - "minecraft:spruce_sapling": { - "protocol_id": 20 + "minecraft:magma_cube": { + "protocol_id": 51 }, - "minecraft:birch_sapling": { - "protocol_id": 21 + "minecraft:marker": { + "protocol_id": 52 }, - "minecraft:jungle_sapling": { - "protocol_id": 22 + "minecraft:minecart": { + "protocol_id": 53 }, - "minecraft:acacia_sapling": { - "protocol_id": 23 + "minecraft:mooshroom": { + "protocol_id": 61 }, - "minecraft:dark_oak_sapling": { - "protocol_id": 24 + "minecraft:mule": { + "protocol_id": 60 }, - "minecraft:bedrock": { - "protocol_id": 25 + "minecraft:ocelot": { + "protocol_id": 62 }, - "minecraft:water": { - "protocol_id": 26 + "minecraft:painting": { + "protocol_id": 63 }, - "minecraft:lava": { - "protocol_id": 27 + "minecraft:panda": { + "protocol_id": 64 }, - "minecraft:sand": { - "protocol_id": 28 + "minecraft:parrot": { + "protocol_id": 65 }, - "minecraft:red_sand": { - "protocol_id": 29 - }, - "minecraft:gravel": { - "protocol_id": 30 - }, - "minecraft:gold_ore": { - "protocol_id": 31 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 32 - }, - "minecraft:iron_ore": { - "protocol_id": 33 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 34 - }, - "minecraft:coal_ore": { - "protocol_id": 35 - }, - "minecraft:deepslate_coal_ore": { - "protocol_id": 36 - }, - "minecraft:nether_gold_ore": { - "protocol_id": 37 - }, - "minecraft:oak_log": { - "protocol_id": 38 - }, - "minecraft:spruce_log": { - "protocol_id": 39 - }, - "minecraft:birch_log": { - "protocol_id": 40 - }, - "minecraft:jungle_log": { - "protocol_id": 41 - }, - "minecraft:acacia_log": { - "protocol_id": 42 - }, - "minecraft:dark_oak_log": { - "protocol_id": 43 - }, - "minecraft:stripped_spruce_log": { - "protocol_id": 44 - }, - "minecraft:stripped_birch_log": { - "protocol_id": 45 - }, - "minecraft:stripped_jungle_log": { - "protocol_id": 46 - }, - "minecraft:stripped_acacia_log": { - "protocol_id": 47 - }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 48 - }, - "minecraft:stripped_oak_log": { - "protocol_id": 49 - }, - "minecraft:oak_wood": { - "protocol_id": 50 - }, - "minecraft:spruce_wood": { - "protocol_id": 51 - }, - "minecraft:birch_wood": { - "protocol_id": 52 - }, - "minecraft:jungle_wood": { - "protocol_id": 53 - }, - "minecraft:acacia_wood": { - "protocol_id": 54 - }, - "minecraft:dark_oak_wood": { - "protocol_id": 55 - }, - "minecraft:stripped_oak_wood": { - "protocol_id": 56 - }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 57 - }, - "minecraft:stripped_birch_wood": { - "protocol_id": 58 - }, - "minecraft:stripped_jungle_wood": { - "protocol_id": 59 - }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 60 - }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 61 - }, - "minecraft:oak_leaves": { - "protocol_id": 62 - }, - "minecraft:spruce_leaves": { - "protocol_id": 63 - }, - "minecraft:birch_leaves": { - "protocol_id": 64 - }, - "minecraft:jungle_leaves": { - "protocol_id": 65 - }, - "minecraft:acacia_leaves": { + "minecraft:phantom": { "protocol_id": 66 }, - "minecraft:dark_oak_leaves": { + "minecraft:pig": { "protocol_id": 67 }, - "minecraft:azalea_leaves": { + "minecraft:piglin": { "protocol_id": 68 }, - "minecraft:flowering_azalea_leaves": { + "minecraft:piglin_brute": { "protocol_id": 69 }, - "minecraft:sponge": { + "minecraft:pillager": { "protocol_id": 70 }, - "minecraft:wet_sponge": { + "minecraft:player": { + "protocol_id": 116 + }, + "minecraft:polar_bear": { "protocol_id": 71 }, - "minecraft:glass": { - "protocol_id": 72 + "minecraft:potion": { + "protocol_id": 96 }, - "minecraft:lapis_ore": { + "minecraft:pufferfish": { "protocol_id": 73 }, - "minecraft:deepslate_lapis_ore": { + "minecraft:rabbit": { "protocol_id": 74 }, - "minecraft:lapis_block": { + "minecraft:ravager": { "protocol_id": 75 }, - "minecraft:dispenser": { + "minecraft:salmon": { "protocol_id": 76 }, - "minecraft:sandstone": { + "minecraft:sheep": { "protocol_id": 77 }, - "minecraft:chiseled_sandstone": { + "minecraft:shulker": { "protocol_id": 78 }, - "minecraft:cut_sandstone": { + "minecraft:shulker_bullet": { "protocol_id": 79 }, - "minecraft:note_block": { + "minecraft:silverfish": { "protocol_id": 80 }, - "minecraft:white_bed": { + "minecraft:skeleton": { "protocol_id": 81 }, - "minecraft:orange_bed": { + "minecraft:skeleton_horse": { "protocol_id": 82 }, - "minecraft:magenta_bed": { + "minecraft:slime": { "protocol_id": 83 }, - "minecraft:light_blue_bed": { + "minecraft:small_fireball": { "protocol_id": 84 }, - "minecraft:yellow_bed": { + "minecraft:snow_golem": { "protocol_id": 85 }, - "minecraft:lime_bed": { + "minecraft:snowball": { "protocol_id": 86 }, - "minecraft:pink_bed": { + "minecraft:spawner_minecart": { + "protocol_id": 58 + }, + "minecraft:spectral_arrow": { "protocol_id": 87 }, - "minecraft:gray_bed": { + "minecraft:spider": { "protocol_id": 88 }, - "minecraft:light_gray_bed": { + "minecraft:squid": { "protocol_id": 89 }, - "minecraft:cyan_bed": { + "minecraft:stray": { "protocol_id": 90 }, - "minecraft:purple_bed": { + "minecraft:strider": { "protocol_id": 91 }, - "minecraft:blue_bed": { + "minecraft:tadpole": { "protocol_id": 92 }, - "minecraft:brown_bed": { - "protocol_id": 93 - }, - "minecraft:green_bed": { - "protocol_id": 94 + "minecraft:tnt": { + "protocol_id": 72 }, - "minecraft:red_bed": { - "protocol_id": 95 + "minecraft:tnt_minecart": { + "protocol_id": 59 }, - "minecraft:black_bed": { - "protocol_id": 96 + "minecraft:trader_llama": { + "protocol_id": 98 }, - "minecraft:powered_rail": { + "minecraft:trident": { "protocol_id": 97 }, - "minecraft:detector_rail": { - "protocol_id": 98 - }, - "minecraft:sticky_piston": { + "minecraft:tropical_fish": { "protocol_id": 99 }, - "minecraft:cobweb": { + "minecraft:turtle": { "protocol_id": 100 }, - "minecraft:grass": { + "minecraft:vex": { "protocol_id": 101 }, - "minecraft:fern": { + "minecraft:villager": { "protocol_id": 102 }, - "minecraft:dead_bush": { + "minecraft:vindicator": { "protocol_id": 103 }, - "minecraft:seagrass": { + "minecraft:wandering_trader": { "protocol_id": 104 }, - "minecraft:tall_seagrass": { + "minecraft:warden": { "protocol_id": 105 }, - "minecraft:piston": { + "minecraft:witch": { "protocol_id": 106 }, - "minecraft:piston_head": { + "minecraft:wither": { "protocol_id": 107 }, - "minecraft:white_wool": { + "minecraft:wither_skeleton": { "protocol_id": 108 }, - "minecraft:orange_wool": { + "minecraft:wither_skull": { "protocol_id": 109 }, - "minecraft:magenta_wool": { + "minecraft:wolf": { "protocol_id": 110 }, - "minecraft:light_blue_wool": { + "minecraft:zoglin": { "protocol_id": 111 }, - "minecraft:yellow_wool": { + "minecraft:zombie": { "protocol_id": 112 }, - "minecraft:lime_wool": { + "minecraft:zombie_horse": { "protocol_id": 113 }, - "minecraft:pink_wool": { + "minecraft:zombie_villager": { "protocol_id": 114 }, - "minecraft:gray_wool": { + "minecraft:zombified_piglin": { "protocol_id": 115 + } + }, + "protocol_id": 6 + }, + "minecraft:float_provider_type": { + "entries": { + "minecraft:clamped_normal": { + "protocol_id": 2 }, - "minecraft:light_gray_wool": { - "protocol_id": 116 + "minecraft:constant": { + "protocol_id": 0 }, - "minecraft:cyan_wool": { - "protocol_id": 117 + "minecraft:trapezoid": { + "protocol_id": 3 }, - "minecraft:purple_wool": { - "protocol_id": 118 + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 36 + }, + "minecraft:fluid": { + "default": "minecraft:empty", + "entries": { + "minecraft:empty": { + "protocol_id": 0 }, - "minecraft:blue_wool": { - "protocol_id": 119 + "minecraft:flowing_lava": { + "protocol_id": 3 }, - "minecraft:brown_wool": { - "protocol_id": 120 + "minecraft:flowing_water": { + "protocol_id": 1 }, - "minecraft:green_wool": { - "protocol_id": 121 + "minecraft:lava": { + "protocol_id": 4 }, - "minecraft:red_wool": { - "protocol_id": 122 + "minecraft:water": { + "protocol_id": 2 + } + }, + "protocol_id": 2 + }, + "minecraft:frog_variant": { + "entries": { + "minecraft:cold": { + "protocol_id": 2 }, - "minecraft:black_wool": { - "protocol_id": 123 + "minecraft:temperate": { + "protocol_id": 0 }, - "minecraft:moving_piston": { - "protocol_id": 124 + "minecraft:warm": { + "protocol_id": 1 + } + }, + "protocol_id": 60 + }, + "minecraft:game_event": { + "default": "minecraft:step", + "entries": { + "minecraft:block_activate": { + "protocol_id": 0 }, - "minecraft:dandelion": { - "protocol_id": 125 + "minecraft:block_attach": { + "protocol_id": 1 }, - "minecraft:poppy": { - "protocol_id": 126 + "minecraft:block_change": { + "protocol_id": 2 }, - "minecraft:blue_orchid": { - "protocol_id": 127 + "minecraft:block_close": { + "protocol_id": 3 }, - "minecraft:allium": { - "protocol_id": 128 + "minecraft:block_deactivate": { + "protocol_id": 4 }, - "minecraft:azure_bluet": { - "protocol_id": 129 + "minecraft:block_destroy": { + "protocol_id": 5 }, - "minecraft:red_tulip": { - "protocol_id": 130 + "minecraft:block_detach": { + "protocol_id": 6 }, - "minecraft:orange_tulip": { - "protocol_id": 131 + "minecraft:block_open": { + "protocol_id": 7 }, - "minecraft:white_tulip": { - "protocol_id": 132 + "minecraft:block_place": { + "protocol_id": 8 }, - "minecraft:pink_tulip": { - "protocol_id": 133 + "minecraft:container_close": { + "protocol_id": 9 }, - "minecraft:oxeye_daisy": { - "protocol_id": 134 + "minecraft:container_open": { + "protocol_id": 10 }, - "minecraft:cornflower": { - "protocol_id": 135 + "minecraft:dispense_fail": { + "protocol_id": 11 }, - "minecraft:wither_rose": { - "protocol_id": 136 + "minecraft:drink": { + "protocol_id": 12 }, - "minecraft:lily_of_the_valley": { - "protocol_id": 137 + "minecraft:eat": { + "protocol_id": 13 }, - "minecraft:brown_mushroom": { - "protocol_id": 138 + "minecraft:elytra_glide": { + "protocol_id": 14 }, - "minecraft:red_mushroom": { - "protocol_id": 139 + "minecraft:entity_damage": { + "protocol_id": 15 }, - "minecraft:gold_block": { - "protocol_id": 140 + "minecraft:entity_die": { + "protocol_id": 16 }, - "minecraft:iron_block": { - "protocol_id": 141 + "minecraft:entity_interact": { + "protocol_id": 17 }, - "minecraft:bricks": { - "protocol_id": 142 + "minecraft:entity_place": { + "protocol_id": 18 }, - "minecraft:tnt": { - "protocol_id": 143 + "minecraft:entity_roar": { + "protocol_id": 19 }, - "minecraft:bookshelf": { - "protocol_id": 144 + "minecraft:entity_shake": { + "protocol_id": 20 }, - "minecraft:mossy_cobblestone": { - "protocol_id": 145 + "minecraft:equip": { + "protocol_id": 21 }, - "minecraft:obsidian": { - "protocol_id": 146 + "minecraft:explode": { + "protocol_id": 22 }, - "minecraft:torch": { - "protocol_id": 147 + "minecraft:flap": { + "protocol_id": 23 }, - "minecraft:wall_torch": { - "protocol_id": 148 + "minecraft:fluid_pickup": { + "protocol_id": 24 }, - "minecraft:fire": { - "protocol_id": 149 + "minecraft:fluid_place": { + "protocol_id": 25 }, - "minecraft:soul_fire": { - "protocol_id": 150 + "minecraft:hit_ground": { + "protocol_id": 26 }, - "minecraft:spawner": { - "protocol_id": 151 + "minecraft:instrument_play": { + "protocol_id": 27 }, - "minecraft:oak_stairs": { - "protocol_id": 152 + "minecraft:item_interact_finish": { + "protocol_id": 28 }, - "minecraft:chest": { - "protocol_id": 153 + "minecraft:item_interact_start": { + "protocol_id": 29 }, - "minecraft:redstone_wire": { - "protocol_id": 154 + "minecraft:lightning_strike": { + "protocol_id": 30 }, - "minecraft:diamond_ore": { - "protocol_id": 155 + "minecraft:note_block_play": { + "protocol_id": 31 }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 156 + "minecraft:piston_contract": { + "protocol_id": 32 }, - "minecraft:diamond_block": { - "protocol_id": 157 + "minecraft:piston_extend": { + "protocol_id": 33 }, - "minecraft:crafting_table": { - "protocol_id": 158 + "minecraft:prime_fuse": { + "protocol_id": 34 }, - "minecraft:wheat": { - "protocol_id": 159 + "minecraft:projectile_land": { + "protocol_id": 35 }, - "minecraft:farmland": { - "protocol_id": 160 + "minecraft:projectile_shoot": { + "protocol_id": 36 }, - "minecraft:furnace": { - "protocol_id": 161 + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 37 }, - "minecraft:oak_sign": { - "protocol_id": 162 + "minecraft:shear": { + "protocol_id": 38 }, - "minecraft:spruce_sign": { - "protocol_id": 163 + "minecraft:shriek": { + "protocol_id": 39 }, - "minecraft:birch_sign": { - "protocol_id": 164 + "minecraft:splash": { + "protocol_id": 40 }, - "minecraft:acacia_sign": { - "protocol_id": 165 + "minecraft:step": { + "protocol_id": 41 }, - "minecraft:jungle_sign": { - "protocol_id": 166 + "minecraft:swim": { + "protocol_id": 42 }, - "minecraft:dark_oak_sign": { - "protocol_id": 167 + "minecraft:teleport": { + "protocol_id": 43 + } + }, + "protocol_id": 0 + }, + "minecraft:height_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 }, - "minecraft:oak_door": { - "protocol_id": 168 + "minecraft:constant": { + "protocol_id": 0 }, - "minecraft:ladder": { - "protocol_id": 169 + "minecraft:trapezoid": { + "protocol_id": 4 }, - "minecraft:rail": { - "protocol_id": 170 + "minecraft:uniform": { + "protocol_id": 1 }, - "minecraft:cobblestone_stairs": { - "protocol_id": 171 + "minecraft:very_biased_to_bottom": { + "protocol_id": 3 }, - "minecraft:oak_wall_sign": { - "protocol_id": 172 + "minecraft:weighted_list": { + "protocol_id": 5 + } + }, + "protocol_id": 38 + }, + "minecraft:instrument": { + "entries": { + "minecraft:admire_goat_horn": { + "protocol_id": 4 }, - "minecraft:spruce_wall_sign": { - "protocol_id": 173 + "minecraft:call_goat_horn": { + "protocol_id": 5 }, - "minecraft:birch_wall_sign": { - "protocol_id": 174 + "minecraft:dream_goat_horn": { + "protocol_id": 7 }, - "minecraft:acacia_wall_sign": { - "protocol_id": 175 + "minecraft:feel_goat_horn": { + "protocol_id": 3 }, - "minecraft:jungle_wall_sign": { - "protocol_id": 176 + "minecraft:ponder_goat_horn": { + "protocol_id": 0 }, - "minecraft:dark_oak_wall_sign": { - "protocol_id": 177 + "minecraft:seek_goat_horn": { + "protocol_id": 2 }, - "minecraft:lever": { - "protocol_id": 178 + "minecraft:sing_goat_horn": { + "protocol_id": 1 }, - "minecraft:stone_pressure_plate": { - "protocol_id": 179 + "minecraft:yearn_goat_horn": { + "protocol_id": 6 + } + }, + "protocol_id": 62 + }, + "minecraft:int_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 }, - "minecraft:iron_door": { - "protocol_id": 180 + "minecraft:clamped": { + "protocol_id": 3 }, - "minecraft:oak_pressure_plate": { - "protocol_id": 181 + "minecraft:clamped_normal": { + "protocol_id": 5 }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 182 + "minecraft:constant": { + "protocol_id": 0 }, - "minecraft:birch_pressure_plate": { - "protocol_id": 183 + "minecraft:uniform": { + "protocol_id": 1 }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 184 + "minecraft:weighted_list": { + "protocol_id": 4 + } + }, + "protocol_id": 37 + }, + "minecraft:item": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 706 }, - "minecraft:acacia_pressure_plate": { - "protocol_id": 185 + "minecraft:acacia_button": { + "protocol_id": 638 }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 186 + "minecraft:acacia_chest_boat": { + "protocol_id": 707 }, - "minecraft:redstone_ore": { - "protocol_id": 187 + "minecraft:acacia_door": { + "protocol_id": 661 }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 188 + "minecraft:acacia_fence": { + "protocol_id": 272 }, - "minecraft:redstone_torch": { - "protocol_id": 189 + "minecraft:acacia_fence_gate": { + "protocol_id": 680 }, - "minecraft:redstone_wall_torch": { - "protocol_id": 190 + "minecraft:acacia_leaves": { + "protocol_id": 146 }, - "minecraft:stone_button": { - "protocol_id": 191 + "minecraft:acacia_log": { + "protocol_id": 108 }, - "minecraft:snow": { - "protocol_id": 192 + "minecraft:acacia_planks": { + "protocol_id": 27 }, - "minecraft:ice": { - "protocol_id": 193 + "minecraft:acacia_pressure_plate": { + "protocol_id": 651 }, - "minecraft:snow_block": { - "protocol_id": 194 + "minecraft:acacia_sapling": { + "protocol_id": 36 }, - "minecraft:cactus": { - "protocol_id": 195 + "minecraft:acacia_sign": { + "protocol_id": 808 }, - "minecraft:clay": { - "protocol_id": 196 + "minecraft:acacia_slab": { + "protocol_id": 218 }, - "minecraft:sugar_cane": { - "protocol_id": 197 + "minecraft:acacia_stairs": { + "protocol_id": 342 }, - "minecraft:jukebox": { - "protocol_id": 198 + "minecraft:acacia_trapdoor": { + "protocol_id": 671 }, - "minecraft:oak_fence": { - "protocol_id": 199 + "minecraft:acacia_wood": { + "protocol_id": 137 }, - "minecraft:pumpkin": { - "protocol_id": 200 + "minecraft:activator_rail": { + "protocol_id": 688 }, - "minecraft:netherrack": { - "protocol_id": 201 + "minecraft:air": { + "protocol_id": 0 }, - "minecraft:soul_sand": { - "protocol_id": 202 + "minecraft:allay_spawn_egg": { + "protocol_id": 912 }, - "minecraft:soul_soil": { - "protocol_id": 203 + "minecraft:allium": { + "protocol_id": 186 }, - "minecraft:basalt": { - "protocol_id": 204 + "minecraft:amethyst_block": { + "protocol_id": 66 }, - "minecraft:polished_basalt": { - "protocol_id": 205 + "minecraft:amethyst_cluster": { + "protocol_id": 1145 }, - "minecraft:soul_torch": { - "protocol_id": 206 + "minecraft:amethyst_shard": { + "protocol_id": 726 }, - "minecraft:soul_wall_torch": { - "protocol_id": 207 + "minecraft:ancient_debris": { + "protocol_id": 61 }, - "minecraft:glowstone": { - "protocol_id": 208 + "minecraft:andesite": { + "protocol_id": 6 }, - "minecraft:nether_portal": { - "protocol_id": 209 + "minecraft:andesite_slab": { + "protocol_id": 599 }, - "minecraft:carved_pumpkin": { - "protocol_id": 210 + "minecraft:andesite_stairs": { + "protocol_id": 582 }, - "minecraft:jack_o_lantern": { - "protocol_id": 211 + "minecraft:andesite_wall": { + "protocol_id": 359 }, - "minecraft:cake": { - "protocol_id": 212 + "minecraft:anvil": { + "protocol_id": 371 }, - "minecraft:repeater": { - "protocol_id": 213 + "minecraft:apple": { + "protocol_id": 717 }, - "minecraft:white_stained_glass": { - "protocol_id": 214 + "minecraft:armor_stand": { + "protocol_id": 1015 }, - "minecraft:orange_stained_glass": { - "protocol_id": 215 + "minecraft:arrow": { + "protocol_id": 719 }, - "minecraft:magenta_stained_glass": { - "protocol_id": 216 + "minecraft:axolotl_bucket": { + "protocol_id": 824 }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 217 + "minecraft:axolotl_spawn_egg": { + "protocol_id": 913 }, - "minecraft:yellow_stained_glass": { - "protocol_id": 218 + "minecraft:azalea": { + "protocol_id": 162 }, - "minecraft:lime_stained_glass": { - "protocol_id": 219 + "minecraft:azalea_leaves": { + "protocol_id": 149 }, - "minecraft:pink_stained_glass": { - "protocol_id": 220 + "minecraft:azure_bluet": { + "protocol_id": 187 }, - "minecraft:gray_stained_glass": { - "protocol_id": 221 + "minecraft:baked_potato": { + "protocol_id": 992 }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 222 + "minecraft:bamboo": { + "protocol_id": 213 }, - "minecraft:cyan_stained_glass": { - "protocol_id": 223 + "minecraft:barrel": { + "protocol_id": 1089 }, - "minecraft:purple_stained_glass": { - "protocol_id": 224 + "minecraft:barrier": { + "protocol_id": 395 }, - "minecraft:blue_stained_glass": { - "protocol_id": 225 + "minecraft:basalt": { + "protocol_id": 283 }, - "minecraft:brown_stained_glass": { - "protocol_id": 226 + "minecraft:bat_spawn_egg": { + "protocol_id": 914 }, - "minecraft:green_stained_glass": { - "protocol_id": 227 + "minecraft:beacon": { + "protocol_id": 348 }, - "minecraft:red_stained_glass": { - "protocol_id": 228 + "minecraft:bedrock": { + "protocol_id": 39 }, - "minecraft:black_stained_glass": { - "protocol_id": 229 + "minecraft:bee_nest": { + "protocol_id": 1106 }, - "minecraft:oak_trapdoor": { - "protocol_id": 230 + "minecraft:bee_spawn_egg": { + "protocol_id": 915 }, - "minecraft:spruce_trapdoor": { - "protocol_id": 231 + "minecraft:beef": { + "protocol_id": 892 }, - "minecraft:birch_trapdoor": { - "protocol_id": 232 + "minecraft:beehive": { + "protocol_id": 1107 }, - "minecraft:jungle_trapdoor": { - "protocol_id": 233 + "minecraft:beetroot": { + "protocol_id": 1044 }, - "minecraft:acacia_trapdoor": { - "protocol_id": 234 + "minecraft:beetroot_seeds": { + "protocol_id": 1045 }, - "minecraft:dark_oak_trapdoor": { - "protocol_id": 235 + "minecraft:beetroot_soup": { + "protocol_id": 1046 }, - "minecraft:stone_bricks": { - "protocol_id": 236 + "minecraft:bell": { + "protocol_id": 1097 }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 237 + "minecraft:big_dripleaf": { + "protocol_id": 211 }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 238 + "minecraft:birch_boat": { + "protocol_id": 702 }, - "minecraft:chiseled_stone_bricks": { - "protocol_id": 239 + "minecraft:birch_button": { + "protocol_id": 636 }, - "minecraft:infested_stone": { - "protocol_id": 240 + "minecraft:birch_chest_boat": { + "protocol_id": 703 }, - "minecraft:infested_cobblestone": { - "protocol_id": 241 + "minecraft:birch_door": { + "protocol_id": 659 }, - "minecraft:infested_stone_bricks": { - "protocol_id": 242 + "minecraft:birch_fence": { + "protocol_id": 270 }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 243 + "minecraft:birch_fence_gate": { + "protocol_id": 678 }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 244 + "minecraft:birch_leaves": { + "protocol_id": 144 }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 245 + "minecraft:birch_log": { + "protocol_id": 106 }, - "minecraft:brown_mushroom_block": { - "protocol_id": 246 + "minecraft:birch_planks": { + "protocol_id": 25 }, - "minecraft:red_mushroom_block": { - "protocol_id": 247 + "minecraft:birch_pressure_plate": { + "protocol_id": 649 }, - "minecraft:mushroom_stem": { - "protocol_id": 248 + "minecraft:birch_sapling": { + "protocol_id": 34 }, - "minecraft:iron_bars": { - "protocol_id": 249 + "minecraft:birch_sign": { + "protocol_id": 806 }, - "minecraft:chain": { - "protocol_id": 250 + "minecraft:birch_slab": { + "protocol_id": 216 }, - "minecraft:glass_pane": { - "protocol_id": 251 + "minecraft:birch_stairs": { + "protocol_id": 340 }, - "minecraft:melon": { - "protocol_id": 252 + "minecraft:birch_trapdoor": { + "protocol_id": 669 }, - "minecraft:attached_pumpkin_stem": { - "protocol_id": 253 + "minecraft:birch_wood": { + "protocol_id": 135 }, - "minecraft:attached_melon_stem": { - "protocol_id": 254 + "minecraft:black_banner": { + "protocol_id": 1040 }, - "minecraft:pumpkin_stem": { - "protocol_id": 255 + "minecraft:black_bed": { + "protocol_id": 884 }, - "minecraft:melon_stem": { - "protocol_id": 256 + "minecraft:black_candle": { + "protocol_id": 1141 }, - "minecraft:vine": { - "protocol_id": 257 + "minecraft:black_carpet": { + "protocol_id": 413 }, - "minecraft:glow_lichen": { - "protocol_id": 258 + "minecraft:black_concrete": { + "protocol_id": 522 }, - "minecraft:oak_fence_gate": { - "protocol_id": 259 + "minecraft:black_concrete_powder": { + "protocol_id": 538 }, - "minecraft:brick_stairs": { - "protocol_id": 260 + "minecraft:black_dye": { + "protocol_id": 864 }, - "minecraft:stone_brick_stairs": { - "protocol_id": 261 + "minecraft:black_glazed_terracotta": { + "protocol_id": 506 }, - "minecraft:mycelium": { - "protocol_id": 262 + "minecraft:black_shulker_box": { + "protocol_id": 490 }, - "minecraft:lily_pad": { - "protocol_id": 263 + "minecraft:black_stained_glass": { + "protocol_id": 438 }, - "minecraft:nether_bricks": { - "protocol_id": 264 + "minecraft:black_stained_glass_pane": { + "protocol_id": 454 }, - "minecraft:nether_brick_fence": { - "protocol_id": 265 + "minecraft:black_terracotta": { + "protocol_id": 394 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 266 + "minecraft:black_wool": { + "protocol_id": 182 }, - "minecraft:nether_wart": { - "protocol_id": 267 + "minecraft:blackstone": { + "protocol_id": 1112 }, - "minecraft:enchanting_table": { - "protocol_id": 268 + "minecraft:blackstone_slab": { + "protocol_id": 1113 }, - "minecraft:brewing_stand": { - "protocol_id": 269 + "minecraft:blackstone_stairs": { + "protocol_id": 1114 }, - "minecraft:cauldron": { - "protocol_id": 270 + "minecraft:blackstone_wall": { + "protocol_id": 364 }, - "minecraft:water_cauldron": { - "protocol_id": 271 + "minecraft:blast_furnace": { + "protocol_id": 1091 }, - "minecraft:lava_cauldron": { - "protocol_id": 272 + "minecraft:blaze_powder": { + "protocol_id": 906 }, - "minecraft:powder_snow_cauldron": { - "protocol_id": 273 + "minecraft:blaze_rod": { + "protocol_id": 898 }, - "minecraft:end_portal": { - "protocol_id": 274 + "minecraft:blaze_spawn_egg": { + "protocol_id": 916 }, - "minecraft:end_portal_frame": { - "protocol_id": 275 + "minecraft:blue_banner": { + "protocol_id": 1036 }, - "minecraft:end_stone": { - "protocol_id": 276 + "minecraft:blue_bed": { + "protocol_id": 880 }, - "minecraft:dragon_egg": { - "protocol_id": 277 + "minecraft:blue_candle": { + "protocol_id": 1137 }, - "minecraft:redstone_lamp": { - "protocol_id": 278 + "minecraft:blue_carpet": { + "protocol_id": 409 }, - "minecraft:cocoa": { - "protocol_id": 279 + "minecraft:blue_concrete": { + "protocol_id": 518 }, - "minecraft:sandstone_stairs": { - "protocol_id": 280 + "minecraft:blue_concrete_powder": { + "protocol_id": 534 }, - "minecraft:emerald_ore": { - "protocol_id": 281 + "minecraft:blue_dye": { + "protocol_id": 860 }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 282 + "minecraft:blue_glazed_terracotta": { + "protocol_id": 502 }, - "minecraft:ender_chest": { - "protocol_id": 283 + "minecraft:blue_ice": { + "protocol_id": 570 }, - "minecraft:tripwire_hook": { - "protocol_id": 284 + "minecraft:blue_orchid": { + "protocol_id": 185 }, - "minecraft:tripwire": { - "protocol_id": 285 + "minecraft:blue_shulker_box": { + "protocol_id": 486 }, - "minecraft:emerald_block": { - "protocol_id": 286 + "minecraft:blue_stained_glass": { + "protocol_id": 434 }, - "minecraft:spruce_stairs": { - "protocol_id": 287 + "minecraft:blue_stained_glass_pane": { + "protocol_id": 450 }, - "minecraft:birch_stairs": { - "protocol_id": 288 + "minecraft:blue_terracotta": { + "protocol_id": 390 }, - "minecraft:jungle_stairs": { - "protocol_id": 289 + "minecraft:blue_wool": { + "protocol_id": 178 }, - "minecraft:command_block": { - "protocol_id": 290 + "minecraft:bone": { + "protocol_id": 866 }, - "minecraft:beacon": { - "protocol_id": 291 + "minecraft:bone_block": { + "protocol_id": 472 }, - "minecraft:cobblestone_wall": { - "protocol_id": 292 + "minecraft:bone_meal": { + "protocol_id": 865 }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 293 + "minecraft:book": { + "protocol_id": 830 }, - "minecraft:flower_pot": { - "protocol_id": 294 + "minecraft:bookshelf": { + "protocol_id": 245 }, - "minecraft:potted_oak_sapling": { - "protocol_id": 295 + "minecraft:bow": { + "protocol_id": 718 }, - "minecraft:potted_spruce_sapling": { - "protocol_id": 296 + "minecraft:bowl": { + "protocol_id": 766 }, - "minecraft:potted_birch_sapling": { - "protocol_id": 297 + "minecraft:brain_coral": { + "protocol_id": 551 }, - "minecraft:potted_jungle_sapling": { - "protocol_id": 298 + "minecraft:brain_coral_block": { + "protocol_id": 546 }, - "minecraft:potted_acacia_sapling": { - "protocol_id": 299 + "minecraft:brain_coral_fan": { + "protocol_id": 561 }, - "minecraft:potted_dark_oak_sapling": { - "protocol_id": 300 + "minecraft:bread": { + "protocol_id": 773 }, - "minecraft:potted_fern": { - "protocol_id": 301 + "minecraft:brewing_stand": { + "protocol_id": 908 }, - "minecraft:potted_dandelion": { - "protocol_id": 302 + "minecraft:brick": { + "protocol_id": 826 }, - "minecraft:potted_poppy": { - "protocol_id": 303 + "minecraft:brick_slab": { + "protocol_id": 229 }, - "minecraft:potted_blue_orchid": { - "protocol_id": 304 + "minecraft:brick_stairs": { + "protocol_id": 316 }, - "minecraft:potted_allium": { - "protocol_id": 305 + "minecraft:brick_wall": { + "protocol_id": 351 }, - "minecraft:potted_azure_bluet": { - "protocol_id": 306 + "minecraft:bricks": { + "protocol_id": 244 }, - "minecraft:potted_red_tulip": { - "protocol_id": 307 + "minecraft:brown_banner": { + "protocol_id": 1037 }, - "minecraft:potted_orange_tulip": { - "protocol_id": 308 + "minecraft:brown_bed": { + "protocol_id": 881 }, - "minecraft:potted_white_tulip": { - "protocol_id": 309 + "minecraft:brown_candle": { + "protocol_id": 1138 }, - "minecraft:potted_pink_tulip": { - "protocol_id": 310 + "minecraft:brown_carpet": { + "protocol_id": 410 }, - "minecraft:potted_oxeye_daisy": { - "protocol_id": 311 + "minecraft:brown_concrete": { + "protocol_id": 519 }, - "minecraft:potted_cornflower": { - "protocol_id": 312 + "minecraft:brown_concrete_powder": { + "protocol_id": 535 }, - "minecraft:potted_lily_of_the_valley": { - "protocol_id": 313 + "minecraft:brown_dye": { + "protocol_id": 861 }, - "minecraft:potted_wither_rose": { - "protocol_id": 314 + "minecraft:brown_glazed_terracotta": { + "protocol_id": 503 }, - "minecraft:potted_red_mushroom": { - "protocol_id": 315 + "minecraft:brown_mushroom": { + "protocol_id": 197 }, - "minecraft:potted_brown_mushroom": { - "protocol_id": 316 + "minecraft:brown_mushroom_block": { + "protocol_id": 307 }, - "minecraft:potted_dead_bush": { - "protocol_id": 317 + "minecraft:brown_shulker_box": { + "protocol_id": 487 }, - "minecraft:potted_cactus": { - "protocol_id": 318 + "minecraft:brown_stained_glass": { + "protocol_id": 435 }, - "minecraft:carrots": { - "protocol_id": 319 + "minecraft:brown_stained_glass_pane": { + "protocol_id": 451 }, - "minecraft:potatoes": { - "protocol_id": 320 + "minecraft:brown_terracotta": { + "protocol_id": 391 }, - "minecraft:oak_button": { - "protocol_id": 321 + "minecraft:brown_wool": { + "protocol_id": 179 }, - "minecraft:spruce_button": { - "protocol_id": 322 + "minecraft:bubble_coral": { + "protocol_id": 552 }, - "minecraft:birch_button": { - "protocol_id": 323 + "minecraft:bubble_coral_block": { + "protocol_id": 547 }, - "minecraft:jungle_button": { - "protocol_id": 324 + "minecraft:bubble_coral_fan": { + "protocol_id": 562 }, - "minecraft:acacia_button": { - "protocol_id": 325 + "minecraft:bucket": { + "protocol_id": 813 }, - "minecraft:dark_oak_button": { - "protocol_id": 326 + "minecraft:budding_amethyst": { + "protocol_id": 67 }, - "minecraft:skeleton_skull": { - "protocol_id": 327 + "minecraft:bundle": { + "protocol_id": 835 }, - "minecraft:skeleton_wall_skull": { - "protocol_id": 328 + "minecraft:cactus": { + "protocol_id": 265 }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 329 + "minecraft:cake": { + "protocol_id": 868 }, - "minecraft:wither_skeleton_wall_skull": { - "protocol_id": 330 + "minecraft:calcite": { + "protocol_id": 11 }, - "minecraft:zombie_head": { - "protocol_id": 331 + "minecraft:campfire": { + "protocol_id": 1102 }, - "minecraft:zombie_wall_head": { - "protocol_id": 332 + "minecraft:candle": { + "protocol_id": 1125 }, - "minecraft:player_head": { - "protocol_id": 333 + "minecraft:carrot": { + "protocol_id": 990 }, - "minecraft:player_wall_head": { - "protocol_id": 334 + "minecraft:carrot_on_a_stick": { + "protocol_id": 695 }, - "minecraft:creeper_head": { - "protocol_id": 335 + "minecraft:cartography_table": { + "protocol_id": 1092 }, - "minecraft:creeper_wall_head": { - "protocol_id": 336 + "minecraft:carved_pumpkin": { + "protocol_id": 278 }, - "minecraft:dragon_head": { - "protocol_id": 337 + "minecraft:cat_spawn_egg": { + "protocol_id": 917 }, - "minecraft:dragon_wall_head": { - "protocol_id": 338 + "minecraft:cauldron": { + "protocol_id": 909 }, - "minecraft:anvil": { - "protocol_id": 339 + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 918 }, - "minecraft:chipped_anvil": { - "protocol_id": 340 + "minecraft:chain": { + "protocol_id": 311 }, - "minecraft:damaged_anvil": { - "protocol_id": 341 + "minecraft:chain_command_block": { + "protocol_id": 467 }, - "minecraft:trapped_chest": { - "protocol_id": 342 + "minecraft:chainmail_boots": { + "protocol_id": 781 }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 343 + "minecraft:chainmail_chestplate": { + "protocol_id": 779 }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 344 + "minecraft:chainmail_helmet": { + "protocol_id": 778 }, - "minecraft:comparator": { - "protocol_id": 345 + "minecraft:chainmail_leggings": { + "protocol_id": 780 }, - "minecraft:daylight_detector": { - "protocol_id": 346 + "minecraft:charcoal": { + "protocol_id": 721 }, - "minecraft:redstone_block": { - "protocol_id": 347 + "minecraft:chest": { + "protocol_id": 256 }, - "minecraft:nether_quartz_ore": { - "protocol_id": 348 + "minecraft:chest_minecart": { + "protocol_id": 691 }, - "minecraft:hopper": { - "protocol_id": 349 + "minecraft:chicken": { + "protocol_id": 894 }, - "minecraft:quartz_block": { - "protocol_id": 350 + "minecraft:chicken_spawn_egg": { + "protocol_id": 919 }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 351 + "minecraft:chipped_anvil": { + "protocol_id": 372 }, - "minecraft:quartz_pillar": { - "protocol_id": 352 + "minecraft:chiseled_deepslate": { + "protocol_id": 305 }, - "minecraft:quartz_stairs": { - "protocol_id": 353 + "minecraft:chiseled_nether_bricks": { + "protocol_id": 323 }, - "minecraft:activator_rail": { - "protocol_id": 354 + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1119 }, - "minecraft:dropper": { - "protocol_id": 355 + "minecraft:chiseled_quartz_block": { + "protocol_id": 374 }, - "minecraft:white_terracotta": { - "protocol_id": 356 + "minecraft:chiseled_red_sandstone": { + "protocol_id": 463 }, - "minecraft:orange_terracotta": { - "protocol_id": 357 + "minecraft:chiseled_sandstone": { + "protocol_id": 157 }, - "minecraft:magenta_terracotta": { - "protocol_id": 358 + "minecraft:chiseled_stone_bricks": { + "protocol_id": 298 }, - "minecraft:light_blue_terracotta": { - "protocol_id": 359 + "minecraft:chorus_flower": { + "protocol_id": 251 }, - "minecraft:yellow_terracotta": { - "protocol_id": 360 + "minecraft:chorus_fruit": { + "protocol_id": 1042 }, - "minecraft:lime_terracotta": { - "protocol_id": 361 + "minecraft:chorus_plant": { + "protocol_id": 250 }, - "minecraft:pink_terracotta": { - "protocol_id": 362 + "minecraft:clay": { + "protocol_id": 266 }, - "minecraft:gray_terracotta": { - "protocol_id": 363 + "minecraft:clay_ball": { + "protocol_id": 827 }, - "minecraft:light_gray_terracotta": { - "protocol_id": 364 + "minecraft:clock": { + "protocol_id": 837 }, - "minecraft:cyan_terracotta": { - "protocol_id": 365 + "minecraft:coal": { + "protocol_id": 720 }, - "minecraft:purple_terracotta": { - "protocol_id": 366 + "minecraft:coal_block": { + "protocol_id": 62 }, - "minecraft:blue_terracotta": { - "protocol_id": 367 + "minecraft:coal_ore": { + "protocol_id": 43 }, - "minecraft:brown_terracotta": { - "protocol_id": 368 + "minecraft:coarse_dirt": { + "protocol_id": 16 }, - "minecraft:green_terracotta": { - "protocol_id": 369 + "minecraft:cobbled_deepslate": { + "protocol_id": 9 }, - "minecraft:red_terracotta": { - "protocol_id": 370 + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 603 }, - "minecraft:black_terracotta": { - "protocol_id": 371 + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 586 }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 372 + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 367 }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 373 + "minecraft:cobblestone": { + "protocol_id": 22 }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 374 + "minecraft:cobblestone_slab": { + "protocol_id": 228 }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 375 + "minecraft:cobblestone_stairs": { + "protocol_id": 261 }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 376 + "minecraft:cobblestone_wall": { + "protocol_id": 349 }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 377 + "minecraft:cobweb": { + "protocol_id": 159 }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 378 + "minecraft:cocoa_beans": { + "protocol_id": 848 }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 379 + "minecraft:cod": { + "protocol_id": 840 }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 380 + "minecraft:cod_bucket": { + "protocol_id": 822 }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 381 + "minecraft:cod_spawn_egg": { + "protocol_id": 920 }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 382 + "minecraft:command_block": { + "protocol_id": 347 }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 383 + "minecraft:command_block_minecart": { + "protocol_id": 1022 }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 384 + "minecraft:comparator": { + "protocol_id": 612 }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 385 + "minecraft:compass": { + "protocol_id": 833 }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 386 + "minecraft:composter": { + "protocol_id": 1088 }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 387 + "minecraft:conduit": { + "protocol_id": 571 }, - "minecraft:acacia_stairs": { - "protocol_id": 388 + "minecraft:cooked_beef": { + "protocol_id": 893 }, - "minecraft:dark_oak_stairs": { - "protocol_id": 389 + "minecraft:cooked_chicken": { + "protocol_id": 895 }, - "minecraft:slime_block": { - "protocol_id": 390 + "minecraft:cooked_cod": { + "protocol_id": 844 }, - "minecraft:barrier": { - "protocol_id": 391 + "minecraft:cooked_mutton": { + "protocol_id": 1024 }, - "minecraft:light": { - "protocol_id": 392 + "minecraft:cooked_porkchop": { + "protocol_id": 800 }, - "minecraft:iron_trapdoor": { - "protocol_id": 393 + "minecraft:cooked_rabbit": { + "protocol_id": 1011 }, - "minecraft:prismarine": { - "protocol_id": 394 + "minecraft:cooked_salmon": { + "protocol_id": 845 }, - "minecraft:prismarine_bricks": { - "protocol_id": 395 + "minecraft:cookie": { + "protocol_id": 885 }, - "minecraft:dark_prismarine": { - "protocol_id": 396 + "minecraft:copper_block": { + "protocol_id": 69 }, - "minecraft:prismarine_stairs": { - "protocol_id": 397 + "minecraft:copper_ingot": { + "protocol_id": 730 }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 398 + "minecraft:copper_ore": { + "protocol_id": 47 }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 399 + "minecraft:cornflower": { + "protocol_id": 193 }, - "minecraft:prismarine_slab": { - "protocol_id": 400 + "minecraft:cow_spawn_egg": { + "protocol_id": 921 }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 401 + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 302 }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 402 + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 304 }, - "minecraft:sea_lantern": { - "protocol_id": 403 + "minecraft:cracked_nether_bricks": { + "protocol_id": 322 }, - "minecraft:hay_block": { - "protocol_id": 404 + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1123 }, - "minecraft:white_carpet": { - "protocol_id": 405 + "minecraft:cracked_stone_bricks": { + "protocol_id": 297 }, - "minecraft:orange_carpet": { - "protocol_id": 406 + "minecraft:crafting_table": { + "protocol_id": 257 }, - "minecraft:magenta_carpet": { - "protocol_id": 407 + "minecraft:creeper_banner_pattern": { + "protocol_id": 1082 }, - "minecraft:light_blue_carpet": { - "protocol_id": 408 + "minecraft:creeper_head": { + "protocol_id": 1000 }, - "minecraft:yellow_carpet": { - "protocol_id": 409 + "minecraft:creeper_spawn_egg": { + "protocol_id": 922 }, - "minecraft:lime_carpet": { - "protocol_id": 410 + "minecraft:crimson_button": { + "protocol_id": 641 }, - "minecraft:pink_carpet": { - "protocol_id": 411 + "minecraft:crimson_door": { + "protocol_id": 664 }, - "minecraft:gray_carpet": { - "protocol_id": 412 + "minecraft:crimson_fence": { + "protocol_id": 275 }, - "minecraft:light_gray_carpet": { - "protocol_id": 413 + "minecraft:crimson_fence_gate": { + "protocol_id": 683 }, - "minecraft:cyan_carpet": { - "protocol_id": 414 + "minecraft:crimson_fungus": { + "protocol_id": 199 }, - "minecraft:purple_carpet": { - "protocol_id": 415 + "minecraft:crimson_hyphae": { + "protocol_id": 140 }, - "minecraft:blue_carpet": { - "protocol_id": 416 + "minecraft:crimson_nylium": { + "protocol_id": 20 }, - "minecraft:brown_carpet": { - "protocol_id": 417 + "minecraft:crimson_planks": { + "protocol_id": 30 }, - "minecraft:green_carpet": { - "protocol_id": 418 + "minecraft:crimson_pressure_plate": { + "protocol_id": 654 }, - "minecraft:red_carpet": { - "protocol_id": 419 + "minecraft:crimson_roots": { + "protocol_id": 201 }, - "minecraft:black_carpet": { - "protocol_id": 420 + "minecraft:crimson_sign": { + "protocol_id": 811 }, - "minecraft:terracotta": { - "protocol_id": 421 + "minecraft:crimson_slab": { + "protocol_id": 221 }, - "minecraft:coal_block": { - "protocol_id": 422 + "minecraft:crimson_stairs": { + "protocol_id": 345 }, - "minecraft:packed_ice": { - "protocol_id": 423 + "minecraft:crimson_stem": { + "protocol_id": 113 }, - "minecraft:sunflower": { - "protocol_id": 424 + "minecraft:crimson_trapdoor": { + "protocol_id": 674 }, - "minecraft:lilac": { - "protocol_id": 425 + "minecraft:crossbow": { + "protocol_id": 1078 }, - "minecraft:rose_bush": { - "protocol_id": 426 + "minecraft:crying_obsidian": { + "protocol_id": 1111 }, - "minecraft:peony": { - "protocol_id": 427 + "minecraft:cut_copper": { + "protocol_id": 76 }, - "minecraft:tall_grass": { - "protocol_id": 428 + "minecraft:cut_copper_slab": { + "protocol_id": 84 }, - "minecraft:large_fern": { - "protocol_id": 429 + "minecraft:cut_copper_stairs": { + "protocol_id": 80 }, - "minecraft:white_banner": { - "protocol_id": 430 + "minecraft:cut_red_sandstone": { + "protocol_id": 464 }, - "minecraft:orange_banner": { - "protocol_id": 431 + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 235 }, - "minecraft:magenta_banner": { - "protocol_id": 432 + "minecraft:cut_sandstone": { + "protocol_id": 158 }, - "minecraft:light_blue_banner": { - "protocol_id": 433 + "minecraft:cut_sandstone_slab": { + "protocol_id": 226 }, - "minecraft:yellow_banner": { - "protocol_id": 434 + "minecraft:cyan_banner": { + "protocol_id": 1034 }, - "minecraft:lime_banner": { - "protocol_id": 435 + "minecraft:cyan_bed": { + "protocol_id": 878 }, - "minecraft:pink_banner": { - "protocol_id": 436 + "minecraft:cyan_candle": { + "protocol_id": 1135 }, - "minecraft:gray_banner": { - "protocol_id": 437 + "minecraft:cyan_carpet": { + "protocol_id": 407 }, - "minecraft:light_gray_banner": { - "protocol_id": 438 + "minecraft:cyan_concrete": { + "protocol_id": 516 }, - "minecraft:cyan_banner": { - "protocol_id": 439 - }, - "minecraft:purple_banner": { - "protocol_id": 440 + "minecraft:cyan_concrete_powder": { + "protocol_id": 532 }, - "minecraft:blue_banner": { - "protocol_id": 441 + "minecraft:cyan_dye": { + "protocol_id": 858 }, - "minecraft:brown_banner": { - "protocol_id": 442 + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 500 }, - "minecraft:green_banner": { - "protocol_id": 443 + "minecraft:cyan_shulker_box": { + "protocol_id": 484 }, - "minecraft:red_banner": { - "protocol_id": 444 + "minecraft:cyan_stained_glass": { + "protocol_id": 432 }, - "minecraft:black_banner": { - "protocol_id": 445 + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 448 }, - "minecraft:white_wall_banner": { - "protocol_id": 446 + "minecraft:cyan_terracotta": { + "protocol_id": 388 }, - "minecraft:orange_wall_banner": { - "protocol_id": 447 + "minecraft:cyan_wool": { + "protocol_id": 176 }, - "minecraft:magenta_wall_banner": { - "protocol_id": 448 + "minecraft:damaged_anvil": { + "protocol_id": 373 }, - "minecraft:light_blue_wall_banner": { - "protocol_id": 449 + "minecraft:dandelion": { + "protocol_id": 183 }, - "minecraft:yellow_wall_banner": { - "protocol_id": 450 + "minecraft:dark_oak_boat": { + "protocol_id": 708 }, - "minecraft:lime_wall_banner": { - "protocol_id": 451 + "minecraft:dark_oak_button": { + "protocol_id": 639 }, - "minecraft:pink_wall_banner": { - "protocol_id": 452 + "minecraft:dark_oak_chest_boat": { + "protocol_id": 709 }, - "minecraft:gray_wall_banner": { - "protocol_id": 453 + "minecraft:dark_oak_door": { + "protocol_id": 662 }, - "minecraft:light_gray_wall_banner": { - "protocol_id": 454 + "minecraft:dark_oak_fence": { + "protocol_id": 273 }, - "minecraft:cyan_wall_banner": { - "protocol_id": 455 + "minecraft:dark_oak_fence_gate": { + "protocol_id": 681 }, - "minecraft:purple_wall_banner": { - "protocol_id": 456 + "minecraft:dark_oak_leaves": { + "protocol_id": 147 }, - "minecraft:blue_wall_banner": { - "protocol_id": 457 + "minecraft:dark_oak_log": { + "protocol_id": 109 }, - "minecraft:brown_wall_banner": { - "protocol_id": 458 + "minecraft:dark_oak_planks": { + "protocol_id": 28 }, - "minecraft:green_wall_banner": { - "protocol_id": 459 + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 652 }, - "minecraft:red_wall_banner": { - "protocol_id": 460 + "minecraft:dark_oak_sapling": { + "protocol_id": 37 }, - "minecraft:black_wall_banner": { - "protocol_id": 461 + "minecraft:dark_oak_sign": { + "protocol_id": 809 }, - "minecraft:red_sandstone": { - "protocol_id": 462 + "minecraft:dark_oak_slab": { + "protocol_id": 219 }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 463 + "minecraft:dark_oak_stairs": { + "protocol_id": 343 }, - "minecraft:cut_red_sandstone": { - "protocol_id": 464 + "minecraft:dark_oak_trapdoor": { + "protocol_id": 672 }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 465 + "minecraft:dark_oak_wood": { + "protocol_id": 138 }, - "minecraft:oak_slab": { - "protocol_id": 466 + "minecraft:dark_prismarine": { + "protocol_id": 457 }, - "minecraft:spruce_slab": { - "protocol_id": 467 + "minecraft:dark_prismarine_slab": { + "protocol_id": 239 }, - "minecraft:birch_slab": { - "protocol_id": 468 + "minecraft:dark_prismarine_stairs": { + "protocol_id": 460 }, - "minecraft:jungle_slab": { - "protocol_id": 469 + "minecraft:daylight_detector": { + "protocol_id": 625 }, - "minecraft:acacia_slab": { - "protocol_id": 470 + "minecraft:dead_brain_coral": { + "protocol_id": 555 }, - "minecraft:dark_oak_slab": { - "protocol_id": 471 + "minecraft:dead_brain_coral_block": { + "protocol_id": 541 }, - "minecraft:stone_slab": { - "protocol_id": 472 + "minecraft:dead_brain_coral_fan": { + "protocol_id": 566 }, - "minecraft:smooth_stone_slab": { - "protocol_id": 473 + "minecraft:dead_bubble_coral": { + "protocol_id": 556 }, - "minecraft:sandstone_slab": { - "protocol_id": 474 + "minecraft:dead_bubble_coral_block": { + "protocol_id": 542 }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 475 + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 567 }, - "minecraft:petrified_oak_slab": { - "protocol_id": 476 + "minecraft:dead_bush": { + "protocol_id": 164 }, - "minecraft:cobblestone_slab": { - "protocol_id": 477 + "minecraft:dead_fire_coral": { + "protocol_id": 557 }, - "minecraft:brick_slab": { - "protocol_id": 478 + "minecraft:dead_fire_coral_block": { + "protocol_id": 543 }, - "minecraft:stone_brick_slab": { - "protocol_id": 479 + "minecraft:dead_fire_coral_fan": { + "protocol_id": 568 }, - "minecraft:nether_brick_slab": { - "protocol_id": 480 + "minecraft:dead_horn_coral": { + "protocol_id": 558 }, - "minecraft:quartz_slab": { - "protocol_id": 481 + "minecraft:dead_horn_coral_block": { + "protocol_id": 544 }, - "minecraft:red_sandstone_slab": { - "protocol_id": 482 + "minecraft:dead_horn_coral_fan": { + "protocol_id": 569 }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 483 + "minecraft:dead_tube_coral": { + "protocol_id": 559 }, - "minecraft:purpur_slab": { - "protocol_id": 484 + "minecraft:dead_tube_coral_block": { + "protocol_id": 540 }, - "minecraft:smooth_stone": { - "protocol_id": 485 + "minecraft:dead_tube_coral_fan": { + "protocol_id": 565 }, - "minecraft:smooth_sandstone": { - "protocol_id": 486 + "minecraft:debug_stick": { + "protocol_id": 1057 }, - "minecraft:smooth_quartz": { - "protocol_id": 487 + "minecraft:deepslate": { + "protocol_id": 8 }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 488 + "minecraft:deepslate_brick_slab": { + "protocol_id": 605 }, - "minecraft:spruce_fence_gate": { - "protocol_id": 489 + "minecraft:deepslate_brick_stairs": { + "protocol_id": 588 }, - "minecraft:birch_fence_gate": { - "protocol_id": 490 + "minecraft:deepslate_brick_wall": { + "protocol_id": 369 }, - "minecraft:jungle_fence_gate": { - "protocol_id": 491 + "minecraft:deepslate_bricks": { + "protocol_id": 301 }, - "minecraft:acacia_fence_gate": { - "protocol_id": 492 + "minecraft:deepslate_coal_ore": { + "protocol_id": 44 }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 493 + "minecraft:deepslate_copper_ore": { + "protocol_id": 48 }, - "minecraft:spruce_fence": { - "protocol_id": 494 + "minecraft:deepslate_diamond_ore": { + "protocol_id": 58 }, - "minecraft:birch_fence": { - "protocol_id": 495 + "minecraft:deepslate_emerald_ore": { + "protocol_id": 54 }, - "minecraft:jungle_fence": { - "protocol_id": 496 + "minecraft:deepslate_gold_ore": { + "protocol_id": 50 }, - "minecraft:acacia_fence": { - "protocol_id": 497 + "minecraft:deepslate_iron_ore": { + "protocol_id": 46 }, - "minecraft:dark_oak_fence": { - "protocol_id": 498 + "minecraft:deepslate_lapis_ore": { + "protocol_id": 56 }, - "minecraft:spruce_door": { - "protocol_id": 499 + "minecraft:deepslate_redstone_ore": { + "protocol_id": 52 }, - "minecraft:birch_door": { - "protocol_id": 500 + "minecraft:deepslate_tile_slab": { + "protocol_id": 606 }, - "minecraft:jungle_door": { - "protocol_id": 501 + "minecraft:deepslate_tile_stairs": { + "protocol_id": 589 }, - "minecraft:acacia_door": { - "protocol_id": 502 + "minecraft:deepslate_tile_wall": { + "protocol_id": 370 }, - "minecraft:dark_oak_door": { - "protocol_id": 503 + "minecraft:deepslate_tiles": { + "protocol_id": 303 }, - "minecraft:end_rod": { - "protocol_id": 504 + "minecraft:detector_rail": { + "protocol_id": 686 }, - "minecraft:chorus_plant": { - "protocol_id": 505 + "minecraft:diamond": { + "protocol_id": 722 }, - "minecraft:chorus_flower": { - "protocol_id": 506 + "minecraft:diamond_axe": { + "protocol_id": 758 }, - "minecraft:purpur_block": { - "protocol_id": 507 + "minecraft:diamond_block": { + "protocol_id": 71 }, - "minecraft:purpur_pillar": { - "protocol_id": 508 + "minecraft:diamond_boots": { + "protocol_id": 789 }, - "minecraft:purpur_stairs": { - "protocol_id": 509 + "minecraft:diamond_chestplate": { + "protocol_id": 787 }, - "minecraft:end_stone_bricks": { - "protocol_id": 510 + "minecraft:diamond_helmet": { + "protocol_id": 786 }, - "minecraft:beetroots": { - "protocol_id": 511 + "minecraft:diamond_hoe": { + "protocol_id": 759 }, - "minecraft:dirt_path": { - "protocol_id": 512 + "minecraft:diamond_horse_armor": { + "protocol_id": 1018 }, - "minecraft:end_gateway": { - "protocol_id": 513 + "minecraft:diamond_leggings": { + "protocol_id": 788 }, - "minecraft:repeating_command_block": { - "protocol_id": 514 + "minecraft:diamond_ore": { + "protocol_id": 57 }, - "minecraft:chain_command_block": { - "protocol_id": 515 + "minecraft:diamond_pickaxe": { + "protocol_id": 757 }, - "minecraft:frosted_ice": { - "protocol_id": 516 + "minecraft:diamond_shovel": { + "protocol_id": 756 }, - "minecraft:magma_block": { - "protocol_id": 517 + "minecraft:diamond_sword": { + "protocol_id": 755 }, - "minecraft:nether_wart_block": { - "protocol_id": 518 + "minecraft:diorite": { + "protocol_id": 4 }, - "minecraft:red_nether_bricks": { - "protocol_id": 519 + "minecraft:diorite_slab": { + "protocol_id": 602 }, - "minecraft:bone_block": { - "protocol_id": 520 + "minecraft:diorite_stairs": { + "protocol_id": 585 }, - "minecraft:structure_void": { - "protocol_id": 521 + "minecraft:diorite_wall": { + "protocol_id": 363 }, - "minecraft:observer": { - "protocol_id": 522 + "minecraft:dirt": { + "protocol_id": 15 }, - "minecraft:shulker_box": { - "protocol_id": 523 + "minecraft:dirt_path": { + "protocol_id": 416 }, - "minecraft:white_shulker_box": { - "protocol_id": 524 + "minecraft:disc_fragment_5": { + "protocol_id": 1073 }, - "minecraft:orange_shulker_box": { - "protocol_id": 525 + "minecraft:dispenser": { + "protocol_id": 619 }, - "minecraft:magenta_shulker_box": { - "protocol_id": 526 + "minecraft:dolphin_spawn_egg": { + "protocol_id": 923 }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 527 + "minecraft:donkey_spawn_egg": { + "protocol_id": 924 }, - "minecraft:yellow_shulker_box": { - "protocol_id": 528 + "minecraft:dragon_breath": { + "protocol_id": 1047 }, - "minecraft:lime_shulker_box": { - "protocol_id": 529 + "minecraft:dragon_egg": { + "protocol_id": 334 }, - "minecraft:pink_shulker_box": { - "protocol_id": 530 + "minecraft:dragon_head": { + "protocol_id": 1001 }, - "minecraft:gray_shulker_box": { - "protocol_id": 531 + "minecraft:dried_kelp": { + "protocol_id": 889 }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 532 + "minecraft:dried_kelp_block": { + "protocol_id": 828 }, - "minecraft:cyan_shulker_box": { - "protocol_id": 533 + "minecraft:dripstone_block": { + "protocol_id": 13 }, - "minecraft:purple_shulker_box": { - "protocol_id": 534 + "minecraft:dropper": { + "protocol_id": 620 }, - "minecraft:blue_shulker_box": { - "protocol_id": 535 + "minecraft:drowned_spawn_egg": { + "protocol_id": 925 }, - "minecraft:brown_shulker_box": { - "protocol_id": 536 + "minecraft:echo_shard": { + "protocol_id": 1151 }, - "minecraft:green_shulker_box": { - "protocol_id": 537 + "minecraft:egg": { + "protocol_id": 832 }, - "minecraft:red_shulker_box": { - "protocol_id": 538 + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 926 }, - "minecraft:black_shulker_box": { - "protocol_id": 539 + "minecraft:elytra": { + "protocol_id": 697 }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 540 + "minecraft:emerald": { + "protocol_id": 723 }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 541 + "minecraft:emerald_block": { + "protocol_id": 337 }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 542 + "minecraft:emerald_ore": { + "protocol_id": 53 }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 543 + "minecraft:enchanted_book": { + "protocol_id": 1006 }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 544 + "minecraft:enchanted_golden_apple": { + "protocol_id": 803 }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 545 + "minecraft:enchanting_table": { + "protocol_id": 330 }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 546 + "minecraft:end_crystal": { + "protocol_id": 1041 }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 547 + "minecraft:end_portal_frame": { + "protocol_id": 331 }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 548 + "minecraft:end_rod": { + "protocol_id": 249 }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 549 + "minecraft:end_stone": { + "protocol_id": 332 }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 550 + "minecraft:end_stone_brick_slab": { + "protocol_id": 595 }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 551 + "minecraft:end_stone_brick_stairs": { + "protocol_id": 577 }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 552 + "minecraft:end_stone_brick_wall": { + "protocol_id": 362 }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 553 + "minecraft:end_stone_bricks": { + "protocol_id": 333 }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 554 + "minecraft:ender_chest": { + "protocol_id": 336 }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 555 + "minecraft:ender_eye": { + "protocol_id": 910 }, - "minecraft:white_concrete": { - "protocol_id": 556 + "minecraft:ender_pearl": { + "protocol_id": 897 }, - "minecraft:orange_concrete": { - "protocol_id": 557 + "minecraft:enderman_spawn_egg": { + "protocol_id": 927 }, - "minecraft:magenta_concrete": { - "protocol_id": 558 + "minecraft:endermite_spawn_egg": { + "protocol_id": 928 }, - "minecraft:light_blue_concrete": { - "protocol_id": 559 + "minecraft:evoker_spawn_egg": { + "protocol_id": 929 }, - "minecraft:yellow_concrete": { - "protocol_id": 560 + "minecraft:experience_bottle": { + "protocol_id": 983 }, - "minecraft:lime_concrete": { - "protocol_id": 561 + "minecraft:exposed_copper": { + "protocol_id": 73 }, - "minecraft:pink_concrete": { - "protocol_id": 562 + "minecraft:exposed_cut_copper": { + "protocol_id": 77 }, - "minecraft:gray_concrete": { - "protocol_id": 563 + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 85 }, - "minecraft:light_gray_concrete": { - "protocol_id": 564 + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 81 }, - "minecraft:cyan_concrete": { - "protocol_id": 565 + "minecraft:farmland": { + "protocol_id": 258 }, - "minecraft:purple_concrete": { - "protocol_id": 566 + "minecraft:feather": { + "protocol_id": 769 }, - "minecraft:blue_concrete": { - "protocol_id": 567 + "minecraft:fermented_spider_eye": { + "protocol_id": 905 }, - "minecraft:brown_concrete": { - "protocol_id": 568 + "minecraft:fern": { + "protocol_id": 161 }, - "minecraft:green_concrete": { - "protocol_id": 569 + "minecraft:filled_map": { + "protocol_id": 886 }, - "minecraft:red_concrete": { - "protocol_id": 570 + "minecraft:fire_charge": { + "protocol_id": 984 }, - "minecraft:black_concrete": { - "protocol_id": 571 + "minecraft:fire_coral": { + "protocol_id": 553 }, - "minecraft:white_concrete_powder": { - "protocol_id": 572 + "minecraft:fire_coral_block": { + "protocol_id": 548 }, - "minecraft:orange_concrete_powder": { - "protocol_id": 573 + "minecraft:fire_coral_fan": { + "protocol_id": 563 }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 574 + "minecraft:firework_rocket": { + "protocol_id": 1004 }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 575 + "minecraft:firework_star": { + "protocol_id": 1005 }, - "minecraft:yellow_concrete_powder": { - "protocol_id": 576 + "minecraft:fishing_rod": { + "protocol_id": 836 }, - "minecraft:lime_concrete_powder": { - "protocol_id": 577 + "minecraft:fletching_table": { + "protocol_id": 1093 }, - "minecraft:pink_concrete_powder": { - "protocol_id": 578 + "minecraft:flint": { + "protocol_id": 798 }, - "minecraft:gray_concrete_powder": { - "protocol_id": 579 + "minecraft:flint_and_steel": { + "protocol_id": 716 }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 580 + "minecraft:flower_banner_pattern": { + "protocol_id": 1081 }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 581 + "minecraft:flower_pot": { + "protocol_id": 989 }, - "minecraft:purple_concrete_powder": { - "protocol_id": 582 + "minecraft:flowering_azalea": { + "protocol_id": 163 }, - "minecraft:blue_concrete_powder": { - "protocol_id": 583 + "minecraft:flowering_azalea_leaves": { + "protocol_id": 150 }, - "minecraft:brown_concrete_powder": { - "protocol_id": 584 + "minecraft:fox_spawn_egg": { + "protocol_id": 930 }, - "minecraft:green_concrete_powder": { - "protocol_id": 585 + "minecraft:frog_spawn_egg": { + "protocol_id": 931 }, - "minecraft:red_concrete_powder": { - "protocol_id": 586 + "minecraft:frogspawn": { + "protocol_id": 1150 }, - "minecraft:black_concrete_powder": { - "protocol_id": 587 + "minecraft:furnace": { + "protocol_id": 259 }, - "minecraft:kelp": { - "protocol_id": 588 + "minecraft:furnace_minecart": { + "protocol_id": 692 }, - "minecraft:kelp_plant": { - "protocol_id": 589 + "minecraft:ghast_spawn_egg": { + "protocol_id": 932 }, - "minecraft:dried_kelp_block": { - "protocol_id": 590 + "minecraft:ghast_tear": { + "protocol_id": 899 }, - "minecraft:turtle_egg": { - "protocol_id": 591 + "minecraft:gilded_blackstone": { + "protocol_id": 1115 }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 592 + "minecraft:glass": { + "protocol_id": 153 }, - "minecraft:dead_brain_coral_block": { - "protocol_id": 593 + "minecraft:glass_bottle": { + "protocol_id": 903 }, - "minecraft:dead_bubble_coral_block": { - "protocol_id": 594 + "minecraft:glass_pane": { + "protocol_id": 312 }, - "minecraft:dead_fire_coral_block": { - "protocol_id": 595 + "minecraft:glistering_melon_slice": { + "protocol_id": 911 }, - "minecraft:dead_horn_coral_block": { - "protocol_id": 596 + "minecraft:globe_banner_pattern": { + "protocol_id": 1085 }, - "minecraft:tube_coral_block": { - "protocol_id": 597 + "minecraft:glow_berries": { + "protocol_id": 1101 }, - "minecraft:brain_coral_block": { - "protocol_id": 598 + "minecraft:glow_ink_sac": { + "protocol_id": 847 }, - "minecraft:bubble_coral_block": { - "protocol_id": 599 + "minecraft:glow_item_frame": { + "protocol_id": 988 }, - "minecraft:fire_coral_block": { - "protocol_id": 600 + "minecraft:glow_lichen": { + "protocol_id": 315 }, - "minecraft:horn_coral_block": { - "protocol_id": 601 + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 933 }, - "minecraft:dead_tube_coral": { - "protocol_id": 602 + "minecraft:glowstone": { + "protocol_id": 287 }, - "minecraft:dead_brain_coral": { - "protocol_id": 603 + "minecraft:glowstone_dust": { + "protocol_id": 839 }, - "minecraft:dead_bubble_coral": { - "protocol_id": 604 + "minecraft:goat_horn": { + "protocol_id": 1087 }, - "minecraft:dead_fire_coral": { - "protocol_id": 605 + "minecraft:goat_spawn_egg": { + "protocol_id": 934 }, - "minecraft:dead_horn_coral": { - "protocol_id": 606 + "minecraft:gold_block": { + "protocol_id": 70 }, - "minecraft:tube_coral": { - "protocol_id": 607 + "minecraft:gold_ingot": { + "protocol_id": 732 }, - "minecraft:brain_coral": { - "protocol_id": 608 + "minecraft:gold_nugget": { + "protocol_id": 900 }, - "minecraft:bubble_coral": { - "protocol_id": 609 + "minecraft:gold_ore": { + "protocol_id": 49 }, - "minecraft:fire_coral": { - "protocol_id": 610 + "minecraft:golden_apple": { + "protocol_id": 802 }, - "minecraft:horn_coral": { - "protocol_id": 611 + "minecraft:golden_axe": { + "protocol_id": 748 }, - "minecraft:dead_tube_coral_fan": { - "protocol_id": 612 + "minecraft:golden_boots": { + "protocol_id": 793 }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 613 + "minecraft:golden_carrot": { + "protocol_id": 995 }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 614 + "minecraft:golden_chestplate": { + "protocol_id": 791 }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 615 + "minecraft:golden_helmet": { + "protocol_id": 790 }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 616 + "minecraft:golden_hoe": { + "protocol_id": 749 }, - "minecraft:tube_coral_fan": { - "protocol_id": 617 + "minecraft:golden_horse_armor": { + "protocol_id": 1017 }, - "minecraft:brain_coral_fan": { - "protocol_id": 618 + "minecraft:golden_leggings": { + "protocol_id": 792 }, - "minecraft:bubble_coral_fan": { - "protocol_id": 619 + "minecraft:golden_pickaxe": { + "protocol_id": 747 }, - "minecraft:fire_coral_fan": { - "protocol_id": 620 + "minecraft:golden_shovel": { + "protocol_id": 746 }, - "minecraft:horn_coral_fan": { - "protocol_id": 621 + "minecraft:golden_sword": { + "protocol_id": 745 }, - "minecraft:dead_tube_coral_wall_fan": { - "protocol_id": 622 + "minecraft:granite": { + "protocol_id": 2 }, - "minecraft:dead_brain_coral_wall_fan": { - "protocol_id": 623 + "minecraft:granite_slab": { + "protocol_id": 598 }, - "minecraft:dead_bubble_coral_wall_fan": { - "protocol_id": 624 + "minecraft:granite_stairs": { + "protocol_id": 581 }, - "minecraft:dead_fire_coral_wall_fan": { - "protocol_id": 625 + "minecraft:granite_wall": { + "protocol_id": 355 }, - "minecraft:dead_horn_coral_wall_fan": { - "protocol_id": 626 + "minecraft:grass": { + "protocol_id": 160 }, - "minecraft:tube_coral_wall_fan": { - "protocol_id": 627 + "minecraft:grass_block": { + "protocol_id": 14 }, - "minecraft:brain_coral_wall_fan": { - "protocol_id": 628 + "minecraft:gravel": { + "protocol_id": 42 }, - "minecraft:bubble_coral_wall_fan": { - "protocol_id": 629 + "minecraft:gray_banner": { + "protocol_id": 1032 }, - "minecraft:fire_coral_wall_fan": { - "protocol_id": 630 + "minecraft:gray_bed": { + "protocol_id": 876 }, - "minecraft:horn_coral_wall_fan": { - "protocol_id": 631 + "minecraft:gray_candle": { + "protocol_id": 1133 }, - "minecraft:sea_pickle": { - "protocol_id": 632 + "minecraft:gray_carpet": { + "protocol_id": 405 }, - "minecraft:blue_ice": { - "protocol_id": 633 + "minecraft:gray_concrete": { + "protocol_id": 514 }, - "minecraft:conduit": { - "protocol_id": 634 + "minecraft:gray_concrete_powder": { + "protocol_id": 530 }, - "minecraft:bamboo_sapling": { - "protocol_id": 635 + "minecraft:gray_dye": { + "protocol_id": 856 }, - "minecraft:bamboo": { - "protocol_id": 636 + "minecraft:gray_glazed_terracotta": { + "protocol_id": 498 }, - "minecraft:potted_bamboo": { - "protocol_id": 637 + "minecraft:gray_shulker_box": { + "protocol_id": 482 }, - "minecraft:void_air": { - "protocol_id": 638 + "minecraft:gray_stained_glass": { + "protocol_id": 430 }, - "minecraft:cave_air": { - "protocol_id": 639 + "minecraft:gray_stained_glass_pane": { + "protocol_id": 446 }, - "minecraft:bubble_column": { - "protocol_id": 640 + "minecraft:gray_terracotta": { + "protocol_id": 386 }, - "minecraft:polished_granite_stairs": { - "protocol_id": 641 + "minecraft:gray_wool": { + "protocol_id": 174 }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 642 + "minecraft:green_banner": { + "protocol_id": 1038 }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 643 + "minecraft:green_bed": { + "protocol_id": 882 }, - "minecraft:polished_diorite_stairs": { - "protocol_id": 644 + "minecraft:green_candle": { + "protocol_id": 1139 }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 645 + "minecraft:green_carpet": { + "protocol_id": 411 }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 646 + "minecraft:green_concrete": { + "protocol_id": 520 }, - "minecraft:stone_stairs": { - "protocol_id": 647 + "minecraft:green_concrete_powder": { + "protocol_id": 536 }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 648 + "minecraft:green_dye": { + "protocol_id": 862 }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 649 + "minecraft:green_glazed_terracotta": { + "protocol_id": 504 }, - "minecraft:granite_stairs": { - "protocol_id": 650 + "minecraft:green_shulker_box": { + "protocol_id": 488 }, - "minecraft:andesite_stairs": { - "protocol_id": 651 + "minecraft:green_stained_glass": { + "protocol_id": 436 }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 652 + "minecraft:green_stained_glass_pane": { + "protocol_id": 452 }, - "minecraft:polished_andesite_stairs": { - "protocol_id": 653 + "minecraft:green_terracotta": { + "protocol_id": 392 }, - "minecraft:diorite_stairs": { - "protocol_id": 654 + "minecraft:green_wool": { + "protocol_id": 180 }, - "minecraft:polished_granite_slab": { - "protocol_id": 655 + "minecraft:grindstone": { + "protocol_id": 1094 }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 656 + "minecraft:guardian_spawn_egg": { + "protocol_id": 935 }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 657 + "minecraft:gunpowder": { + "protocol_id": 770 }, - "minecraft:polished_diorite_slab": { - "protocol_id": 658 + "minecraft:hanging_roots": { + "protocol_id": 210 }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 659 + "minecraft:hay_block": { + "protocol_id": 397 }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 660 + "minecraft:heart_of_the_sea": { + "protocol_id": 1077 }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 661 + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 646 }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 662 + "minecraft:hoglin_spawn_egg": { + "protocol_id": 936 }, - "minecraft:granite_slab": { - "protocol_id": 663 + "minecraft:honey_block": { + "protocol_id": 616 }, - "minecraft:andesite_slab": { - "protocol_id": 664 + "minecraft:honey_bottle": { + "protocol_id": 1108 }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 665 + "minecraft:honeycomb": { + "protocol_id": 1105 }, - "minecraft:polished_andesite_slab": { - "protocol_id": 666 + "minecraft:honeycomb_block": { + "protocol_id": 1109 }, - "minecraft:diorite_slab": { - "protocol_id": 667 + "minecraft:hopper": { + "protocol_id": 618 }, - "minecraft:brick_wall": { - "protocol_id": 668 + "minecraft:hopper_minecart": { + "protocol_id": 694 }, - "minecraft:prismarine_wall": { - "protocol_id": 669 + "minecraft:horn_coral": { + "protocol_id": 554 }, - "minecraft:red_sandstone_wall": { - "protocol_id": 670 + "minecraft:horn_coral_block": { + "protocol_id": 549 }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 671 + "minecraft:horn_coral_fan": { + "protocol_id": 564 }, - "minecraft:granite_wall": { - "protocol_id": 672 + "minecraft:horse_spawn_egg": { + "protocol_id": 937 }, - "minecraft:stone_brick_wall": { - "protocol_id": 673 + "minecraft:husk_spawn_egg": { + "protocol_id": 938 }, - "minecraft:nether_brick_wall": { - "protocol_id": 674 + "minecraft:ice": { + "protocol_id": 263 }, - "minecraft:andesite_wall": { - "protocol_id": 675 + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 293 }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 676 + "minecraft:infested_cobblestone": { + "protocol_id": 289 }, - "minecraft:sandstone_wall": { - "protocol_id": 677 + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 292 }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 678 + "minecraft:infested_deepslate": { + "protocol_id": 294 }, - "minecraft:diorite_wall": { - "protocol_id": 679 + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 291 }, - "minecraft:scaffolding": { - "protocol_id": 680 + "minecraft:infested_stone": { + "protocol_id": 288 }, - "minecraft:loom": { - "protocol_id": 681 + "minecraft:infested_stone_bricks": { + "protocol_id": 290 }, - "minecraft:barrel": { - "protocol_id": 682 + "minecraft:ink_sac": { + "protocol_id": 846 }, - "minecraft:smoker": { - "protocol_id": 683 + "minecraft:iron_axe": { + "protocol_id": 753 }, - "minecraft:blast_furnace": { - "protocol_id": 684 + "minecraft:iron_bars": { + "protocol_id": 310 }, - "minecraft:cartography_table": { - "protocol_id": 685 + "minecraft:iron_block": { + "protocol_id": 68 }, - "minecraft:fletching_table": { - "protocol_id": 686 + "minecraft:iron_boots": { + "protocol_id": 785 }, - "minecraft:grindstone": { - "protocol_id": 687 + "minecraft:iron_chestplate": { + "protocol_id": 783 }, - "minecraft:lectern": { - "protocol_id": 688 + "minecraft:iron_door": { + "protocol_id": 656 }, - "minecraft:smithing_table": { - "protocol_id": 689 + "minecraft:iron_helmet": { + "protocol_id": 782 }, - "minecraft:stonecutter": { - "protocol_id": 690 + "minecraft:iron_hoe": { + "protocol_id": 754 }, - "minecraft:bell": { - "protocol_id": 691 + "minecraft:iron_horse_armor": { + "protocol_id": 1016 }, - "minecraft:lantern": { - "protocol_id": 692 + "minecraft:iron_ingot": { + "protocol_id": 728 }, - "minecraft:soul_lantern": { - "protocol_id": 693 + "minecraft:iron_leggings": { + "protocol_id": 784 }, - "minecraft:campfire": { - "protocol_id": 694 + "minecraft:iron_nugget": { + "protocol_id": 1055 }, - "minecraft:soul_campfire": { - "protocol_id": 695 + "minecraft:iron_ore": { + "protocol_id": 45 }, - "minecraft:sweet_berry_bush": { - "protocol_id": 696 + "minecraft:iron_pickaxe": { + "protocol_id": 752 }, - "minecraft:warped_stem": { - "protocol_id": 697 + "minecraft:iron_shovel": { + "protocol_id": 751 }, - "minecraft:stripped_warped_stem": { - "protocol_id": 698 + "minecraft:iron_sword": { + "protocol_id": 750 }, - "minecraft:warped_hyphae": { - "protocol_id": 699 + "minecraft:iron_trapdoor": { + "protocol_id": 666 }, - "minecraft:stripped_warped_hyphae": { - "protocol_id": 700 + "minecraft:item_frame": { + "protocol_id": 987 }, - "minecraft:warped_nylium": { - "protocol_id": 701 + "minecraft:jack_o_lantern": { + "protocol_id": 279 }, - "minecraft:warped_fungus": { - "protocol_id": 702 + "minecraft:jigsaw": { + "protocol_id": 713 }, - "minecraft:warped_wart_block": { - "protocol_id": 703 + "minecraft:jukebox": { + "protocol_id": 267 }, - "minecraft:warped_roots": { + "minecraft:jungle_boat": { "protocol_id": 704 }, - "minecraft:nether_sprouts": { + "minecraft:jungle_button": { + "protocol_id": 637 + }, + "minecraft:jungle_chest_boat": { "protocol_id": 705 }, - "minecraft:crimson_stem": { - "protocol_id": 706 + "minecraft:jungle_door": { + "protocol_id": 660 }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 707 + "minecraft:jungle_fence": { + "protocol_id": 271 }, - "minecraft:crimson_hyphae": { - "protocol_id": 708 + "minecraft:jungle_fence_gate": { + "protocol_id": 679 }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 709 + "minecraft:jungle_leaves": { + "protocol_id": 145 }, - "minecraft:crimson_nylium": { - "protocol_id": 710 + "minecraft:jungle_log": { + "protocol_id": 107 }, - "minecraft:crimson_fungus": { - "protocol_id": 711 + "minecraft:jungle_planks": { + "protocol_id": 26 }, - "minecraft:shroomlight": { - "protocol_id": 712 + "minecraft:jungle_pressure_plate": { + "protocol_id": 650 }, - "minecraft:weeping_vines": { - "protocol_id": 713 + "minecraft:jungle_sapling": { + "protocol_id": 35 }, - "minecraft:weeping_vines_plant": { - "protocol_id": 714 + "minecraft:jungle_sign": { + "protocol_id": 807 }, - "minecraft:twisting_vines": { - "protocol_id": 715 + "minecraft:jungle_slab": { + "protocol_id": 217 }, - "minecraft:twisting_vines_plant": { - "protocol_id": 716 + "minecraft:jungle_stairs": { + "protocol_id": 341 }, - "minecraft:crimson_roots": { - "protocol_id": 717 + "minecraft:jungle_trapdoor": { + "protocol_id": 670 }, - "minecraft:crimson_planks": { - "protocol_id": 718 + "minecraft:jungle_wood": { + "protocol_id": 136 }, - "minecraft:warped_planks": { - "protocol_id": 719 + "minecraft:kelp": { + "protocol_id": 207 }, - "minecraft:crimson_slab": { - "protocol_id": 720 + "minecraft:knowledge_book": { + "protocol_id": 1056 }, - "minecraft:warped_slab": { - "protocol_id": 721 + "minecraft:ladder": { + "protocol_id": 260 }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 722 + "minecraft:lantern": { + "protocol_id": 1098 }, - "minecraft:warped_pressure_plate": { - "protocol_id": 723 + "minecraft:lapis_block": { + "protocol_id": 155 }, - "minecraft:crimson_fence": { + "minecraft:lapis_lazuli": { "protocol_id": 724 }, - "minecraft:warped_fence": { - "protocol_id": 725 + "minecraft:lapis_ore": { + "protocol_id": 55 }, - "minecraft:crimson_trapdoor": { - "protocol_id": 726 + "minecraft:large_amethyst_bud": { + "protocol_id": 1144 }, - "minecraft:warped_trapdoor": { - "protocol_id": 727 + "minecraft:large_fern": { + "protocol_id": 422 }, - "minecraft:crimson_fence_gate": { - "protocol_id": 728 + "minecraft:lava_bucket": { + "protocol_id": 815 }, - "minecraft:warped_fence_gate": { - "protocol_id": 729 + "minecraft:lead": { + "protocol_id": 1020 }, - "minecraft:crimson_stairs": { - "protocol_id": 730 + "minecraft:leather": { + "protocol_id": 818 }, - "minecraft:warped_stairs": { - "protocol_id": 731 + "minecraft:leather_boots": { + "protocol_id": 777 }, - "minecraft:crimson_button": { - "protocol_id": 732 + "minecraft:leather_chestplate": { + "protocol_id": 775 }, - "minecraft:warped_button": { - "protocol_id": 733 + "minecraft:leather_helmet": { + "protocol_id": 774 }, - "minecraft:crimson_door": { - "protocol_id": 734 + "minecraft:leather_horse_armor": { + "protocol_id": 1019 }, - "minecraft:warped_door": { - "protocol_id": 735 + "minecraft:leather_leggings": { + "protocol_id": 776 }, - "minecraft:crimson_sign": { - "protocol_id": 736 + "minecraft:lectern": { + "protocol_id": 621 }, - "minecraft:warped_sign": { - "protocol_id": 737 + "minecraft:lever": { + "protocol_id": 623 }, - "minecraft:crimson_wall_sign": { - "protocol_id": 738 + "minecraft:light": { + "protocol_id": 396 }, - "minecraft:warped_wall_sign": { - "protocol_id": 739 + "minecraft:light_blue_banner": { + "protocol_id": 1028 }, - "minecraft:structure_block": { - "protocol_id": 740 + "minecraft:light_blue_bed": { + "protocol_id": 872 }, - "minecraft:jigsaw": { - "protocol_id": 741 + "minecraft:light_blue_candle": { + "protocol_id": 1129 }, - "minecraft:composter": { - "protocol_id": 742 + "minecraft:light_blue_carpet": { + "protocol_id": 401 }, - "minecraft:target": { - "protocol_id": 743 + "minecraft:light_blue_concrete": { + "protocol_id": 510 }, - "minecraft:bee_nest": { - "protocol_id": 744 + "minecraft:light_blue_concrete_powder": { + "protocol_id": 526 }, - "minecraft:beehive": { - "protocol_id": 745 + "minecraft:light_blue_dye": { + "protocol_id": 852 }, - "minecraft:honey_block": { - "protocol_id": 746 + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 494 }, - "minecraft:honeycomb_block": { - "protocol_id": 747 + "minecraft:light_blue_shulker_box": { + "protocol_id": 478 }, - "minecraft:netherite_block": { - "protocol_id": 748 + "minecraft:light_blue_stained_glass": { + "protocol_id": 426 }, - "minecraft:ancient_debris": { - "protocol_id": 749 + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 442 }, - "minecraft:crying_obsidian": { - "protocol_id": 750 + "minecraft:light_blue_terracotta": { + "protocol_id": 382 }, - "minecraft:respawn_anchor": { - "protocol_id": 751 + "minecraft:light_blue_wool": { + "protocol_id": 170 }, - "minecraft:potted_crimson_fungus": { - "protocol_id": 752 + "minecraft:light_gray_banner": { + "protocol_id": 1033 }, - "minecraft:potted_warped_fungus": { - "protocol_id": 753 + "minecraft:light_gray_bed": { + "protocol_id": 877 }, - "minecraft:potted_crimson_roots": { - "protocol_id": 754 + "minecraft:light_gray_candle": { + "protocol_id": 1134 }, - "minecraft:potted_warped_roots": { - "protocol_id": 755 + "minecraft:light_gray_carpet": { + "protocol_id": 406 }, - "minecraft:lodestone": { - "protocol_id": 756 + "minecraft:light_gray_concrete": { + "protocol_id": 515 }, - "minecraft:blackstone": { - "protocol_id": 757 + "minecraft:light_gray_concrete_powder": { + "protocol_id": 531 }, - "minecraft:blackstone_stairs": { - "protocol_id": 758 + "minecraft:light_gray_dye": { + "protocol_id": 857 }, - "minecraft:blackstone_wall": { - "protocol_id": 759 + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 499 }, - "minecraft:blackstone_slab": { - "protocol_id": 760 + "minecraft:light_gray_shulker_box": { + "protocol_id": 483 }, - "minecraft:polished_blackstone": { - "protocol_id": 761 + "minecraft:light_gray_stained_glass": { + "protocol_id": 431 }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 762 + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 447 }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 763 + "minecraft:light_gray_terracotta": { + "protocol_id": 387 }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 764 + "minecraft:light_gray_wool": { + "protocol_id": 175 }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 765 + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 645 }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 766 + "minecraft:lightning_rod": { + "protocol_id": 624 }, - "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 767 + "minecraft:lilac": { + "protocol_id": 418 }, - "minecraft:gilded_blackstone": { - "protocol_id": 768 + "minecraft:lily_of_the_valley": { + "protocol_id": 194 }, - "minecraft:polished_blackstone_stairs": { - "protocol_id": 769 + "minecraft:lily_pad": { + "protocol_id": 320 }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 770 + "minecraft:lime_banner": { + "protocol_id": 1030 }, - "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 771 + "minecraft:lime_bed": { + "protocol_id": 874 }, - "minecraft:polished_blackstone_button": { - "protocol_id": 772 + "minecraft:lime_candle": { + "protocol_id": 1131 }, - "minecraft:polished_blackstone_wall": { - "protocol_id": 773 + "minecraft:lime_carpet": { + "protocol_id": 403 }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 774 + "minecraft:lime_concrete": { + "protocol_id": 512 }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 775 + "minecraft:lime_concrete_powder": { + "protocol_id": 528 }, - "minecraft:quartz_bricks": { - "protocol_id": 776 + "minecraft:lime_dye": { + "protocol_id": 854 }, - "minecraft:candle": { - "protocol_id": 777 + "minecraft:lime_glazed_terracotta": { + "protocol_id": 496 }, - "minecraft:white_candle": { - "protocol_id": 778 + "minecraft:lime_shulker_box": { + "protocol_id": 480 }, - "minecraft:orange_candle": { - "protocol_id": 779 + "minecraft:lime_stained_glass": { + "protocol_id": 428 }, - "minecraft:magenta_candle": { - "protocol_id": 780 + "minecraft:lime_stained_glass_pane": { + "protocol_id": 444 }, - "minecraft:light_blue_candle": { - "protocol_id": 781 + "minecraft:lime_terracotta": { + "protocol_id": 384 }, - "minecraft:yellow_candle": { - "protocol_id": 782 + "minecraft:lime_wool": { + "protocol_id": 172 }, - "minecraft:lime_candle": { - "protocol_id": 783 + "minecraft:lingering_potion": { + "protocol_id": 1051 }, - "minecraft:pink_candle": { - "protocol_id": 784 + "minecraft:llama_spawn_egg": { + "protocol_id": 939 }, - "minecraft:gray_candle": { - "protocol_id": 785 + "minecraft:lodestone": { + "protocol_id": 1110 }, - "minecraft:light_gray_candle": { - "protocol_id": 786 + "minecraft:loom": { + "protocol_id": 1080 }, - "minecraft:cyan_candle": { - "protocol_id": 787 + "minecraft:magenta_banner": { + "protocol_id": 1027 }, - "minecraft:purple_candle": { - "protocol_id": 788 + "minecraft:magenta_bed": { + "protocol_id": 871 }, - "minecraft:blue_candle": { - "protocol_id": 789 + "minecraft:magenta_candle": { + "protocol_id": 1128 }, - "minecraft:brown_candle": { - "protocol_id": 790 + "minecraft:magenta_carpet": { + "protocol_id": 400 }, - "minecraft:green_candle": { - "protocol_id": 791 + "minecraft:magenta_concrete": { + "protocol_id": 509 }, - "minecraft:red_candle": { - "protocol_id": 792 + "minecraft:magenta_concrete_powder": { + "protocol_id": 525 }, - "minecraft:black_candle": { - "protocol_id": 793 + "minecraft:magenta_dye": { + "protocol_id": 851 }, - "minecraft:candle_cake": { - "protocol_id": 794 + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 493 }, - "minecraft:white_candle_cake": { - "protocol_id": 795 + "minecraft:magenta_shulker_box": { + "protocol_id": 477 }, - "minecraft:orange_candle_cake": { - "protocol_id": 796 + "minecraft:magenta_stained_glass": { + "protocol_id": 425 }, - "minecraft:magenta_candle_cake": { - "protocol_id": 797 + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 441 }, - "minecraft:light_blue_candle_cake": { - "protocol_id": 798 + "minecraft:magenta_terracotta": { + "protocol_id": 381 }, - "minecraft:yellow_candle_cake": { - "protocol_id": 799 + "minecraft:magenta_wool": { + "protocol_id": 169 }, - "minecraft:lime_candle_cake": { - "protocol_id": 800 + "minecraft:magma_block": { + "protocol_id": 468 }, - "minecraft:pink_candle_cake": { - "protocol_id": 801 + "minecraft:magma_cream": { + "protocol_id": 907 }, - "minecraft:gray_candle_cake": { - "protocol_id": 802 + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 940 }, - "minecraft:light_gray_candle_cake": { - "protocol_id": 803 + "minecraft:mangrove_boat": { + "protocol_id": 710 }, - "minecraft:cyan_candle_cake": { - "protocol_id": 804 + "minecraft:mangrove_button": { + "protocol_id": 640 }, - "minecraft:purple_candle_cake": { - "protocol_id": 805 + "minecraft:mangrove_chest_boat": { + "protocol_id": 711 }, - "minecraft:blue_candle_cake": { - "protocol_id": 806 + "minecraft:mangrove_door": { + "protocol_id": 663 }, - "minecraft:brown_candle_cake": { - "protocol_id": 807 + "minecraft:mangrove_fence": { + "protocol_id": 274 }, - "minecraft:green_candle_cake": { - "protocol_id": 808 + "minecraft:mangrove_fence_gate": { + "protocol_id": 682 }, - "minecraft:red_candle_cake": { - "protocol_id": 809 + "minecraft:mangrove_leaves": { + "protocol_id": 148 }, - "minecraft:black_candle_cake": { - "protocol_id": 810 + "minecraft:mangrove_log": { + "protocol_id": 110 }, - "minecraft:amethyst_block": { - "protocol_id": 811 + "minecraft:mangrove_planks": { + "protocol_id": 29 }, - "minecraft:budding_amethyst": { - "protocol_id": 812 + "minecraft:mangrove_pressure_plate": { + "protocol_id": 653 }, - "minecraft:amethyst_cluster": { - "protocol_id": 813 + "minecraft:mangrove_propagule": { + "protocol_id": 38 }, - "minecraft:large_amethyst_bud": { - "protocol_id": 814 + "minecraft:mangrove_roots": { + "protocol_id": 111 }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 815 + "minecraft:mangrove_sign": { + "protocol_id": 810 }, - "minecraft:small_amethyst_bud": { - "protocol_id": 816 + "minecraft:mangrove_slab": { + "protocol_id": 220 }, - "minecraft:tuff": { - "protocol_id": 817 + "minecraft:mangrove_stairs": { + "protocol_id": 344 }, - "minecraft:calcite": { - "protocol_id": 818 + "minecraft:mangrove_trapdoor": { + "protocol_id": 673 }, - "minecraft:tinted_glass": { - "protocol_id": 819 + "minecraft:mangrove_wood": { + "protocol_id": 139 }, - "minecraft:powder_snow": { - "protocol_id": 820 + "minecraft:map": { + "protocol_id": 994 }, - "minecraft:sculk_sensor": { - "protocol_id": 821 + "minecraft:medium_amethyst_bud": { + "protocol_id": 1143 }, - "minecraft:oxidized_copper": { - "protocol_id": 822 + "minecraft:melon": { + "protocol_id": 313 }, - "minecraft:weathered_copper": { - "protocol_id": 823 + "minecraft:melon_seeds": { + "protocol_id": 891 }, - "minecraft:exposed_copper": { - "protocol_id": 824 + "minecraft:melon_slice": { + "protocol_id": 888 }, - "minecraft:copper_block": { - "protocol_id": 825 + "minecraft:milk_bucket": { + "protocol_id": 819 }, - "minecraft:copper_ore": { - "protocol_id": 826 + "minecraft:minecart": { + "protocol_id": 690 }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 827 + "minecraft:mojang_banner_pattern": { + "protocol_id": 1084 }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 828 + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 941 }, - "minecraft:weathered_cut_copper": { - "protocol_id": 829 + "minecraft:moss_block": { + "protocol_id": 209 }, - "minecraft:exposed_cut_copper": { - "protocol_id": 830 + "minecraft:moss_carpet": { + "protocol_id": 208 }, - "minecraft:cut_copper": { - "protocol_id": 831 + "minecraft:mossy_cobblestone": { + "protocol_id": 246 }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 832 + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 594 }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 833 + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 576 }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 834 + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 350 }, - "minecraft:cut_copper_stairs": { - "protocol_id": 835 + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 592 }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 836 + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 574 }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 837 + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 354 }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 838 + "minecraft:mossy_stone_bricks": { + "protocol_id": 296 }, - "minecraft:cut_copper_slab": { - "protocol_id": 839 + "minecraft:mud": { + "protocol_id": 19 }, - "minecraft:waxed_copper_block": { - "protocol_id": 840 + "minecraft:mud_brick_slab": { + "protocol_id": 231 }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 841 + "minecraft:mud_brick_stairs": { + "protocol_id": 318 }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 842 + "minecraft:mud_brick_wall": { + "protocol_id": 357 }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 843 + "minecraft:mud_bricks": { + "protocol_id": 300 }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 844 + "minecraft:muddy_mangrove_roots": { + "protocol_id": 112 }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 845 + "minecraft:mule_spawn_egg": { + "protocol_id": 942 }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 846 + "minecraft:mushroom_stem": { + "protocol_id": 309 }, - "minecraft:waxed_cut_copper": { - "protocol_id": 847 + "minecraft:mushroom_stew": { + "protocol_id": 767 }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 848 + "minecraft:music_disc_11": { + "protocol_id": 1068 }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 849 + "minecraft:music_disc_13": { + "protocol_id": 1058 }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 850 + "minecraft:music_disc_5": { + "protocol_id": 1071 }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 851 + "minecraft:music_disc_blocks": { + "protocol_id": 1060 }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 852 + "minecraft:music_disc_cat": { + "protocol_id": 1059 }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 853 + "minecraft:music_disc_chirp": { + "protocol_id": 1061 }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 854 + "minecraft:music_disc_far": { + "protocol_id": 1062 }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 855 + "minecraft:music_disc_mall": { + "protocol_id": 1063 }, - "minecraft:lightning_rod": { - "protocol_id": 856 + "minecraft:music_disc_mellohi": { + "protocol_id": 1064 }, - "minecraft:pointed_dripstone": { - "protocol_id": 857 + "minecraft:music_disc_otherside": { + "protocol_id": 1070 }, - "minecraft:dripstone_block": { - "protocol_id": 858 + "minecraft:music_disc_pigstep": { + "protocol_id": 1072 }, - "minecraft:cave_vines": { - "protocol_id": 859 + "minecraft:music_disc_stal": { + "protocol_id": 1065 }, - "minecraft:cave_vines_plant": { - "protocol_id": 860 + "minecraft:music_disc_strad": { + "protocol_id": 1066 }, - "minecraft:spore_blossom": { - "protocol_id": 861 + "minecraft:music_disc_wait": { + "protocol_id": 1069 }, - "minecraft:azalea": { - "protocol_id": 862 + "minecraft:music_disc_ward": { + "protocol_id": 1067 }, - "minecraft:flowering_azalea": { - "protocol_id": 863 + "minecraft:mutton": { + "protocol_id": 1023 }, - "minecraft:moss_carpet": { - "protocol_id": 864 + "minecraft:mycelium": { + "protocol_id": 319 }, - "minecraft:moss_block": { - "protocol_id": 865 + "minecraft:name_tag": { + "protocol_id": 1021 }, - "minecraft:big_dripleaf": { - "protocol_id": 866 + "minecraft:nautilus_shell": { + "protocol_id": 1076 }, - "minecraft:big_dripleaf_stem": { - "protocol_id": 867 + "minecraft:nether_brick": { + "protocol_id": 1007 }, - "minecraft:small_dripleaf": { - "protocol_id": 868 + "minecraft:nether_brick_fence": { + "protocol_id": 324 }, - "minecraft:hanging_roots": { - "protocol_id": 869 + "minecraft:nether_brick_slab": { + "protocol_id": 232 }, - "minecraft:rooted_dirt": { - "protocol_id": 870 + "minecraft:nether_brick_stairs": { + "protocol_id": 325 }, - "minecraft:deepslate": { - "protocol_id": 871 + "minecraft:nether_brick_wall": { + "protocol_id": 358 }, - "minecraft:cobbled_deepslate": { - "protocol_id": 872 + "minecraft:nether_bricks": { + "protocol_id": 321 }, - "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 873 + "minecraft:nether_gold_ore": { + "protocol_id": 59 }, - "minecraft:cobbled_deepslate_slab": { - "protocol_id": 874 + "minecraft:nether_quartz_ore": { + "protocol_id": 60 }, - "minecraft:cobbled_deepslate_wall": { - "protocol_id": 875 + "minecraft:nether_sprouts": { + "protocol_id": 203 }, - "minecraft:polished_deepslate": { - "protocol_id": 876 + "minecraft:nether_star": { + "protocol_id": 1002 }, - "minecraft:polished_deepslate_stairs": { - "protocol_id": 877 + "minecraft:nether_wart": { + "protocol_id": 901 }, - "minecraft:polished_deepslate_slab": { - "protocol_id": 878 + "minecraft:nether_wart_block": { + "protocol_id": 469 }, - "minecraft:polished_deepslate_wall": { - "protocol_id": 879 + "minecraft:netherite_axe": { + "protocol_id": 763 }, - "minecraft:deepslate_tiles": { - "protocol_id": 880 + "minecraft:netherite_block": { + "protocol_id": 72 }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 881 + "minecraft:netherite_boots": { + "protocol_id": 797 }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 882 + "minecraft:netherite_chestplate": { + "protocol_id": 795 }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 883 + "minecraft:netherite_helmet": { + "protocol_id": 794 }, - "minecraft:deepslate_bricks": { - "protocol_id": 884 + "minecraft:netherite_hoe": { + "protocol_id": 764 }, - "minecraft:deepslate_brick_stairs": { - "protocol_id": 885 + "minecraft:netherite_ingot": { + "protocol_id": 733 }, - "minecraft:deepslate_brick_slab": { - "protocol_id": 886 + "minecraft:netherite_leggings": { + "protocol_id": 796 }, - "minecraft:deepslate_brick_wall": { - "protocol_id": 887 + "minecraft:netherite_pickaxe": { + "protocol_id": 762 }, - "minecraft:chiseled_deepslate": { - "protocol_id": 888 + "minecraft:netherite_scrap": { + "protocol_id": 734 }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 889 + "minecraft:netherite_shovel": { + "protocol_id": 761 }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 890 + "minecraft:netherite_sword": { + "protocol_id": 760 }, - "minecraft:infested_deepslate": { - "protocol_id": 891 + "minecraft:netherrack": { + "protocol_id": 280 }, - "minecraft:smooth_basalt": { - "protocol_id": 892 + "minecraft:note_block": { + "protocol_id": 631 }, - "minecraft:raw_iron_block": { - "protocol_id": 893 + "minecraft:oak_boat": { + "protocol_id": 698 }, - "minecraft:raw_copper_block": { - "protocol_id": 894 + "minecraft:oak_button": { + "protocol_id": 634 }, - "minecraft:raw_gold_block": { - "protocol_id": 895 + "minecraft:oak_chest_boat": { + "protocol_id": 699 }, - "minecraft:potted_azalea_bush": { - "protocol_id": 896 + "minecraft:oak_door": { + "protocol_id": 657 }, - "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 897 - } - } - }, - "minecraft:enchantment": { - "protocol_id": 5, - "entries": { - "minecraft:protection": { - "protocol_id": 0 + "minecraft:oak_fence": { + "protocol_id": 268 }, - "minecraft:fire_protection": { - "protocol_id": 1 + "minecraft:oak_fence_gate": { + "protocol_id": 676 }, - "minecraft:feather_falling": { - "protocol_id": 2 + "minecraft:oak_leaves": { + "protocol_id": 142 }, - "minecraft:blast_protection": { - "protocol_id": 3 + "minecraft:oak_log": { + "protocol_id": 104 }, - "minecraft:projectile_protection": { - "protocol_id": 4 + "minecraft:oak_planks": { + "protocol_id": 23 }, - "minecraft:respiration": { - "protocol_id": 5 + "minecraft:oak_pressure_plate": { + "protocol_id": 647 }, - "minecraft:aqua_affinity": { - "protocol_id": 6 + "minecraft:oak_sapling": { + "protocol_id": 32 }, - "minecraft:thorns": { - "protocol_id": 7 + "minecraft:oak_sign": { + "protocol_id": 804 }, - "minecraft:depth_strider": { - "protocol_id": 8 + "minecraft:oak_slab": { + "protocol_id": 214 }, - "minecraft:frost_walker": { - "protocol_id": 9 + "minecraft:oak_stairs": { + "protocol_id": 338 }, - "minecraft:binding_curse": { - "protocol_id": 10 + "minecraft:oak_trapdoor": { + "protocol_id": 667 }, - "minecraft:soul_speed": { - "protocol_id": 11 + "minecraft:oak_wood": { + "protocol_id": 133 }, - "minecraft:sharpness": { - "protocol_id": 12 + "minecraft:observer": { + "protocol_id": 617 }, - "minecraft:smite": { - "protocol_id": 13 + "minecraft:obsidian": { + "protocol_id": 247 }, - "minecraft:bane_of_arthropods": { - "protocol_id": 14 + "minecraft:ocelot_spawn_egg": { + "protocol_id": 943 }, - "minecraft:knockback": { - "protocol_id": 15 + "minecraft:ochre_froglight": { + "protocol_id": 1147 }, - "minecraft:fire_aspect": { - "protocol_id": 16 + "minecraft:orange_banner": { + "protocol_id": 1026 }, - "minecraft:looting": { - "protocol_id": 17 + "minecraft:orange_bed": { + "protocol_id": 870 }, - "minecraft:sweeping": { - "protocol_id": 18 + "minecraft:orange_candle": { + "protocol_id": 1127 }, - "minecraft:efficiency": { - "protocol_id": 19 + "minecraft:orange_carpet": { + "protocol_id": 399 }, - "minecraft:silk_touch": { - "protocol_id": 20 + "minecraft:orange_concrete": { + "protocol_id": 508 }, - "minecraft:unbreaking": { - "protocol_id": 21 + "minecraft:orange_concrete_powder": { + "protocol_id": 524 }, - "minecraft:fortune": { - "protocol_id": 22 + "minecraft:orange_dye": { + "protocol_id": 850 }, - "minecraft:power": { - "protocol_id": 23 + "minecraft:orange_glazed_terracotta": { + "protocol_id": 492 }, - "minecraft:punch": { - "protocol_id": 24 + "minecraft:orange_shulker_box": { + "protocol_id": 476 }, - "minecraft:flame": { - "protocol_id": 25 + "minecraft:orange_stained_glass": { + "protocol_id": 424 }, - "minecraft:infinity": { - "protocol_id": 26 + "minecraft:orange_stained_glass_pane": { + "protocol_id": 440 }, - "minecraft:luck_of_the_sea": { - "protocol_id": 27 + "minecraft:orange_terracotta": { + "protocol_id": 380 }, - "minecraft:lure": { - "protocol_id": 28 + "minecraft:orange_tulip": { + "protocol_id": 189 }, - "minecraft:loyalty": { - "protocol_id": 29 + "minecraft:orange_wool": { + "protocol_id": 168 }, - "minecraft:impaling": { - "protocol_id": 30 + "minecraft:oxeye_daisy": { + "protocol_id": 192 }, - "minecraft:riptide": { - "protocol_id": 31 + "minecraft:oxidized_copper": { + "protocol_id": 75 }, - "minecraft:channeling": { - "protocol_id": 32 + "minecraft:oxidized_cut_copper": { + "protocol_id": 79 }, - "minecraft:multishot": { - "protocol_id": 33 + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 87 }, - "minecraft:quick_charge": { - "protocol_id": 34 + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 83 }, - "minecraft:piercing": { - "protocol_id": 35 + "minecraft:packed_ice": { + "protocol_id": 415 }, - "minecraft:mending": { - "protocol_id": 36 + "minecraft:packed_mud": { + "protocol_id": 299 }, - "minecraft:vanishing_curse": { - "protocol_id": 37 - } - } - }, - "minecraft:entity_type": { - "default": "minecraft:pig", - "protocol_id": 6, - "entries": { - "minecraft:area_effect_cloud": { - "protocol_id": 0 + "minecraft:painting": { + "protocol_id": 801 }, - "minecraft:armor_stand": { - "protocol_id": 1 + "minecraft:panda_spawn_egg": { + "protocol_id": 944 }, - "minecraft:arrow": { - "protocol_id": 2 + "minecraft:paper": { + "protocol_id": 829 }, - "minecraft:axolotl": { - "protocol_id": 3 + "minecraft:parrot_spawn_egg": { + "protocol_id": 945 }, - "minecraft:bat": { - "protocol_id": 4 + "minecraft:pearlescent_froglight": { + "protocol_id": 1149 }, - "minecraft:bee": { - "protocol_id": 5 + "minecraft:peony": { + "protocol_id": 420 }, - "minecraft:blaze": { - "protocol_id": 6 + "minecraft:petrified_oak_slab": { + "protocol_id": 227 }, - "minecraft:boat": { - "protocol_id": 7 + "minecraft:phantom_membrane": { + "protocol_id": 1075 }, - "minecraft:cat": { - "protocol_id": 8 + "minecraft:phantom_spawn_egg": { + "protocol_id": 946 }, - "minecraft:cave_spider": { - "protocol_id": 9 + "minecraft:pig_spawn_egg": { + "protocol_id": 947 }, - "minecraft:chicken": { - "protocol_id": 10 + "minecraft:piglin_banner_pattern": { + "protocol_id": 1086 }, - "minecraft:cod": { - "protocol_id": 11 + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 949 }, - "minecraft:cow": { - "protocol_id": 12 + "minecraft:piglin_spawn_egg": { + "protocol_id": 948 }, - "minecraft:creeper": { - "protocol_id": 13 + "minecraft:pillager_spawn_egg": { + "protocol_id": 950 }, - "minecraft:dolphin": { - "protocol_id": 14 + "minecraft:pink_banner": { + "protocol_id": 1031 }, - "minecraft:donkey": { - "protocol_id": 15 + "minecraft:pink_bed": { + "protocol_id": 875 }, - "minecraft:dragon_fireball": { - "protocol_id": 16 + "minecraft:pink_candle": { + "protocol_id": 1132 }, - "minecraft:drowned": { - "protocol_id": 17 + "minecraft:pink_carpet": { + "protocol_id": 404 }, - "minecraft:elder_guardian": { - "protocol_id": 18 + "minecraft:pink_concrete": { + "protocol_id": 513 }, - "minecraft:end_crystal": { - "protocol_id": 19 + "minecraft:pink_concrete_powder": { + "protocol_id": 529 }, - "minecraft:ender_dragon": { - "protocol_id": 20 + "minecraft:pink_dye": { + "protocol_id": 855 }, - "minecraft:enderman": { - "protocol_id": 21 + "minecraft:pink_glazed_terracotta": { + "protocol_id": 497 }, - "minecraft:endermite": { - "protocol_id": 22 + "minecraft:pink_shulker_box": { + "protocol_id": 481 }, - "minecraft:evoker": { - "protocol_id": 23 + "minecraft:pink_stained_glass": { + "protocol_id": 429 }, - "minecraft:evoker_fangs": { - "protocol_id": 24 + "minecraft:pink_stained_glass_pane": { + "protocol_id": 445 }, - "minecraft:experience_orb": { - "protocol_id": 25 + "minecraft:pink_terracotta": { + "protocol_id": 385 }, - "minecraft:eye_of_ender": { - "protocol_id": 26 + "minecraft:pink_tulip": { + "protocol_id": 191 }, - "minecraft:falling_block": { - "protocol_id": 27 + "minecraft:pink_wool": { + "protocol_id": 173 }, - "minecraft:firework_rocket": { - "protocol_id": 28 + "minecraft:piston": { + "protocol_id": 613 }, - "minecraft:fox": { - "protocol_id": 29 + "minecraft:player_head": { + "protocol_id": 998 }, - "minecraft:ghast": { - "protocol_id": 30 + "minecraft:podzol": { + "protocol_id": 17 }, - "minecraft:giant": { - "protocol_id": 31 + "minecraft:pointed_dripstone": { + "protocol_id": 1146 }, - "minecraft:glow_item_frame": { - "protocol_id": 32 + "minecraft:poisonous_potato": { + "protocol_id": 993 }, - "minecraft:glow_squid": { - "protocol_id": 33 + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 951 }, - "minecraft:goat": { - "protocol_id": 34 + "minecraft:polished_andesite": { + "protocol_id": 7 }, - "minecraft:guardian": { - "protocol_id": 35 + "minecraft:polished_andesite_slab": { + "protocol_id": 601 }, - "minecraft:hoglin": { - "protocol_id": 36 + "minecraft:polished_andesite_stairs": { + "protocol_id": 584 }, - "minecraft:horse": { - "protocol_id": 37 + "minecraft:polished_basalt": { + "protocol_id": 284 }, - "minecraft:husk": { - "protocol_id": 38 + "minecraft:polished_blackstone": { + "protocol_id": 1116 }, - "minecraft:illusioner": { - "protocol_id": 39 + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1121 }, - "minecraft:iron_golem": { - "protocol_id": 40 + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1122 }, - "minecraft:item": { - "protocol_id": 41 + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 366 }, - "minecraft:item_frame": { - "protocol_id": 42 + "minecraft:polished_blackstone_bricks": { + "protocol_id": 1120 }, - "minecraft:fireball": { - "protocol_id": 43 + "minecraft:polished_blackstone_button": { + "protocol_id": 633 }, - "minecraft:leash_knot": { - "protocol_id": 44 + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 644 }, - "minecraft:lightning_bolt": { - "protocol_id": 45 + "minecraft:polished_blackstone_slab": { + "protocol_id": 1117 }, - "minecraft:llama": { - "protocol_id": 46 + "minecraft:polished_blackstone_stairs": { + "protocol_id": 1118 }, - "minecraft:llama_spit": { - "protocol_id": 47 + "minecraft:polished_blackstone_wall": { + "protocol_id": 365 }, - "minecraft:magma_cube": { - "protocol_id": 48 + "minecraft:polished_deepslate": { + "protocol_id": 10 }, - "minecraft:marker": { - "protocol_id": 49 + "minecraft:polished_deepslate_slab": { + "protocol_id": 604 }, - "minecraft:minecart": { - "protocol_id": 50 + "minecraft:polished_deepslate_stairs": { + "protocol_id": 587 }, - "minecraft:chest_minecart": { - "protocol_id": 51 + "minecraft:polished_deepslate_wall": { + "protocol_id": 368 }, - "minecraft:command_block_minecart": { - "protocol_id": 52 + "minecraft:polished_diorite": { + "protocol_id": 5 }, - "minecraft:furnace_minecart": { - "protocol_id": 53 + "minecraft:polished_diorite_slab": { + "protocol_id": 593 }, - "minecraft:hopper_minecart": { - "protocol_id": 54 + "minecraft:polished_diorite_stairs": { + "protocol_id": 575 }, - "minecraft:spawner_minecart": { - "protocol_id": 55 + "minecraft:polished_granite": { + "protocol_id": 3 }, - "minecraft:tnt_minecart": { - "protocol_id": 56 + "minecraft:polished_granite_slab": { + "protocol_id": 590 }, - "minecraft:mule": { - "protocol_id": 57 + "minecraft:polished_granite_stairs": { + "protocol_id": 572 }, - "minecraft:mooshroom": { - "protocol_id": 58 + "minecraft:popped_chorus_fruit": { + "protocol_id": 1043 }, - "minecraft:ocelot": { - "protocol_id": 59 + "minecraft:poppy": { + "protocol_id": 184 }, - "minecraft:painting": { - "protocol_id": 60 + "minecraft:porkchop": { + "protocol_id": 799 }, - "minecraft:panda": { - "protocol_id": 61 + "minecraft:potato": { + "protocol_id": 991 }, - "minecraft:parrot": { - "protocol_id": 62 + "minecraft:potion": { + "protocol_id": 902 }, - "minecraft:phantom": { - "protocol_id": 63 + "minecraft:powder_snow_bucket": { + "protocol_id": 816 }, - "minecraft:pig": { - "protocol_id": 64 + "minecraft:powered_rail": { + "protocol_id": 685 }, - "minecraft:piglin": { - "protocol_id": 65 + "minecraft:prismarine": { + "protocol_id": 455 }, - "minecraft:piglin_brute": { - "protocol_id": 66 + "minecraft:prismarine_brick_slab": { + "protocol_id": 238 }, - "minecraft:pillager": { - "protocol_id": 67 + "minecraft:prismarine_brick_stairs": { + "protocol_id": 459 }, - "minecraft:polar_bear": { - "protocol_id": 68 + "minecraft:prismarine_bricks": { + "protocol_id": 456 }, - "minecraft:tnt": { - "protocol_id": 69 + "minecraft:prismarine_crystals": { + "protocol_id": 1009 }, - "minecraft:pufferfish": { - "protocol_id": 70 + "minecraft:prismarine_shard": { + "protocol_id": 1008 }, - "minecraft:rabbit": { - "protocol_id": 71 + "minecraft:prismarine_slab": { + "protocol_id": 237 }, - "minecraft:ravager": { - "protocol_id": 72 + "minecraft:prismarine_stairs": { + "protocol_id": 458 }, - "minecraft:salmon": { - "protocol_id": 73 + "minecraft:prismarine_wall": { + "protocol_id": 352 }, - "minecraft:sheep": { - "protocol_id": 74 + "minecraft:pufferfish": { + "protocol_id": 843 }, - "minecraft:shulker": { - "protocol_id": 75 + "minecraft:pufferfish_bucket": { + "protocol_id": 820 }, - "minecraft:shulker_bullet": { - "protocol_id": 76 + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 952 }, - "minecraft:silverfish": { - "protocol_id": 77 + "minecraft:pumpkin": { + "protocol_id": 277 }, - "minecraft:skeleton": { - "protocol_id": 78 + "minecraft:pumpkin_pie": { + "protocol_id": 1003 }, - "minecraft:skeleton_horse": { - "protocol_id": 79 + "minecraft:pumpkin_seeds": { + "protocol_id": 890 }, - "minecraft:slime": { - "protocol_id": 80 + "minecraft:purple_banner": { + "protocol_id": 1035 }, - "minecraft:small_fireball": { - "protocol_id": 81 + "minecraft:purple_bed": { + "protocol_id": 879 }, - "minecraft:snow_golem": { - "protocol_id": 82 + "minecraft:purple_candle": { + "protocol_id": 1136 }, - "minecraft:snowball": { - "protocol_id": 83 + "minecraft:purple_carpet": { + "protocol_id": 408 }, - "minecraft:spectral_arrow": { - "protocol_id": 84 + "minecraft:purple_concrete": { + "protocol_id": 517 }, - "minecraft:spider": { - "protocol_id": 85 + "minecraft:purple_concrete_powder": { + "protocol_id": 533 }, - "minecraft:squid": { - "protocol_id": 86 + "minecraft:purple_dye": { + "protocol_id": 859 }, - "minecraft:stray": { - "protocol_id": 87 + "minecraft:purple_glazed_terracotta": { + "protocol_id": 501 }, - "minecraft:strider": { - "protocol_id": 88 - }, - "minecraft:egg": { - "protocol_id": 89 + "minecraft:purple_shulker_box": { + "protocol_id": 485 }, - "minecraft:ender_pearl": { - "protocol_id": 90 + "minecraft:purple_stained_glass": { + "protocol_id": 433 }, - "minecraft:experience_bottle": { - "protocol_id": 91 + "minecraft:purple_stained_glass_pane": { + "protocol_id": 449 }, - "minecraft:potion": { - "protocol_id": 92 + "minecraft:purple_terracotta": { + "protocol_id": 389 }, - "minecraft:trident": { - "protocol_id": 93 + "minecraft:purple_wool": { + "protocol_id": 177 }, - "minecraft:trader_llama": { - "protocol_id": 94 + "minecraft:purpur_block": { + "protocol_id": 252 }, - "minecraft:tropical_fish": { - "protocol_id": 95 + "minecraft:purpur_pillar": { + "protocol_id": 253 }, - "minecraft:turtle": { - "protocol_id": 96 + "minecraft:purpur_slab": { + "protocol_id": 236 }, - "minecraft:vex": { - "protocol_id": 97 + "minecraft:purpur_stairs": { + "protocol_id": 254 }, - "minecraft:villager": { - "protocol_id": 98 + "minecraft:quartz": { + "protocol_id": 725 }, - "minecraft:vindicator": { - "protocol_id": 99 + "minecraft:quartz_block": { + "protocol_id": 375 }, - "minecraft:wandering_trader": { - "protocol_id": 100 + "minecraft:quartz_bricks": { + "protocol_id": 376 }, - "minecraft:witch": { - "protocol_id": 101 + "minecraft:quartz_pillar": { + "protocol_id": 377 }, - "minecraft:wither": { - "protocol_id": 102 + "minecraft:quartz_slab": { + "protocol_id": 233 }, - "minecraft:wither_skeleton": { - "protocol_id": 103 + "minecraft:quartz_stairs": { + "protocol_id": 378 }, - "minecraft:wither_skull": { - "protocol_id": 104 + "minecraft:rabbit": { + "protocol_id": 1010 }, - "minecraft:wolf": { - "protocol_id": 105 + "minecraft:rabbit_foot": { + "protocol_id": 1013 }, - "minecraft:zoglin": { - "protocol_id": 106 + "minecraft:rabbit_hide": { + "protocol_id": 1014 }, - "minecraft:zombie": { - "protocol_id": 107 + "minecraft:rabbit_spawn_egg": { + "protocol_id": 953 }, - "minecraft:zombie_horse": { - "protocol_id": 108 + "minecraft:rabbit_stew": { + "protocol_id": 1012 }, - "minecraft:zombie_villager": { - "protocol_id": 109 + "minecraft:rail": { + "protocol_id": 687 }, - "minecraft:zombified_piglin": { - "protocol_id": 110 + "minecraft:ravager_spawn_egg": { + "protocol_id": 954 }, - "minecraft:player": { - "protocol_id": 111 + "minecraft:raw_copper": { + "protocol_id": 729 }, - "minecraft:fishing_bobber": { - "protocol_id": 112 - } - } - }, - "minecraft:item": { - "default": "minecraft:air", - "protocol_id": 7, - "entries": { - "minecraft:air": { - "protocol_id": 0 + "minecraft:raw_copper_block": { + "protocol_id": 64 }, - "minecraft:stone": { - "protocol_id": 1 + "minecraft:raw_gold": { + "protocol_id": 731 }, - "minecraft:granite": { - "protocol_id": 2 + "minecraft:raw_gold_block": { + "protocol_id": 65 }, - "minecraft:polished_granite": { - "protocol_id": 3 + "minecraft:raw_iron": { + "protocol_id": 727 }, - "minecraft:diorite": { - "protocol_id": 4 + "minecraft:raw_iron_block": { + "protocol_id": 63 }, - "minecraft:polished_diorite": { - "protocol_id": 5 + "minecraft:recovery_compass": { + "protocol_id": 834 }, - "minecraft:andesite": { - "protocol_id": 6 + "minecraft:red_banner": { + "protocol_id": 1039 }, - "minecraft:polished_andesite": { - "protocol_id": 7 + "minecraft:red_bed": { + "protocol_id": 883 }, - "minecraft:deepslate": { - "protocol_id": 8 + "minecraft:red_candle": { + "protocol_id": 1140 }, - "minecraft:cobbled_deepslate": { - "protocol_id": 9 + "minecraft:red_carpet": { + "protocol_id": 412 }, - "minecraft:polished_deepslate": { - "protocol_id": 10 + "minecraft:red_concrete": { + "protocol_id": 521 }, - "minecraft:calcite": { - "protocol_id": 11 + "minecraft:red_concrete_powder": { + "protocol_id": 537 }, - "minecraft:tuff": { - "protocol_id": 12 + "minecraft:red_dye": { + "protocol_id": 863 }, - "minecraft:dripstone_block": { - "protocol_id": 13 + "minecraft:red_glazed_terracotta": { + "protocol_id": 505 }, - "minecraft:grass_block": { - "protocol_id": 14 + "minecraft:red_mushroom": { + "protocol_id": 198 }, - "minecraft:dirt": { - "protocol_id": 15 + "minecraft:red_mushroom_block": { + "protocol_id": 308 }, - "minecraft:coarse_dirt": { - "protocol_id": 16 + "minecraft:red_nether_brick_slab": { + "protocol_id": 600 }, - "minecraft:podzol": { - "protocol_id": 17 + "minecraft:red_nether_brick_stairs": { + "protocol_id": 583 }, - "minecraft:rooted_dirt": { - "protocol_id": 18 + "minecraft:red_nether_brick_wall": { + "protocol_id": 360 }, - "minecraft:crimson_nylium": { - "protocol_id": 19 + "minecraft:red_nether_bricks": { + "protocol_id": 471 }, - "minecraft:warped_nylium": { - "protocol_id": 20 + "minecraft:red_sand": { + "protocol_id": 41 }, - "minecraft:cobblestone": { - "protocol_id": 21 + "minecraft:red_sandstone": { + "protocol_id": 462 }, - "minecraft:oak_planks": { - "protocol_id": 22 + "minecraft:red_sandstone_slab": { + "protocol_id": 234 }, - "minecraft:spruce_planks": { - "protocol_id": 23 + "minecraft:red_sandstone_stairs": { + "protocol_id": 465 }, - "minecraft:birch_planks": { - "protocol_id": 24 + "minecraft:red_sandstone_wall": { + "protocol_id": 353 }, - "minecraft:jungle_planks": { - "protocol_id": 25 + "minecraft:red_shulker_box": { + "protocol_id": 489 }, - "minecraft:acacia_planks": { - "protocol_id": 26 + "minecraft:red_stained_glass": { + "protocol_id": 437 }, - "minecraft:dark_oak_planks": { - "protocol_id": 27 + "minecraft:red_stained_glass_pane": { + "protocol_id": 453 }, - "minecraft:crimson_planks": { - "protocol_id": 28 + "minecraft:red_terracotta": { + "protocol_id": 393 }, - "minecraft:warped_planks": { - "protocol_id": 29 + "minecraft:red_tulip": { + "protocol_id": 188 }, - "minecraft:oak_sapling": { - "protocol_id": 30 + "minecraft:red_wool": { + "protocol_id": 181 }, - "minecraft:spruce_sapling": { - "protocol_id": 31 + "minecraft:redstone": { + "protocol_id": 608 }, - "minecraft:birch_sapling": { - "protocol_id": 32 + "minecraft:redstone_block": { + "protocol_id": 610 }, - "minecraft:jungle_sapling": { - "protocol_id": 33 + "minecraft:redstone_lamp": { + "protocol_id": 630 }, - "minecraft:acacia_sapling": { - "protocol_id": 34 + "minecraft:redstone_ore": { + "protocol_id": 51 }, - "minecraft:dark_oak_sapling": { - "protocol_id": 35 + "minecraft:redstone_torch": { + "protocol_id": 609 }, - "minecraft:bedrock": { - "protocol_id": 36 + "minecraft:reinforced_deepslate": { + "protocol_id": 306 }, - "minecraft:sand": { - "protocol_id": 37 + "minecraft:repeater": { + "protocol_id": 611 }, - "minecraft:red_sand": { - "protocol_id": 38 + "minecraft:repeating_command_block": { + "protocol_id": 466 }, - "minecraft:gravel": { - "protocol_id": 39 + "minecraft:respawn_anchor": { + "protocol_id": 1124 }, - "minecraft:coal_ore": { - "protocol_id": 40 + "minecraft:rooted_dirt": { + "protocol_id": 18 }, - "minecraft:deepslate_coal_ore": { - "protocol_id": 41 + "minecraft:rose_bush": { + "protocol_id": 419 }, - "minecraft:iron_ore": { - "protocol_id": 42 + "minecraft:rotten_flesh": { + "protocol_id": 896 }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 43 + "minecraft:saddle": { + "protocol_id": 689 }, - "minecraft:copper_ore": { - "protocol_id": 44 + "minecraft:salmon": { + "protocol_id": 841 }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 45 + "minecraft:salmon_bucket": { + "protocol_id": 821 }, - "minecraft:gold_ore": { - "protocol_id": 46 + "minecraft:salmon_spawn_egg": { + "protocol_id": 955 }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 47 + "minecraft:sand": { + "protocol_id": 40 }, - "minecraft:redstone_ore": { - "protocol_id": 48 + "minecraft:sandstone": { + "protocol_id": 156 }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 49 + "minecraft:sandstone_slab": { + "protocol_id": 225 }, - "minecraft:emerald_ore": { - "protocol_id": 50 + "minecraft:sandstone_stairs": { + "protocol_id": 335 }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 51 + "minecraft:sandstone_wall": { + "protocol_id": 361 }, - "minecraft:lapis_ore": { - "protocol_id": 52 + "minecraft:scaffolding": { + "protocol_id": 607 }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 53 + "minecraft:sculk": { + "protocol_id": 326 }, - "minecraft:diamond_ore": { - "protocol_id": 54 + "minecraft:sculk_catalyst": { + "protocol_id": 328 }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 55 + "minecraft:sculk_sensor": { + "protocol_id": 626 }, - "minecraft:nether_gold_ore": { - "protocol_id": 56 + "minecraft:sculk_shrieker": { + "protocol_id": 329 }, - "minecraft:nether_quartz_ore": { - "protocol_id": 57 + "minecraft:sculk_vein": { + "protocol_id": 327 }, - "minecraft:ancient_debris": { - "protocol_id": 58 + "minecraft:scute": { + "protocol_id": 715 }, - "minecraft:coal_block": { - "protocol_id": 59 + "minecraft:sea_lantern": { + "protocol_id": 461 }, - "minecraft:raw_iron_block": { - "protocol_id": 60 + "minecraft:sea_pickle": { + "protocol_id": 166 }, - "minecraft:raw_copper_block": { - "protocol_id": 61 + "minecraft:seagrass": { + "protocol_id": 165 }, - "minecraft:raw_gold_block": { - "protocol_id": 62 + "minecraft:shears": { + "protocol_id": 887 }, - "minecraft:amethyst_block": { - "protocol_id": 63 + "minecraft:sheep_spawn_egg": { + "protocol_id": 956 }, - "minecraft:budding_amethyst": { - "protocol_id": 64 + "minecraft:shield": { + "protocol_id": 1052 }, - "minecraft:iron_block": { - "protocol_id": 65 + "minecraft:shroomlight": { + "protocol_id": 1104 }, - "minecraft:copper_block": { - "protocol_id": 66 + "minecraft:shulker_box": { + "protocol_id": 474 }, - "minecraft:gold_block": { - "protocol_id": 67 + "minecraft:shulker_shell": { + "protocol_id": 1054 }, - "minecraft:diamond_block": { - "protocol_id": 68 + "minecraft:shulker_spawn_egg": { + "protocol_id": 957 }, - "minecraft:netherite_block": { - "protocol_id": 69 + "minecraft:silverfish_spawn_egg": { + "protocol_id": 958 }, - "minecraft:exposed_copper": { - "protocol_id": 70 + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 960 }, - "minecraft:weathered_copper": { - "protocol_id": 71 + "minecraft:skeleton_skull": { + "protocol_id": 996 }, - "minecraft:oxidized_copper": { - "protocol_id": 72 + "minecraft:skeleton_spawn_egg": { + "protocol_id": 959 }, - "minecraft:cut_copper": { - "protocol_id": 73 + "minecraft:skull_banner_pattern": { + "protocol_id": 1083 }, - "minecraft:exposed_cut_copper": { - "protocol_id": 74 + "minecraft:slime_ball": { + "protocol_id": 831 }, - "minecraft:weathered_cut_copper": { - "protocol_id": 75 + "minecraft:slime_block": { + "protocol_id": 615 }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 76 + "minecraft:slime_spawn_egg": { + "protocol_id": 961 }, - "minecraft:cut_copper_stairs": { - "protocol_id": 77 + "minecraft:small_amethyst_bud": { + "protocol_id": 1142 }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 78 + "minecraft:small_dripleaf": { + "protocol_id": 212 }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 79 + "minecraft:smithing_table": { + "protocol_id": 1095 }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 80 + "minecraft:smoker": { + "protocol_id": 1090 }, - "minecraft:cut_copper_slab": { - "protocol_id": 81 + "minecraft:smooth_basalt": { + "protocol_id": 285 }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 82 + "minecraft:smooth_quartz": { + "protocol_id": 240 }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 83 + "minecraft:smooth_quartz_slab": { + "protocol_id": 597 }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 84 + "minecraft:smooth_quartz_stairs": { + "protocol_id": 580 }, - "minecraft:waxed_copper_block": { - "protocol_id": 85 + "minecraft:smooth_red_sandstone": { + "protocol_id": 241 }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 86 + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 591 }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 87 + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 573 }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 88 + "minecraft:smooth_sandstone": { + "protocol_id": 242 }, - "minecraft:waxed_cut_copper": { - "protocol_id": 89 + "minecraft:smooth_sandstone_slab": { + "protocol_id": 596 }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 90 + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 579 }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 91 + "minecraft:smooth_stone": { + "protocol_id": 243 }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 92 + "minecraft:smooth_stone_slab": { + "protocol_id": 224 }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 93 + "minecraft:snow": { + "protocol_id": 262 }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 94 + "minecraft:snow_block": { + "protocol_id": 264 }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 95 + "minecraft:snowball": { + "protocol_id": 817 }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 96 + "minecraft:soul_campfire": { + "protocol_id": 1103 }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 97 + "minecraft:soul_lantern": { + "protocol_id": 1099 }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 98 + "minecraft:soul_sand": { + "protocol_id": 281 }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 99 + "minecraft:soul_soil": { + "protocol_id": 282 }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 100 + "minecraft:soul_torch": { + "protocol_id": 286 }, - "minecraft:oak_log": { - "protocol_id": 101 + "minecraft:spawner": { + "protocol_id": 255 }, - "minecraft:spruce_log": { - "protocol_id": 102 + "minecraft:spectral_arrow": { + "protocol_id": 1049 }, - "minecraft:birch_log": { - "protocol_id": 103 + "minecraft:spider_eye": { + "protocol_id": 904 }, - "minecraft:jungle_log": { - "protocol_id": 104 - }, - "minecraft:acacia_log": { - "protocol_id": 105 - }, - "minecraft:dark_oak_log": { - "protocol_id": 106 - }, - "minecraft:crimson_stem": { - "protocol_id": 107 + "minecraft:spider_spawn_egg": { + "protocol_id": 962 }, - "minecraft:warped_stem": { - "protocol_id": 108 + "minecraft:splash_potion": { + "protocol_id": 1048 }, - "minecraft:stripped_oak_log": { - "protocol_id": 109 + "minecraft:sponge": { + "protocol_id": 151 }, - "minecraft:stripped_spruce_log": { - "protocol_id": 110 + "minecraft:spore_blossom": { + "protocol_id": 196 }, - "minecraft:stripped_birch_log": { - "protocol_id": 111 + "minecraft:spruce_boat": { + "protocol_id": 700 }, - "minecraft:stripped_jungle_log": { - "protocol_id": 112 + "minecraft:spruce_button": { + "protocol_id": 635 }, - "minecraft:stripped_acacia_log": { - "protocol_id": 113 + "minecraft:spruce_chest_boat": { + "protocol_id": 701 }, - "minecraft:stripped_dark_oak_log": { - "protocol_id": 114 + "minecraft:spruce_door": { + "protocol_id": 658 }, - "minecraft:stripped_crimson_stem": { - "protocol_id": 115 + "minecraft:spruce_fence": { + "protocol_id": 269 }, - "minecraft:stripped_warped_stem": { - "protocol_id": 116 + "minecraft:spruce_fence_gate": { + "protocol_id": 677 }, - "minecraft:stripped_oak_wood": { - "protocol_id": 117 + "minecraft:spruce_leaves": { + "protocol_id": 143 }, - "minecraft:stripped_spruce_wood": { - "protocol_id": 118 + "minecraft:spruce_log": { + "protocol_id": 105 }, - "minecraft:stripped_birch_wood": { - "protocol_id": 119 + "minecraft:spruce_planks": { + "protocol_id": 24 }, - "minecraft:stripped_jungle_wood": { - "protocol_id": 120 + "minecraft:spruce_pressure_plate": { + "protocol_id": 648 }, - "minecraft:stripped_acacia_wood": { - "protocol_id": 121 + "minecraft:spruce_sapling": { + "protocol_id": 33 }, - "minecraft:stripped_dark_oak_wood": { - "protocol_id": 122 + "minecraft:spruce_sign": { + "protocol_id": 805 }, - "minecraft:stripped_crimson_hyphae": { - "protocol_id": 123 + "minecraft:spruce_slab": { + "protocol_id": 215 }, - "minecraft:stripped_warped_hyphae": { - "protocol_id": 124 + "minecraft:spruce_stairs": { + "protocol_id": 339 }, - "minecraft:oak_wood": { - "protocol_id": 125 + "minecraft:spruce_trapdoor": { + "protocol_id": 668 }, "minecraft:spruce_wood": { - "protocol_id": 126 + "protocol_id": 134 }, - "minecraft:birch_wood": { - "protocol_id": 127 + "minecraft:spyglass": { + "protocol_id": 838 }, - "minecraft:jungle_wood": { - "protocol_id": 128 + "minecraft:squid_spawn_egg": { + "protocol_id": 963 }, - "minecraft:acacia_wood": { - "protocol_id": 129 + "minecraft:stick": { + "protocol_id": 765 }, - "minecraft:dark_oak_wood": { - "protocol_id": 130 + "minecraft:sticky_piston": { + "protocol_id": 614 }, - "minecraft:crimson_hyphae": { - "protocol_id": 131 + "minecraft:stone": { + "protocol_id": 1 }, - "minecraft:warped_hyphae": { - "protocol_id": 132 + "minecraft:stone_axe": { + "protocol_id": 743 }, - "minecraft:oak_leaves": { - "protocol_id": 133 + "minecraft:stone_brick_slab": { + "protocol_id": 230 }, - "minecraft:spruce_leaves": { - "protocol_id": 134 + "minecraft:stone_brick_stairs": { + "protocol_id": 317 }, - "minecraft:birch_leaves": { - "protocol_id": 135 + "minecraft:stone_brick_wall": { + "protocol_id": 356 }, - "minecraft:jungle_leaves": { - "protocol_id": 136 + "minecraft:stone_bricks": { + "protocol_id": 295 }, - "minecraft:acacia_leaves": { - "protocol_id": 137 + "minecraft:stone_button": { + "protocol_id": 632 }, - "minecraft:dark_oak_leaves": { - "protocol_id": 138 + "minecraft:stone_hoe": { + "protocol_id": 744 }, - "minecraft:azalea_leaves": { - "protocol_id": 139 + "minecraft:stone_pickaxe": { + "protocol_id": 742 }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 140 + "minecraft:stone_pressure_plate": { + "protocol_id": 643 }, - "minecraft:sponge": { - "protocol_id": 141 + "minecraft:stone_shovel": { + "protocol_id": 741 }, - "minecraft:wet_sponge": { - "protocol_id": 142 + "minecraft:stone_slab": { + "protocol_id": 223 }, - "minecraft:glass": { - "protocol_id": 143 + "minecraft:stone_stairs": { + "protocol_id": 578 }, - "minecraft:tinted_glass": { - "protocol_id": 144 + "minecraft:stone_sword": { + "protocol_id": 740 }, - "minecraft:lapis_block": { - "protocol_id": 145 + "minecraft:stonecutter": { + "protocol_id": 1096 }, - "minecraft:sandstone": { - "protocol_id": 146 + "minecraft:stray_spawn_egg": { + "protocol_id": 964 }, - "minecraft:chiseled_sandstone": { - "protocol_id": 147 + "minecraft:strider_spawn_egg": { + "protocol_id": 965 }, - "minecraft:cut_sandstone": { - "protocol_id": 148 + "minecraft:string": { + "protocol_id": 768 }, - "minecraft:cobweb": { - "protocol_id": 149 + "minecraft:stripped_acacia_log": { + "protocol_id": 119 }, - "minecraft:grass": { - "protocol_id": 150 + "minecraft:stripped_acacia_wood": { + "protocol_id": 128 }, - "minecraft:fern": { - "protocol_id": 151 + "minecraft:stripped_birch_log": { + "protocol_id": 117 }, - "minecraft:azalea": { - "protocol_id": 152 + "minecraft:stripped_birch_wood": { + "protocol_id": 126 }, - "minecraft:flowering_azalea": { - "protocol_id": 153 + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 131 }, - "minecraft:dead_bush": { - "protocol_id": 154 + "minecraft:stripped_crimson_stem": { + "protocol_id": 122 }, - "minecraft:seagrass": { - "protocol_id": 155 + "minecraft:stripped_dark_oak_log": { + "protocol_id": 120 }, - "minecraft:sea_pickle": { - "protocol_id": 156 + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 129 }, - "minecraft:white_wool": { - "protocol_id": 157 + "minecraft:stripped_jungle_log": { + "protocol_id": 118 }, - "minecraft:orange_wool": { - "protocol_id": 158 + "minecraft:stripped_jungle_wood": { + "protocol_id": 127 }, - "minecraft:magenta_wool": { - "protocol_id": 159 + "minecraft:stripped_mangrove_log": { + "protocol_id": 121 }, - "minecraft:light_blue_wool": { - "protocol_id": 160 + "minecraft:stripped_mangrove_wood": { + "protocol_id": 130 }, - "minecraft:yellow_wool": { - "protocol_id": 161 + "minecraft:stripped_oak_log": { + "protocol_id": 115 }, - "minecraft:lime_wool": { - "protocol_id": 162 + "minecraft:stripped_oak_wood": { + "protocol_id": 124 }, - "minecraft:pink_wool": { - "protocol_id": 163 + "minecraft:stripped_spruce_log": { + "protocol_id": 116 }, - "minecraft:gray_wool": { - "protocol_id": 164 + "minecraft:stripped_spruce_wood": { + "protocol_id": 125 }, - "minecraft:light_gray_wool": { - "protocol_id": 165 + "minecraft:stripped_warped_hyphae": { + "protocol_id": 132 }, - "minecraft:cyan_wool": { - "protocol_id": 166 + "minecraft:stripped_warped_stem": { + "protocol_id": 123 }, - "minecraft:purple_wool": { - "protocol_id": 167 + "minecraft:structure_block": { + "protocol_id": 712 }, - "minecraft:blue_wool": { - "protocol_id": 168 + "minecraft:structure_void": { + "protocol_id": 473 }, - "minecraft:brown_wool": { - "protocol_id": 169 + "minecraft:sugar": { + "protocol_id": 867 }, - "minecraft:green_wool": { - "protocol_id": 170 + "minecraft:sugar_cane": { + "protocol_id": 206 }, - "minecraft:red_wool": { - "protocol_id": 171 + "minecraft:sunflower": { + "protocol_id": 417 }, - "minecraft:black_wool": { - "protocol_id": 172 + "minecraft:suspicious_stew": { + "protocol_id": 1079 }, - "minecraft:dandelion": { - "protocol_id": 173 + "minecraft:sweet_berries": { + "protocol_id": 1100 }, - "minecraft:poppy": { - "protocol_id": 174 + "minecraft:tadpole_bucket": { + "protocol_id": 825 }, - "minecraft:blue_orchid": { - "protocol_id": 175 + "minecraft:tadpole_spawn_egg": { + "protocol_id": 966 }, - "minecraft:allium": { - "protocol_id": 176 + "minecraft:tall_grass": { + "protocol_id": 421 }, - "minecraft:azure_bluet": { - "protocol_id": 177 + "minecraft:target": { + "protocol_id": 622 }, - "minecraft:red_tulip": { - "protocol_id": 178 + "minecraft:terracotta": { + "protocol_id": 414 }, - "minecraft:orange_tulip": { - "protocol_id": 179 + "minecraft:tinted_glass": { + "protocol_id": 154 }, - "minecraft:white_tulip": { - "protocol_id": 180 + "minecraft:tipped_arrow": { + "protocol_id": 1050 }, - "minecraft:pink_tulip": { - "protocol_id": 181 + "minecraft:tnt": { + "protocol_id": 629 }, - "minecraft:oxeye_daisy": { - "protocol_id": 182 + "minecraft:tnt_minecart": { + "protocol_id": 693 }, - "minecraft:cornflower": { - "protocol_id": 183 + "minecraft:torch": { + "protocol_id": 248 }, - "minecraft:lily_of_the_valley": { - "protocol_id": 184 + "minecraft:totem_of_undying": { + "protocol_id": 1053 }, - "minecraft:wither_rose": { - "protocol_id": 185 + "minecraft:trader_llama_spawn_egg": { + "protocol_id": 967 }, - "minecraft:spore_blossom": { - "protocol_id": 186 + "minecraft:trapped_chest": { + "protocol_id": 628 }, - "minecraft:brown_mushroom": { - "protocol_id": 187 + "minecraft:trident": { + "protocol_id": 1074 }, - "minecraft:red_mushroom": { - "protocol_id": 188 + "minecraft:tripwire_hook": { + "protocol_id": 627 }, - "minecraft:crimson_fungus": { - "protocol_id": 189 + "minecraft:tropical_fish": { + "protocol_id": 842 }, - "minecraft:warped_fungus": { - "protocol_id": 190 + "minecraft:tropical_fish_bucket": { + "protocol_id": 823 }, - "minecraft:crimson_roots": { - "protocol_id": 191 + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 968 }, - "minecraft:warped_roots": { - "protocol_id": 192 + "minecraft:tube_coral": { + "protocol_id": 550 }, - "minecraft:nether_sprouts": { - "protocol_id": 193 + "minecraft:tube_coral_block": { + "protocol_id": 545 }, - "minecraft:weeping_vines": { - "protocol_id": 194 + "minecraft:tube_coral_fan": { + "protocol_id": 560 }, - "minecraft:twisting_vines": { - "protocol_id": 195 + "minecraft:tuff": { + "protocol_id": 12 }, - "minecraft:sugar_cane": { - "protocol_id": 196 + "minecraft:turtle_egg": { + "protocol_id": 539 }, - "minecraft:kelp": { - "protocol_id": 197 + "minecraft:turtle_helmet": { + "protocol_id": 714 }, - "minecraft:moss_carpet": { - "protocol_id": 198 + "minecraft:turtle_spawn_egg": { + "protocol_id": 969 }, - "minecraft:moss_block": { - "protocol_id": 199 + "minecraft:twisting_vines": { + "protocol_id": 205 }, - "minecraft:hanging_roots": { - "protocol_id": 200 + "minecraft:verdant_froglight": { + "protocol_id": 1148 }, - "minecraft:big_dripleaf": { - "protocol_id": 201 + "minecraft:vex_spawn_egg": { + "protocol_id": 970 }, - "minecraft:small_dripleaf": { - "protocol_id": 202 + "minecraft:villager_spawn_egg": { + "protocol_id": 971 }, - "minecraft:bamboo": { - "protocol_id": 203 + "minecraft:vindicator_spawn_egg": { + "protocol_id": 972 }, - "minecraft:oak_slab": { - "protocol_id": 204 + "minecraft:vine": { + "protocol_id": 314 }, - "minecraft:spruce_slab": { - "protocol_id": 205 + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 973 }, - "minecraft:birch_slab": { - "protocol_id": 206 + "minecraft:warden_spawn_egg": { + "protocol_id": 974 }, - "minecraft:jungle_slab": { - "protocol_id": 207 + "minecraft:warped_button": { + "protocol_id": 642 }, - "minecraft:acacia_slab": { - "protocol_id": 208 + "minecraft:warped_door": { + "protocol_id": 665 }, - "minecraft:dark_oak_slab": { - "protocol_id": 209 + "minecraft:warped_fence": { + "protocol_id": 276 }, - "minecraft:crimson_slab": { - "protocol_id": 210 + "minecraft:warped_fence_gate": { + "protocol_id": 684 }, - "minecraft:warped_slab": { - "protocol_id": 211 + "minecraft:warped_fungus": { + "protocol_id": 200 }, - "minecraft:stone_slab": { - "protocol_id": 212 + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 696 }, - "minecraft:smooth_stone_slab": { - "protocol_id": 213 + "minecraft:warped_hyphae": { + "protocol_id": 141 }, - "minecraft:sandstone_slab": { - "protocol_id": 214 + "minecraft:warped_nylium": { + "protocol_id": 21 }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 215 + "minecraft:warped_planks": { + "protocol_id": 31 }, - "minecraft:petrified_oak_slab": { - "protocol_id": 216 + "minecraft:warped_pressure_plate": { + "protocol_id": 655 }, - "minecraft:cobblestone_slab": { - "protocol_id": 217 + "minecraft:warped_roots": { + "protocol_id": 202 }, - "minecraft:brick_slab": { - "protocol_id": 218 + "minecraft:warped_sign": { + "protocol_id": 812 }, - "minecraft:stone_brick_slab": { - "protocol_id": 219 + "minecraft:warped_slab": { + "protocol_id": 222 }, - "minecraft:nether_brick_slab": { - "protocol_id": 220 + "minecraft:warped_stairs": { + "protocol_id": 346 }, - "minecraft:quartz_slab": { - "protocol_id": 221 + "minecraft:warped_stem": { + "protocol_id": 114 }, - "minecraft:red_sandstone_slab": { - "protocol_id": 222 + "minecraft:warped_trapdoor": { + "protocol_id": 675 }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 223 + "minecraft:warped_wart_block": { + "protocol_id": 470 }, - "minecraft:purpur_slab": { - "protocol_id": 224 + "minecraft:water_bucket": { + "protocol_id": 814 }, - "minecraft:prismarine_slab": { - "protocol_id": 225 + "minecraft:waxed_copper_block": { + "protocol_id": 88 }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 226 + "minecraft:waxed_cut_copper": { + "protocol_id": 92 }, - "minecraft:dark_prismarine_slab": { - "protocol_id": 227 + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 100 }, - "minecraft:smooth_quartz": { - "protocol_id": 228 + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 96 }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 229 + "minecraft:waxed_exposed_copper": { + "protocol_id": 89 }, - "minecraft:smooth_sandstone": { - "protocol_id": 230 + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 93 }, - "minecraft:smooth_stone": { - "protocol_id": 231 + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 101 }, - "minecraft:bricks": { - "protocol_id": 232 + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 97 }, - "minecraft:bookshelf": { - "protocol_id": 233 + "minecraft:waxed_oxidized_copper": { + "protocol_id": 91 }, - "minecraft:mossy_cobblestone": { - "protocol_id": 234 + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 95 }, - "minecraft:obsidian": { - "protocol_id": 235 + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 103 }, - "minecraft:torch": { - "protocol_id": 236 + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 99 }, - "minecraft:end_rod": { - "protocol_id": 237 + "minecraft:waxed_weathered_copper": { + "protocol_id": 90 }, - "minecraft:chorus_plant": { - "protocol_id": 238 + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 94 }, - "minecraft:chorus_flower": { - "protocol_id": 239 + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 102 }, - "minecraft:purpur_block": { - "protocol_id": 240 + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 98 }, - "minecraft:purpur_pillar": { - "protocol_id": 241 + "minecraft:weathered_copper": { + "protocol_id": 74 }, - "minecraft:purpur_stairs": { - "protocol_id": 242 + "minecraft:weathered_cut_copper": { + "protocol_id": 78 }, - "minecraft:spawner": { - "protocol_id": 243 + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 86 }, - "minecraft:oak_stairs": { - "protocol_id": 244 + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 82 }, - "minecraft:chest": { - "protocol_id": 245 + "minecraft:weeping_vines": { + "protocol_id": 204 }, - "minecraft:crafting_table": { - "protocol_id": 246 + "minecraft:wet_sponge": { + "protocol_id": 152 }, - "minecraft:farmland": { - "protocol_id": 247 + "minecraft:wheat": { + "protocol_id": 772 }, - "minecraft:furnace": { - "protocol_id": 248 + "minecraft:wheat_seeds": { + "protocol_id": 771 }, - "minecraft:ladder": { - "protocol_id": 249 + "minecraft:white_banner": { + "protocol_id": 1025 }, - "minecraft:cobblestone_stairs": { - "protocol_id": 250 + "minecraft:white_bed": { + "protocol_id": 869 }, - "minecraft:snow": { - "protocol_id": 251 + "minecraft:white_candle": { + "protocol_id": 1126 }, - "minecraft:ice": { - "protocol_id": 252 + "minecraft:white_carpet": { + "protocol_id": 398 }, - "minecraft:snow_block": { - "protocol_id": 253 + "minecraft:white_concrete": { + "protocol_id": 507 }, - "minecraft:cactus": { - "protocol_id": 254 + "minecraft:white_concrete_powder": { + "protocol_id": 523 }, - "minecraft:clay": { - "protocol_id": 255 + "minecraft:white_dye": { + "protocol_id": 849 }, - "minecraft:jukebox": { - "protocol_id": 256 + "minecraft:white_glazed_terracotta": { + "protocol_id": 491 }, - "minecraft:oak_fence": { - "protocol_id": 257 + "minecraft:white_shulker_box": { + "protocol_id": 475 }, - "minecraft:spruce_fence": { - "protocol_id": 258 + "minecraft:white_stained_glass": { + "protocol_id": 423 }, - "minecraft:birch_fence": { - "protocol_id": 259 + "minecraft:white_stained_glass_pane": { + "protocol_id": 439 }, - "minecraft:jungle_fence": { - "protocol_id": 260 + "minecraft:white_terracotta": { + "protocol_id": 379 }, - "minecraft:acacia_fence": { - "protocol_id": 261 + "minecraft:white_tulip": { + "protocol_id": 190 }, - "minecraft:dark_oak_fence": { - "protocol_id": 262 + "minecraft:white_wool": { + "protocol_id": 167 }, - "minecraft:crimson_fence": { - "protocol_id": 263 + "minecraft:witch_spawn_egg": { + "protocol_id": 975 }, - "minecraft:warped_fence": { - "protocol_id": 264 + "minecraft:wither_rose": { + "protocol_id": 195 }, - "minecraft:pumpkin": { - "protocol_id": 265 + "minecraft:wither_skeleton_skull": { + "protocol_id": 997 }, - "minecraft:carved_pumpkin": { - "protocol_id": 266 + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 976 }, - "minecraft:jack_o_lantern": { - "protocol_id": 267 + "minecraft:wolf_spawn_egg": { + "protocol_id": 977 }, - "minecraft:netherrack": { - "protocol_id": 268 + "minecraft:wooden_axe": { + "protocol_id": 738 }, - "minecraft:soul_sand": { - "protocol_id": 269 + "minecraft:wooden_hoe": { + "protocol_id": 739 }, - "minecraft:soul_soil": { - "protocol_id": 270 + "minecraft:wooden_pickaxe": { + "protocol_id": 737 }, - "minecraft:basalt": { - "protocol_id": 271 + "minecraft:wooden_shovel": { + "protocol_id": 736 }, - "minecraft:polished_basalt": { - "protocol_id": 272 + "minecraft:wooden_sword": { + "protocol_id": 735 }, - "minecraft:smooth_basalt": { - "protocol_id": 273 + "minecraft:writable_book": { + "protocol_id": 985 }, - "minecraft:soul_torch": { - "protocol_id": 274 + "minecraft:written_book": { + "protocol_id": 986 }, - "minecraft:glowstone": { - "protocol_id": 275 + "minecraft:yellow_banner": { + "protocol_id": 1029 }, - "minecraft:infested_stone": { - "protocol_id": 276 + "minecraft:yellow_bed": { + "protocol_id": 873 }, - "minecraft:infested_cobblestone": { - "protocol_id": 277 + "minecraft:yellow_candle": { + "protocol_id": 1130 }, - "minecraft:infested_stone_bricks": { - "protocol_id": 278 + "minecraft:yellow_carpet": { + "protocol_id": 402 }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 279 + "minecraft:yellow_concrete": { + "protocol_id": 511 }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 280 + "minecraft:yellow_concrete_powder": { + "protocol_id": 527 }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 281 + "minecraft:yellow_dye": { + "protocol_id": 853 }, - "minecraft:infested_deepslate": { - "protocol_id": 282 + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 495 }, - "minecraft:stone_bricks": { - "protocol_id": 283 + "minecraft:yellow_shulker_box": { + "protocol_id": 479 }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 284 + "minecraft:yellow_stained_glass": { + "protocol_id": 427 }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 285 + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 443 }, - "minecraft:chiseled_stone_bricks": { - "protocol_id": 286 + "minecraft:yellow_terracotta": { + "protocol_id": 383 }, - "minecraft:deepslate_bricks": { - "protocol_id": 287 + "minecraft:yellow_wool": { + "protocol_id": 171 }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 288 + "minecraft:zoglin_spawn_egg": { + "protocol_id": 978 }, - "minecraft:deepslate_tiles": { - "protocol_id": 289 + "minecraft:zombie_head": { + "protocol_id": 999 }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 290 + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 980 }, - "minecraft:chiseled_deepslate": { - "protocol_id": 291 + "minecraft:zombie_spawn_egg": { + "protocol_id": 979 }, - "minecraft:brown_mushroom_block": { - "protocol_id": 292 + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 981 }, - "minecraft:red_mushroom_block": { - "protocol_id": 293 + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 982 + } + }, + "protocol_id": 7 + }, + "minecraft:loot_condition_type": { + "entries": { + "minecraft:alternative": { + "protocol_id": 1 }, - "minecraft:mushroom_stem": { - "protocol_id": 294 + "minecraft:block_state_property": { + "protocol_id": 7 }, - "minecraft:iron_bars": { - "protocol_id": 295 + "minecraft:damage_source_properties": { + "protocol_id": 11 }, - "minecraft:chain": { - "protocol_id": 296 + "minecraft:entity_properties": { + "protocol_id": 4 }, - "minecraft:glass_pane": { - "protocol_id": 297 + "minecraft:entity_scores": { + "protocol_id": 6 + }, + "minecraft:inverted": { + "protocol_id": 0 + }, + "minecraft:killed_by_player": { + "protocol_id": 5 + }, + "minecraft:location_check": { + "protocol_id": 12 + }, + "minecraft:match_tool": { + "protocol_id": 8 + }, + "minecraft:random_chance": { + "protocol_id": 2 + }, + "minecraft:random_chance_with_looting": { + "protocol_id": 3 + }, + "minecraft:reference": { + "protocol_id": 14 + }, + "minecraft:survives_explosion": { + "protocol_id": 10 + }, + "minecraft:table_bonus": { + "protocol_id": 9 + }, + "minecraft:time_check": { + "protocol_id": 15 + }, + "minecraft:value_check": { + "protocol_id": 16 + }, + "minecraft:weather_check": { + "protocol_id": 13 + } + }, + "protocol_id": 32 + }, + "minecraft:loot_function_type": { + "entries": { + "minecraft:apply_bonus": { + "protocol_id": 15 + }, + "minecraft:copy_name": { + "protocol_id": 12 + }, + "minecraft:copy_nbt": { + "protocol_id": 20 + }, + "minecraft:copy_state": { + "protocol_id": 21 + }, + "minecraft:enchant_randomly": { + "protocol_id": 2 + }, + "minecraft:enchant_with_levels": { + "protocol_id": 1 + }, + "minecraft:exploration_map": { + "protocol_id": 10 + }, + "minecraft:explosion_decay": { + "protocol_id": 17 + }, + "minecraft:fill_player_head": { + "protocol_id": 19 + }, + "minecraft:furnace_smelt": { + "protocol_id": 5 + }, + "minecraft:limit_count": { + "protocol_id": 14 + }, + "minecraft:looting_enchant": { + "protocol_id": 6 + }, + "minecraft:set_attributes": { + "protocol_id": 8 + }, + "minecraft:set_banner_pattern": { + "protocol_id": 22 + }, + "minecraft:set_contents": { + "protocol_id": 13 + }, + "minecraft:set_count": { + "protocol_id": 0 + }, + "minecraft:set_damage": { + "protocol_id": 7 + }, + "minecraft:set_enchantments": { + "protocol_id": 3 + }, + "minecraft:set_instrument": { + "protocol_id": 24 + }, + "minecraft:set_loot_table": { + "protocol_id": 16 + }, + "minecraft:set_lore": { + "protocol_id": 18 + }, + "minecraft:set_name": { + "protocol_id": 9 + }, + "minecraft:set_nbt": { + "protocol_id": 4 + }, + "minecraft:set_potion": { + "protocol_id": 23 + }, + "minecraft:set_stew_effect": { + "protocol_id": 11 + } + }, + "protocol_id": 31 + }, + "minecraft:loot_nbt_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:storage": { + "protocol_id": 0 + } + }, + "protocol_id": 34 + }, + "minecraft:loot_number_provider_type": { + "entries": { + "minecraft:binomial": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:score": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 33 + }, + "minecraft:loot_pool_entry_type": { + "entries": { + "minecraft:alternatives": { + "protocol_id": 5 + }, + "minecraft:dynamic": { + "protocol_id": 3 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:group": { + "protocol_id": 7 + }, + "minecraft:item": { + "protocol_id": 1 + }, + "minecraft:loot_table": { + "protocol_id": 2 + }, + "minecraft:sequence": { + "protocol_id": 6 + }, + "minecraft:tag": { + "protocol_id": 4 + } + }, + "protocol_id": 30 + }, + "minecraft:loot_score_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:fixed": { + "protocol_id": 0 + } + }, + "protocol_id": 35 + }, + "minecraft:memory_module_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:admiring_disabled": { + "protocol_id": 56 + }, + "minecraft:admiring_item": { + "protocol_id": 53 + }, + "minecraft:angry_at": { + "protocol_id": 51 + }, + "minecraft:ate_recently": { + "protocol_id": 71 + }, + "minecraft:attack_cooling_down": { + "protocol_id": 15 + }, + "minecraft:attack_target": { + "protocol_id": 14 + }, + "minecraft:avoid_target": { + "protocol_id": 25 + }, + "minecraft:breed_target": { + "protocol_id": 17 + }, + "minecraft:cant_reach_walk_target_since": { + "protocol_id": 30 + }, + "minecraft:celebrate_location": { + "protocol_id": 58 + }, + "minecraft:dancing": { + "protocol_id": 59 + }, + "minecraft:dig_cooldown": { + "protocol_id": 80 + }, + "minecraft:disable_walk_to_admire_item": { + "protocol_id": 55 + }, + "minecraft:disturbance_location": { + "protocol_id": 75 + }, + "minecraft:doors_to_close": { + "protocol_id": 21 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:golem_detected_recently": { + "protocol_id": 31 + }, + "minecraft:has_hunting_cooldown": { + "protocol_id": 44 + }, + "minecraft:heard_bell_time": { + "protocol_id": 29 + }, + "minecraft:hiding_place": { + "protocol_id": 28 + }, + "minecraft:home": { + "protocol_id": 1 + }, + "minecraft:hunted_recently": { + "protocol_id": 57 + }, + "minecraft:hurt_by": { + "protocol_id": 23 + }, + "minecraft:hurt_by_entity": { + "protocol_id": 24 + }, + "minecraft:interactable_doors": { + "protocol_id": 20 + }, + "minecraft:interaction_target": { + "protocol_id": 16 + }, + "minecraft:is_emerging": { + "protocol_id": 78 + }, + "minecraft:is_in_water": { + "protocol_id": 47 + }, + "minecraft:is_panicking": { + "protocol_id": 49 + }, + "minecraft:is_pregnant": { + "protocol_id": 48 + }, + "minecraft:is_sniffing": { + "protocol_id": 77 + }, + "minecraft:is_tempted": { + "protocol_id": 41 + }, + "minecraft:item_pickup_cooldown_ticks": { + "protocol_id": 91 + }, + "minecraft:job_site": { + "protocol_id": 2 + }, + "minecraft:last_slept": { + "protocol_id": 32 + }, + "minecraft:last_woken": { + "protocol_id": 33 + }, + "minecraft:last_worked_at_poi": { + "protocol_id": 34 + }, + "minecraft:liked_noteblock": { + "protocol_id": 89 + }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 90 + }, + "minecraft:liked_player": { + "protocol_id": 88 + }, + "minecraft:long_jump_cooling_down": { + "protocol_id": 42 + }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 43 + }, + "minecraft:look_target": { + "protocol_id": 13 + }, + "minecraft:meeting_point": { + "protocol_id": 4 + }, + "minecraft:mobs": { + "protocol_id": 6 + }, + "minecraft:nearby_adult_piglins": { + "protocol_id": 63 + }, + "minecraft:nearest_attackable": { + "protocol_id": 27 + }, + "minecraft:nearest_bed": { + "protocol_id": 22 + }, + "minecraft:nearest_hostile": { + "protocol_id": 26 + }, + "minecraft:nearest_player_holding_wanted_item": { + "protocol_id": 70 + }, + "minecraft:nearest_players": { + "protocol_id": 9 + }, + "minecraft:nearest_repellent": { + "protocol_id": 72 + }, + "minecraft:nearest_targetable_player_not_wearing_gold": { + "protocol_id": 62 + }, + "minecraft:nearest_visible_adult": { + "protocol_id": 35 + }, + "minecraft:nearest_visible_adult_hoglins": { + "protocol_id": 65 + }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 66 + }, + "minecraft:nearest_visible_adult_piglins": { + "protocol_id": 64 + }, + "minecraft:nearest_visible_baby_hoglin": { + "protocol_id": 61 + }, + "minecraft:nearest_visible_huntable_hoglin": { + "protocol_id": 60 + }, + "minecraft:nearest_visible_nemesis": { + "protocol_id": 37 + }, + "minecraft:nearest_visible_player": { + "protocol_id": 10 + }, + "minecraft:nearest_visible_targetable_player": { + "protocol_id": 11 + }, + "minecraft:nearest_visible_wanted_item": { + "protocol_id": 36 + }, + "minecraft:nearest_visible_zombified": { + "protocol_id": 67 + }, + "minecraft:pacified": { + "protocol_id": 73 + }, + "minecraft:path": { + "protocol_id": 19 + }, + "minecraft:play_dead_ticks": { + "protocol_id": 38 + }, + "minecraft:potential_job_site": { + "protocol_id": 3 + }, + "minecraft:ram_cooldown_ticks": { + "protocol_id": 45 + }, + "minecraft:ram_target": { + "protocol_id": 46 + }, + "minecraft:recent_projectile": { + "protocol_id": 76 + }, + "minecraft:ride_target": { + "protocol_id": 18 + }, + "minecraft:roar_sound_cooldown": { + "protocol_id": 81 + }, + "minecraft:roar_sound_delay": { + "protocol_id": 79 + }, + "minecraft:roar_target": { + "protocol_id": 74 + }, + "minecraft:secondary_job_site": { + "protocol_id": 5 + }, + "minecraft:sniff_cooldown": { + "protocol_id": 82 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 85 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 86 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 87 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 40 + }, + "minecraft:tempting_player": { + "protocol_id": 39 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 54 + }, + "minecraft:touch_cooldown": { + "protocol_id": 83 + }, + "minecraft:universal_anger": { + "protocol_id": 52 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 50 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 84 + }, + "minecraft:visible_adult_hoglin_count": { + "protocol_id": 69 + }, + "minecraft:visible_adult_piglin_count": { + "protocol_id": 68 + }, + "minecraft:visible_mobs": { + "protocol_id": 7 + }, + "minecraft:visible_villager_babies": { + "protocol_id": 8 + }, + "minecraft:walk_target": { + "protocol_id": 12 + } + }, + "protocol_id": 26 + }, + "minecraft:menu": { + "entries": { + "minecraft:anvil": { + "protocol_id": 7 + }, + "minecraft:beacon": { + "protocol_id": 8 + }, + "minecraft:blast_furnace": { + "protocol_id": 9 + }, + "minecraft:brewing_stand": { + "protocol_id": 10 + }, + "minecraft:cartography_table": { + "protocol_id": 22 + }, + "minecraft:crafting": { + "protocol_id": 11 + }, + "minecraft:enchantment": { + "protocol_id": 12 + }, + "minecraft:furnace": { + "protocol_id": 13 + }, + "minecraft:generic_3x3": { + "protocol_id": 6 + }, + "minecraft:generic_9x1": { + "protocol_id": 0 + }, + "minecraft:generic_9x2": { + "protocol_id": 1 + }, + "minecraft:generic_9x3": { + "protocol_id": 2 + }, + "minecraft:generic_9x4": { + "protocol_id": 3 + }, + "minecraft:generic_9x5": { + "protocol_id": 4 + }, + "minecraft:generic_9x6": { + "protocol_id": 5 + }, + "minecraft:grindstone": { + "protocol_id": 14 + }, + "minecraft:hopper": { + "protocol_id": 15 + }, + "minecraft:lectern": { + "protocol_id": 16 + }, + "minecraft:loom": { + "protocol_id": 17 + }, + "minecraft:merchant": { + "protocol_id": 18 + }, + "minecraft:shulker_box": { + "protocol_id": 19 + }, + "minecraft:smithing": { + "protocol_id": 20 + }, + "minecraft:smoker": { + "protocol_id": 21 + }, + "minecraft:stonecutter": { + "protocol_id": 23 + } + }, + "protocol_id": 16 + }, + "minecraft:mob_effect": { + "entries": { + "minecraft:absorption": { + "protocol_id": 22 + }, + "minecraft:bad_omen": { + "protocol_id": 31 + }, + "minecraft:blindness": { + "protocol_id": 15 + }, + "minecraft:conduit_power": { + "protocol_id": 29 + }, + "minecraft:darkness": { + "protocol_id": 33 + }, + "minecraft:dolphins_grace": { + "protocol_id": 30 + }, + "minecraft:fire_resistance": { + "protocol_id": 12 + }, + "minecraft:glowing": { + "protocol_id": 24 + }, + "minecraft:haste": { + "protocol_id": 3 + }, + "minecraft:health_boost": { + "protocol_id": 21 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 32 + }, + "minecraft:hunger": { + "protocol_id": 17 + }, + "minecraft:instant_damage": { + "protocol_id": 7 + }, + "minecraft:instant_health": { + "protocol_id": 6 + }, + "minecraft:invisibility": { + "protocol_id": 14 + }, + "minecraft:jump_boost": { + "protocol_id": 8 + }, + "minecraft:levitation": { + "protocol_id": 25 + }, + "minecraft:luck": { + "protocol_id": 26 + }, + "minecraft:mining_fatigue": { + "protocol_id": 4 + }, + "minecraft:nausea": { + "protocol_id": 9 + }, + "minecraft:night_vision": { + "protocol_id": 16 + }, + "minecraft:poison": { + "protocol_id": 19 + }, + "minecraft:regeneration": { + "protocol_id": 10 + }, + "minecraft:resistance": { + "protocol_id": 11 + }, + "minecraft:saturation": { + "protocol_id": 23 + }, + "minecraft:slow_falling": { + "protocol_id": 28 + }, + "minecraft:slowness": { + "protocol_id": 2 + }, + "minecraft:speed": { + "protocol_id": 1 + }, + "minecraft:strength": { + "protocol_id": 5 + }, + "minecraft:unluck": { + "protocol_id": 27 + }, + "minecraft:water_breathing": { + "protocol_id": 13 + }, + "minecraft:weakness": { + "protocol_id": 18 + }, + "minecraft:wither": { + "protocol_id": 20 + } + }, + "protocol_id": 3 + }, + "minecraft:painting_variant": { + "default": "minecraft:kebab", + "entries": { + "minecraft:alban": { + "protocol_id": 2 + }, + "minecraft:aztec": { + "protocol_id": 1 + }, + "minecraft:aztec2": { + "protocol_id": 3 + }, + "minecraft:bomb": { + "protocol_id": 4 + }, + "minecraft:burning_skull": { + "protocol_id": 23 + }, + "minecraft:bust": { + "protocol_id": 15 + }, + "minecraft:courbet": { + "protocol_id": 8 + }, + "minecraft:creebet": { + "protocol_id": 11 + }, + "minecraft:donkey_kong": { + "protocol_id": 29 + }, + "minecraft:earth": { + "protocol_id": 25 + }, + "minecraft:fighters": { + "protocol_id": 20 + }, + "minecraft:fire": { + "protocol_id": 28 + }, + "minecraft:graham": { + "protocol_id": 13 + }, + "minecraft:kebab": { + "protocol_id": 0 + }, + "minecraft:match": { + "protocol_id": 14 + }, + "minecraft:pigscene": { + "protocol_id": 22 + }, + "minecraft:plant": { + "protocol_id": 5 + }, + "minecraft:pointer": { + "protocol_id": 21 + }, + "minecraft:pool": { + "protocol_id": 7 + }, + "minecraft:sea": { + "protocol_id": 9 + }, + "minecraft:skeleton": { + "protocol_id": 24 + }, + "minecraft:skull_and_roses": { + "protocol_id": 18 + }, + "minecraft:stage": { + "protocol_id": 16 + }, + "minecraft:sunset": { + "protocol_id": 10 + }, + "minecraft:void": { + "protocol_id": 17 + }, + "minecraft:wanderer": { + "protocol_id": 12 + }, + "minecraft:wasteland": { + "protocol_id": 6 + }, + "minecraft:water": { + "protocol_id": 27 + }, + "minecraft:wind": { + "protocol_id": 26 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 11 + }, + "minecraft:particle_type": { + "entries": { + "minecraft:ambient_entity_effect": { + "protocol_id": 0 + }, + "minecraft:angry_villager": { + "protocol_id": 1 + }, + "minecraft:ash": { + "protocol_id": 71 + }, + "minecraft:block": { + "protocol_id": 2 + }, + "minecraft:block_marker": { + "protocol_id": 3 + }, + "minecraft:bubble": { + "protocol_id": 4 + }, + "minecraft:bubble_column_up": { + "protocol_id": 61 + }, + "minecraft:bubble_pop": { + "protocol_id": 59 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 64 + }, + "minecraft:campfire_signal_smoke": { + "protocol_id": 65 + }, + "minecraft:cloud": { + "protocol_id": 5 + }, + "minecraft:composter": { + "protocol_id": 36 + }, + "minecraft:crimson_spore": { + "protocol_id": 72 + }, + "minecraft:crit": { + "protocol_id": 6 + }, + "minecraft:current_down": { + "protocol_id": 60 + }, + "minecraft:damage_indicator": { + "protocol_id": 7 + }, + "minecraft:dolphin": { + "protocol_id": 63 + }, + "minecraft:dragon_breath": { + "protocol_id": 8 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 82 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 84 + }, + "minecraft:dripping_honey": { + "protocol_id": 66 + }, + "minecraft:dripping_lava": { + "protocol_id": 9 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 75 + }, + "minecraft:dripping_water": { + "protocol_id": 12 + }, + "minecraft:dust": { + "protocol_id": 14 + }, + "minecraft:dust_color_transition": { + "protocol_id": 15 + }, + "minecraft:effect": { + "protocol_id": 16 + }, + "minecraft:elder_guardian": { + "protocol_id": 17 + }, + "minecraft:electric_spark": { + "protocol_id": 90 + }, + "minecraft:enchant": { + "protocol_id": 19 + }, + "minecraft:enchanted_hit": { + "protocol_id": 18 + }, + "minecraft:end_rod": { + "protocol_id": 20 + }, + "minecraft:entity_effect": { + "protocol_id": 21 + }, + "minecraft:explosion": { + "protocol_id": 23 + }, + "minecraft:explosion_emitter": { + "protocol_id": 22 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 83 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 85 + }, + "minecraft:falling_dust": { + "protocol_id": 25 + }, + "minecraft:falling_honey": { + "protocol_id": 67 + }, + "minecraft:falling_lava": { + "protocol_id": 10 + }, + "minecraft:falling_nectar": { + "protocol_id": 69 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 76 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 70 + }, + "minecraft:falling_water": { + "protocol_id": 13 + }, + "minecraft:firework": { + "protocol_id": 26 + }, + "minecraft:fishing": { + "protocol_id": 27 + }, + "minecraft:flame": { + "protocol_id": 28 + }, + "minecraft:flash": { + "protocol_id": 34 + }, + "minecraft:glow": { + "protocol_id": 87 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 86 + }, + "minecraft:happy_villager": { + "protocol_id": 35 + }, + "minecraft:heart": { + "protocol_id": 37 + }, + "minecraft:instant_effect": { + "protocol_id": 38 + }, + "minecraft:item": { + "protocol_id": 39 + }, + "minecraft:item_slime": { + "protocol_id": 41 + }, + "minecraft:item_snowball": { + "protocol_id": 42 + }, + "minecraft:landing_honey": { + "protocol_id": 68 + }, + "minecraft:landing_lava": { + "protocol_id": 11 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 77 + }, + "minecraft:large_smoke": { + "protocol_id": 43 + }, + "minecraft:lava": { + "protocol_id": 44 + }, + "minecraft:mycelium": { + "protocol_id": 45 + }, + "minecraft:nautilus": { + "protocol_id": 62 + }, + "minecraft:note": { + "protocol_id": 46 + }, + "minecraft:poof": { + "protocol_id": 47 + }, + "minecraft:portal": { + "protocol_id": 48 + }, + "minecraft:rain": { + "protocol_id": 49 + }, + "minecraft:reverse_portal": { + "protocol_id": 78 + }, + "minecraft:scrape": { + "protocol_id": 91 + }, + "minecraft:sculk_charge": { + "protocol_id": 30 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 31 + }, + "minecraft:sculk_soul": { + "protocol_id": 29 + }, + "minecraft:shriek": { + "protocol_id": 92 + }, + "minecraft:small_flame": { + "protocol_id": 80 + }, + "minecraft:smoke": { + "protocol_id": 50 + }, + "minecraft:sneeze": { + "protocol_id": 51 + }, + "minecraft:snowflake": { + "protocol_id": 81 + }, + "minecraft:sonic_boom": { + "protocol_id": 24 + }, + "minecraft:soul": { + "protocol_id": 33 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 32 + }, + "minecraft:spit": { + "protocol_id": 52 + }, + "minecraft:splash": { + "protocol_id": 57 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 74 + }, + "minecraft:squid_ink": { + "protocol_id": 53 + }, + "minecraft:sweep_attack": { + "protocol_id": 54 + }, + "minecraft:totem_of_undying": { + "protocol_id": 55 + }, + "minecraft:underwater": { + "protocol_id": 56 + }, + "minecraft:vibration": { + "protocol_id": 40 + }, + "minecraft:warped_spore": { + "protocol_id": 73 + }, + "minecraft:wax_off": { + "protocol_id": 89 + }, + "minecraft:wax_on": { + "protocol_id": 88 + }, + "minecraft:white_ash": { + "protocol_id": 79 + }, + "minecraft:witch": { + "protocol_id": 58 + } + }, + "protocol_id": 9 + }, + "minecraft:point_of_interest_type": { + "entries": { + "minecraft:armorer": { + "protocol_id": 0 + }, + "minecraft:bee_nest": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 15 + }, + "minecraft:butcher": { + "protocol_id": 1 + }, + "minecraft:cartographer": { + "protocol_id": 2 + }, + "minecraft:cleric": { + "protocol_id": 3 + }, + "minecraft:farmer": { + "protocol_id": 4 + }, + "minecraft:fisherman": { + "protocol_id": 5 + }, + "minecraft:fletcher": { + "protocol_id": 6 + }, + "minecraft:home": { + "protocol_id": 13 + }, + "minecraft:leatherworker": { + "protocol_id": 7 + }, + "minecraft:librarian": { + "protocol_id": 8 + }, + "minecraft:lightning_rod": { + "protocol_id": 19 + }, + "minecraft:lodestone": { + "protocol_id": 18 + }, + "minecraft:mason": { + "protocol_id": 9 + }, + "minecraft:meeting": { + "protocol_id": 14 + }, + "minecraft:nether_portal": { + "protocol_id": 17 + }, + "minecraft:shepherd": { + "protocol_id": 10 + }, + "minecraft:toolsmith": { + "protocol_id": 11 + }, + "minecraft:weaponsmith": { + "protocol_id": 12 + } + }, + "protocol_id": 25 + }, + "minecraft:pos_rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:axis_aligned_linear_pos": { + "protocol_id": 2 + }, + "minecraft:linear_pos": { + "protocol_id": 1 + } + }, + "protocol_id": 15 + }, + "minecraft:position_source_type": { + "entries": { + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:entity": { + "protocol_id": 1 + } + }, + "protocol_id": 20 + }, + "minecraft:potion": { + "default": "minecraft:empty", + "entries": { + "minecraft:awkward": { + "protocol_id": 4 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:fire_resistance": { + "protocol_id": 12 + }, + "minecraft:harming": { + "protocol_id": 27 + }, + "minecraft:healing": { + "protocol_id": 25 + }, + "minecraft:invisibility": { + "protocol_id": 7 + }, + "minecraft:leaping": { + "protocol_id": 9 + }, + "minecraft:long_fire_resistance": { + "protocol_id": 13 + }, + "minecraft:long_invisibility": { + "protocol_id": 8 + }, + "minecraft:long_leaping": { + "protocol_id": 10 + }, + "minecraft:long_night_vision": { + "protocol_id": 6 + }, + "minecraft:long_poison": { + "protocol_id": 30 + }, + "minecraft:long_regeneration": { + "protocol_id": 33 + }, + "minecraft:long_slow_falling": { + "protocol_id": 42 + }, + "minecraft:long_slowness": { + "protocol_id": 18 + }, + "minecraft:long_strength": { + "protocol_id": 36 + }, + "minecraft:long_swiftness": { + "protocol_id": 15 + }, + "minecraft:long_turtle_master": { + "protocol_id": 21 + }, + "minecraft:long_water_breathing": { + "protocol_id": 24 + }, + "minecraft:long_weakness": { + "protocol_id": 39 + }, + "minecraft:luck": { + "protocol_id": 40 + }, + "minecraft:mundane": { + "protocol_id": 2 + }, + "minecraft:night_vision": { + "protocol_id": 5 + }, + "minecraft:poison": { + "protocol_id": 29 + }, + "minecraft:regeneration": { + "protocol_id": 32 + }, + "minecraft:slow_falling": { + "protocol_id": 41 + }, + "minecraft:slowness": { + "protocol_id": 17 + }, + "minecraft:strength": { + "protocol_id": 35 + }, + "minecraft:strong_harming": { + "protocol_id": 28 + }, + "minecraft:strong_healing": { + "protocol_id": 26 + }, + "minecraft:strong_leaping": { + "protocol_id": 11 + }, + "minecraft:strong_poison": { + "protocol_id": 31 + }, + "minecraft:strong_regeneration": { + "protocol_id": 34 + }, + "minecraft:strong_slowness": { + "protocol_id": 19 + }, + "minecraft:strong_strength": { + "protocol_id": 37 + }, + "minecraft:strong_swiftness": { + "protocol_id": 16 + }, + "minecraft:strong_turtle_master": { + "protocol_id": 22 + }, + "minecraft:swiftness": { + "protocol_id": 14 + }, + "minecraft:thick": { + "protocol_id": 3 + }, + "minecraft:turtle_master": { + "protocol_id": 20 + }, + "minecraft:water": { + "protocol_id": 1 + }, + "minecraft:water_breathing": { + "protocol_id": 23 + }, + "minecraft:weakness": { + "protocol_id": 38 + } + }, + "protocol_id": 8 + }, + "minecraft:recipe_serializer": { + "entries": { + "minecraft:blasting": { + "protocol_id": 16 + }, + "minecraft:campfire_cooking": { + "protocol_id": 18 + }, + "minecraft:crafting_shaped": { + "protocol_id": 0 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 1 + }, + "minecraft:crafting_special_armordye": { + "protocol_id": 2 + }, + "minecraft:crafting_special_bannerduplicate": { + "protocol_id": 10 + }, + "minecraft:crafting_special_bookcloning": { + "protocol_id": 3 + }, + "minecraft:crafting_special_firework_rocket": { + "protocol_id": 6 + }, + "minecraft:crafting_special_firework_star": { + "protocol_id": 7 + }, + "minecraft:crafting_special_firework_star_fade": { + "protocol_id": 8 + }, + "minecraft:crafting_special_mapcloning": { + "protocol_id": 4 + }, + "minecraft:crafting_special_mapextending": { + "protocol_id": 5 + }, + "minecraft:crafting_special_repairitem": { + "protocol_id": 14 + }, + "minecraft:crafting_special_shielddecoration": { + "protocol_id": 11 + }, + "minecraft:crafting_special_shulkerboxcoloring": { + "protocol_id": 12 + }, + "minecraft:crafting_special_suspiciousstew": { + "protocol_id": 13 + }, + "minecraft:crafting_special_tippedarrow": { + "protocol_id": 9 + }, + "minecraft:smelting": { + "protocol_id": 15 + }, + "minecraft:smithing": { + "protocol_id": 20 + }, + "minecraft:smoking": { + "protocol_id": 17 + }, + "minecraft:stonecutting": { + "protocol_id": 19 + } + }, + "protocol_id": 18 + }, + "minecraft:recipe_type": { + "entries": { + "minecraft:blasting": { + "protocol_id": 2 + }, + "minecraft:campfire_cooking": { + "protocol_id": 4 + }, + "minecraft:crafting": { + "protocol_id": 0 + }, + "minecraft:smelting": { + "protocol_id": 1 + }, + "minecraft:smithing": { + "protocol_id": 6 + }, + "minecraft:smoking": { + "protocol_id": 3 + }, + "minecraft:stonecutting": { + "protocol_id": 5 + } + }, + "protocol_id": 17 + }, + "minecraft:rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:block_match": { + "protocol_id": 1 + }, + "minecraft:blockstate_match": { + "protocol_id": 2 + }, + "minecraft:random_block_match": { + "protocol_id": 4 + }, + "minecraft:random_blockstate_match": { + "protocol_id": 5 + }, + "minecraft:tag_match": { + "protocol_id": 3 + } + }, + "protocol_id": 14 + }, + "minecraft:schedule": { + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:simple": { + "protocol_id": 1 + }, + "minecraft:villager_baby": { + "protocol_id": 2 + }, + "minecraft:villager_default": { + "protocol_id": 3 + } + }, + "protocol_id": 28 + }, + "minecraft:sensor_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:axolotl_attackables": { + "protocol_id": 14 + }, + "minecraft:axolotl_temptations": { + "protocol_id": 15 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:frog_attackables": { + "protocol_id": 18 + }, + "minecraft:frog_temptations": { + "protocol_id": 17 + }, + "minecraft:goat_temptations": { + "protocol_id": 16 }, - "minecraft:melon": { - "protocol_id": 298 + "minecraft:golem_detected": { + "protocol_id": 9 }, - "minecraft:vine": { - "protocol_id": 299 + "minecraft:hoglin_specific_sensor": { + "protocol_id": 12 }, - "minecraft:glow_lichen": { - "protocol_id": 300 + "minecraft:hurt_by": { + "protocol_id": 5 }, - "minecraft:brick_stairs": { - "protocol_id": 301 + "minecraft:is_in_water": { + "protocol_id": 19 }, - "minecraft:stone_brick_stairs": { - "protocol_id": 302 + "minecraft:nearest_adult": { + "protocol_id": 13 }, - "minecraft:mycelium": { - "protocol_id": 303 + "minecraft:nearest_bed": { + "protocol_id": 4 }, - "minecraft:lily_pad": { - "protocol_id": 304 + "minecraft:nearest_items": { + "protocol_id": 1 }, - "minecraft:nether_bricks": { - "protocol_id": 305 + "minecraft:nearest_living_entities": { + "protocol_id": 2 }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 306 + "minecraft:nearest_players": { + "protocol_id": 3 }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 307 + "minecraft:piglin_brute_specific_sensor": { + "protocol_id": 11 }, - "minecraft:nether_brick_fence": { - "protocol_id": 308 + "minecraft:piglin_specific_sensor": { + "protocol_id": 10 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 309 + "minecraft:secondary_pois": { + "protocol_id": 8 }, - "minecraft:enchanting_table": { - "protocol_id": 310 + "minecraft:villager_babies": { + "protocol_id": 7 }, - "minecraft:end_portal_frame": { - "protocol_id": 311 + "minecraft:villager_hostiles": { + "protocol_id": 6 }, - "minecraft:end_stone": { - "protocol_id": 312 + "minecraft:warden_entity_sensor": { + "protocol_id": 20 + } + }, + "protocol_id": 27 + }, + "minecraft:sound_event": { + "entries": { + "minecraft:ambient.basalt_deltas.additions": { + "protocol_id": 8 }, - "minecraft:end_stone_bricks": { - "protocol_id": 313 + "minecraft:ambient.basalt_deltas.loop": { + "protocol_id": 9 }, - "minecraft:dragon_egg": { - "protocol_id": 314 + "minecraft:ambient.basalt_deltas.mood": { + "protocol_id": 10 }, - "minecraft:sandstone_stairs": { - "protocol_id": 315 + "minecraft:ambient.cave": { + "protocol_id": 7 }, - "minecraft:ender_chest": { - "protocol_id": 316 + "minecraft:ambient.crimson_forest.additions": { + "protocol_id": 11 }, - "minecraft:emerald_block": { - "protocol_id": 317 + "minecraft:ambient.crimson_forest.loop": { + "protocol_id": 12 }, - "minecraft:spruce_stairs": { - "protocol_id": 318 + "minecraft:ambient.crimson_forest.mood": { + "protocol_id": 13 }, - "minecraft:birch_stairs": { - "protocol_id": 319 + "minecraft:ambient.nether_wastes.additions": { + "protocol_id": 14 }, - "minecraft:jungle_stairs": { - "protocol_id": 320 + "minecraft:ambient.nether_wastes.loop": { + "protocol_id": 15 }, - "minecraft:crimson_stairs": { - "protocol_id": 321 + "minecraft:ambient.nether_wastes.mood": { + "protocol_id": 16 }, - "minecraft:warped_stairs": { - "protocol_id": 322 + "minecraft:ambient.soul_sand_valley.additions": { + "protocol_id": 17 }, - "minecraft:command_block": { - "protocol_id": 323 + "minecraft:ambient.soul_sand_valley.loop": { + "protocol_id": 18 }, - "minecraft:beacon": { - "protocol_id": 324 + "minecraft:ambient.soul_sand_valley.mood": { + "protocol_id": 19 }, - "minecraft:cobblestone_wall": { - "protocol_id": 325 + "minecraft:ambient.underwater.enter": { + "protocol_id": 23 + }, + "minecraft:ambient.underwater.exit": { + "protocol_id": 24 + }, + "minecraft:ambient.underwater.loop": { + "protocol_id": 25 + }, + "minecraft:ambient.underwater.loop.additions": { + "protocol_id": 26 + }, + "minecraft:ambient.underwater.loop.additions.rare": { + "protocol_id": 27 + }, + "minecraft:ambient.underwater.loop.additions.ultra_rare": { + "protocol_id": 28 + }, + "minecraft:ambient.warped_forest.additions": { + "protocol_id": 20 + }, + "minecraft:ambient.warped_forest.loop": { + "protocol_id": 21 + }, + "minecraft:ambient.warped_forest.mood": { + "protocol_id": 22 + }, + "minecraft:block.amethyst_block.break": { + "protocol_id": 29 + }, + "minecraft:block.amethyst_block.chime": { + "protocol_id": 30 + }, + "minecraft:block.amethyst_block.fall": { + "protocol_id": 31 + }, + "minecraft:block.amethyst_block.hit": { + "protocol_id": 32 + }, + "minecraft:block.amethyst_block.place": { + "protocol_id": 33 + }, + "minecraft:block.amethyst_block.step": { + "protocol_id": 34 + }, + "minecraft:block.amethyst_cluster.break": { + "protocol_id": 35 + }, + "minecraft:block.amethyst_cluster.fall": { + "protocol_id": 36 + }, + "minecraft:block.amethyst_cluster.hit": { + "protocol_id": 37 + }, + "minecraft:block.amethyst_cluster.place": { + "protocol_id": 38 + }, + "minecraft:block.amethyst_cluster.step": { + "protocol_id": 39 + }, + "minecraft:block.ancient_debris.break": { + "protocol_id": 40 + }, + "minecraft:block.ancient_debris.fall": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.hit": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 42 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 41 + }, + "minecraft:block.anvil.break": { + "protocol_id": 45 + }, + "minecraft:block.anvil.destroy": { + "protocol_id": 46 + }, + "minecraft:block.anvil.fall": { + "protocol_id": 47 + }, + "minecraft:block.anvil.hit": { + "protocol_id": 48 + }, + "minecraft:block.anvil.land": { + "protocol_id": 49 + }, + "minecraft:block.anvil.place": { + "protocol_id": 50 + }, + "minecraft:block.anvil.step": { + "protocol_id": 51 + }, + "minecraft:block.anvil.use": { + "protocol_id": 52 + }, + "minecraft:block.azalea.break": { + "protocol_id": 79 + }, + "minecraft:block.azalea.fall": { + "protocol_id": 80 + }, + "minecraft:block.azalea.hit": { + "protocol_id": 81 + }, + "minecraft:block.azalea.place": { + "protocol_id": 82 + }, + "minecraft:block.azalea.step": { + "protocol_id": 83 + }, + "minecraft:block.azalea_leaves.break": { + "protocol_id": 84 + }, + "minecraft:block.azalea_leaves.fall": { + "protocol_id": 85 + }, + "minecraft:block.azalea_leaves.hit": { + "protocol_id": 86 + }, + "minecraft:block.azalea_leaves.place": { + "protocol_id": 87 + }, + "minecraft:block.azalea_leaves.step": { + "protocol_id": 88 + }, + "minecraft:block.bamboo.break": { + "protocol_id": 89 + }, + "minecraft:block.bamboo.fall": { + "protocol_id": 90 + }, + "minecraft:block.bamboo.hit": { + "protocol_id": 91 + }, + "minecraft:block.bamboo.place": { + "protocol_id": 92 + }, + "minecraft:block.bamboo.step": { + "protocol_id": 93 }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 326 + "minecraft:block.bamboo_sapling.break": { + "protocol_id": 94 }, - "minecraft:brick_wall": { - "protocol_id": 327 + "minecraft:block.bamboo_sapling.hit": { + "protocol_id": 95 }, - "minecraft:prismarine_wall": { - "protocol_id": 328 + "minecraft:block.bamboo_sapling.place": { + "protocol_id": 96 }, - "minecraft:red_sandstone_wall": { - "protocol_id": 329 + "minecraft:block.barrel.close": { + "protocol_id": 97 }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 330 + "minecraft:block.barrel.open": { + "protocol_id": 98 }, - "minecraft:granite_wall": { - "protocol_id": 331 + "minecraft:block.basalt.break": { + "protocol_id": 99 }, - "minecraft:stone_brick_wall": { - "protocol_id": 332 + "minecraft:block.basalt.fall": { + "protocol_id": 103 }, - "minecraft:nether_brick_wall": { - "protocol_id": 333 + "minecraft:block.basalt.hit": { + "protocol_id": 102 }, - "minecraft:andesite_wall": { - "protocol_id": 334 + "minecraft:block.basalt.place": { + "protocol_id": 101 }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 335 + "minecraft:block.basalt.step": { + "protocol_id": 100 }, - "minecraft:sandstone_wall": { - "protocol_id": 336 + "minecraft:block.beacon.activate": { + "protocol_id": 109 }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 337 + "minecraft:block.beacon.ambient": { + "protocol_id": 110 }, - "minecraft:diorite_wall": { - "protocol_id": 338 + "minecraft:block.beacon.deactivate": { + "protocol_id": 111 }, - "minecraft:blackstone_wall": { - "protocol_id": 339 + "minecraft:block.beacon.power_select": { + "protocol_id": 112 }, - "minecraft:polished_blackstone_wall": { - "protocol_id": 340 + "minecraft:block.beehive.drip": { + "protocol_id": 119 }, - "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 341 + "minecraft:block.beehive.enter": { + "protocol_id": 120 }, - "minecraft:cobbled_deepslate_wall": { - "protocol_id": 342 + "minecraft:block.beehive.exit": { + "protocol_id": 121 }, - "minecraft:polished_deepslate_wall": { - "protocol_id": 343 + "minecraft:block.beehive.shear": { + "protocol_id": 122 }, - "minecraft:deepslate_brick_wall": { - "protocol_id": 344 + "minecraft:block.beehive.work": { + "protocol_id": 123 }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 345 + "minecraft:block.bell.resonate": { + "protocol_id": 125 }, - "minecraft:anvil": { - "protocol_id": 346 + "minecraft:block.bell.use": { + "protocol_id": 124 }, - "minecraft:chipped_anvil": { - "protocol_id": 347 + "minecraft:block.big_dripleaf.break": { + "protocol_id": 126 }, - "minecraft:damaged_anvil": { - "protocol_id": 348 + "minecraft:block.big_dripleaf.fall": { + "protocol_id": 127 }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 349 + "minecraft:block.big_dripleaf.hit": { + "protocol_id": 128 }, - "minecraft:quartz_block": { - "protocol_id": 350 + "minecraft:block.big_dripleaf.place": { + "protocol_id": 129 }, - "minecraft:quartz_bricks": { - "protocol_id": 351 + "minecraft:block.big_dripleaf.step": { + "protocol_id": 130 }, - "minecraft:quartz_pillar": { - "protocol_id": 352 + "minecraft:block.big_dripleaf.tilt_down": { + "protocol_id": 307 }, - "minecraft:quartz_stairs": { - "protocol_id": 353 + "minecraft:block.big_dripleaf.tilt_up": { + "protocol_id": 308 }, - "minecraft:white_terracotta": { - "protocol_id": 354 + "minecraft:block.blastfurnace.fire_crackle": { + "protocol_id": 146 }, - "minecraft:orange_terracotta": { - "protocol_id": 355 + "minecraft:block.bone_block.break": { + "protocol_id": 138 }, - "minecraft:magenta_terracotta": { - "protocol_id": 356 + "minecraft:block.bone_block.fall": { + "protocol_id": 139 }, - "minecraft:light_blue_terracotta": { - "protocol_id": 357 + "minecraft:block.bone_block.hit": { + "protocol_id": 140 }, - "minecraft:yellow_terracotta": { - "protocol_id": 358 + "minecraft:block.bone_block.place": { + "protocol_id": 141 }, - "minecraft:lime_terracotta": { - "protocol_id": 359 + "minecraft:block.bone_block.step": { + "protocol_id": 142 }, - "minecraft:pink_terracotta": { - "protocol_id": 360 + "minecraft:block.brewing_stand.brew": { + "protocol_id": 150 }, - "minecraft:gray_terracotta": { - "protocol_id": 361 + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 151 }, - "minecraft:light_gray_terracotta": { - "protocol_id": 362 + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 152 }, - "minecraft:cyan_terracotta": { - "protocol_id": 363 + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 153 }, - "minecraft:purple_terracotta": { - "protocol_id": 364 + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 154 }, - "minecraft:blue_terracotta": { - "protocol_id": 365 + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 155 }, - "minecraft:brown_terracotta": { - "protocol_id": 366 + "minecraft:block.cake.add_candle": { + "protocol_id": 171 }, - "minecraft:green_terracotta": { - "protocol_id": 367 + "minecraft:block.calcite.break": { + "protocol_id": 172 }, - "minecraft:red_terracotta": { - "protocol_id": 368 + "minecraft:block.calcite.fall": { + "protocol_id": 176 }, - "minecraft:black_terracotta": { - "protocol_id": 369 + "minecraft:block.calcite.hit": { + "protocol_id": 175 }, - "minecraft:barrier": { - "protocol_id": 370 + "minecraft:block.calcite.place": { + "protocol_id": 174 }, - "minecraft:light": { - "protocol_id": 371 + "minecraft:block.calcite.step": { + "protocol_id": 173 }, - "minecraft:hay_block": { - "protocol_id": 372 + "minecraft:block.campfire.crackle": { + "protocol_id": 177 }, - "minecraft:white_carpet": { - "protocol_id": 373 + "minecraft:block.candle.ambient": { + "protocol_id": 178 }, - "minecraft:orange_carpet": { - "protocol_id": 374 + "minecraft:block.candle.break": { + "protocol_id": 179 }, - "minecraft:magenta_carpet": { - "protocol_id": 375 + "minecraft:block.candle.extinguish": { + "protocol_id": 180 }, - "minecraft:light_blue_carpet": { - "protocol_id": 376 + "minecraft:block.candle.fall": { + "protocol_id": 181 }, - "minecraft:yellow_carpet": { - "protocol_id": 377 + "minecraft:block.candle.hit": { + "protocol_id": 182 }, - "minecraft:lime_carpet": { - "protocol_id": 378 + "minecraft:block.candle.place": { + "protocol_id": 183 }, - "minecraft:pink_carpet": { - "protocol_id": 379 + "minecraft:block.candle.step": { + "protocol_id": 184 }, - "minecraft:gray_carpet": { - "protocol_id": 380 + "minecraft:block.cave_vines.break": { + "protocol_id": 194 }, - "minecraft:light_gray_carpet": { - "protocol_id": 381 + "minecraft:block.cave_vines.fall": { + "protocol_id": 195 }, - "minecraft:cyan_carpet": { - "protocol_id": 382 + "minecraft:block.cave_vines.hit": { + "protocol_id": 196 }, - "minecraft:purple_carpet": { - "protocol_id": 383 + "minecraft:block.cave_vines.pick_berries": { + "protocol_id": 199 }, - "minecraft:blue_carpet": { - "protocol_id": 384 + "minecraft:block.cave_vines.place": { + "protocol_id": 197 }, - "minecraft:brown_carpet": { - "protocol_id": 385 + "minecraft:block.cave_vines.step": { + "protocol_id": 198 }, - "minecraft:green_carpet": { - "protocol_id": 386 + "minecraft:block.chain.break": { + "protocol_id": 200 }, - "minecraft:red_carpet": { - "protocol_id": 387 + "minecraft:block.chain.fall": { + "protocol_id": 201 }, - "minecraft:black_carpet": { - "protocol_id": 388 + "minecraft:block.chain.hit": { + "protocol_id": 202 }, - "minecraft:terracotta": { - "protocol_id": 389 + "minecraft:block.chain.place": { + "protocol_id": 203 }, - "minecraft:packed_ice": { - "protocol_id": 390 + "minecraft:block.chain.step": { + "protocol_id": 204 }, - "minecraft:acacia_stairs": { - "protocol_id": 391 + "minecraft:block.chest.close": { + "protocol_id": 205 }, - "minecraft:dark_oak_stairs": { - "protocol_id": 392 + "minecraft:block.chest.locked": { + "protocol_id": 206 }, - "minecraft:dirt_path": { - "protocol_id": 393 + "minecraft:block.chest.open": { + "protocol_id": 207 }, - "minecraft:sunflower": { - "protocol_id": 394 + "minecraft:block.chorus_flower.death": { + "protocol_id": 213 }, - "minecraft:lilac": { - "protocol_id": 395 + "minecraft:block.chorus_flower.grow": { + "protocol_id": 214 }, - "minecraft:rose_bush": { - "protocol_id": 396 + "minecraft:block.comparator.click": { + "protocol_id": 220 }, - "minecraft:peony": { - "protocol_id": 397 + "minecraft:block.composter.empty": { + "protocol_id": 221 }, - "minecraft:tall_grass": { - "protocol_id": 398 + "minecraft:block.composter.fill": { + "protocol_id": 222 }, - "minecraft:large_fern": { - "protocol_id": 399 + "minecraft:block.composter.fill_success": { + "protocol_id": 223 }, - "minecraft:white_stained_glass": { - "protocol_id": 400 + "minecraft:block.composter.ready": { + "protocol_id": 224 }, - "minecraft:orange_stained_glass": { - "protocol_id": 401 + "minecraft:block.conduit.activate": { + "protocol_id": 225 }, - "minecraft:magenta_stained_glass": { - "protocol_id": 402 + "minecraft:block.conduit.ambient": { + "protocol_id": 226 }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 403 + "minecraft:block.conduit.ambient.short": { + "protocol_id": 227 }, - "minecraft:yellow_stained_glass": { - "protocol_id": 404 + "minecraft:block.conduit.attack.target": { + "protocol_id": 228 }, - "minecraft:lime_stained_glass": { - "protocol_id": 405 + "minecraft:block.conduit.deactivate": { + "protocol_id": 229 }, - "minecraft:pink_stained_glass": { - "protocol_id": 406 + "minecraft:block.copper.break": { + "protocol_id": 230 }, - "minecraft:gray_stained_glass": { - "protocol_id": 407 + "minecraft:block.copper.fall": { + "protocol_id": 234 }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 408 + "minecraft:block.copper.hit": { + "protocol_id": 233 }, - "minecraft:cyan_stained_glass": { - "protocol_id": 409 + "minecraft:block.copper.place": { + "protocol_id": 232 }, - "minecraft:purple_stained_glass": { - "protocol_id": 410 + "minecraft:block.copper.step": { + "protocol_id": 231 }, - "minecraft:blue_stained_glass": { - "protocol_id": 411 + "minecraft:block.coral_block.break": { + "protocol_id": 235 }, - "minecraft:brown_stained_glass": { - "protocol_id": 412 + "minecraft:block.coral_block.fall": { + "protocol_id": 236 }, - "minecraft:green_stained_glass": { - "protocol_id": 413 + "minecraft:block.coral_block.hit": { + "protocol_id": 237 }, - "minecraft:red_stained_glass": { - "protocol_id": 414 + "minecraft:block.coral_block.place": { + "protocol_id": 238 }, - "minecraft:black_stained_glass": { - "protocol_id": 415 + "minecraft:block.coral_block.step": { + "protocol_id": 239 }, - "minecraft:white_stained_glass_pane": { - "protocol_id": 416 + "minecraft:block.crop.break": { + "protocol_id": 248 }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 417 + "minecraft:block.deepslate.break": { + "protocol_id": 263 }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 418 + "minecraft:block.deepslate.fall": { + "protocol_id": 264 }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 419 + "minecraft:block.deepslate.hit": { + "protocol_id": 265 }, - "minecraft:yellow_stained_glass_pane": { - "protocol_id": 420 + "minecraft:block.deepslate.place": { + "protocol_id": 266 }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 421 + "minecraft:block.deepslate.step": { + "protocol_id": 267 }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 422 + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 258 }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 423 + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 259 }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 424 + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 260 }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 425 + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 261 }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 426 + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 262 }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 427 + "minecraft:block.deepslate_tiles.break": { + "protocol_id": 268 }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 428 + "minecraft:block.deepslate_tiles.fall": { + "protocol_id": 269 }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 429 + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 270 }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 430 + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 271 }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 431 + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 272 }, - "minecraft:prismarine": { - "protocol_id": 432 + "minecraft:block.dispenser.dispense": { + "protocol_id": 273 }, - "minecraft:prismarine_bricks": { - "protocol_id": 433 + "minecraft:block.dispenser.fail": { + "protocol_id": 274 }, - "minecraft:dark_prismarine": { - "protocol_id": 434 + "minecraft:block.dispenser.launch": { + "protocol_id": 275 }, - "minecraft:prismarine_stairs": { - "protocol_id": 435 + "minecraft:block.dripstone_block.break": { + "protocol_id": 292 }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 436 + "minecraft:block.dripstone_block.fall": { + "protocol_id": 296 }, - "minecraft:dark_prismarine_stairs": { - "protocol_id": 437 + "minecraft:block.dripstone_block.hit": { + "protocol_id": 295 }, - "minecraft:sea_lantern": { - "protocol_id": 438 + "minecraft:block.dripstone_block.place": { + "protocol_id": 294 }, - "minecraft:red_sandstone": { - "protocol_id": 439 + "minecraft:block.dripstone_block.step": { + "protocol_id": 293 }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 440 + "minecraft:block.enchantment_table.use": { + "protocol_id": 329 }, - "minecraft:cut_red_sandstone": { - "protocol_id": 441 + "minecraft:block.end_gateway.spawn": { + "protocol_id": 352 }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 442 + "minecraft:block.end_portal.spawn": { + "protocol_id": 354 }, - "minecraft:repeating_command_block": { - "protocol_id": 443 + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 353 }, - "minecraft:chain_command_block": { - "protocol_id": 444 + "minecraft:block.ender_chest.close": { + "protocol_id": 330 }, - "minecraft:magma_block": { - "protocol_id": 445 + "minecraft:block.ender_chest.open": { + "protocol_id": 331 }, - "minecraft:nether_wart_block": { - "protocol_id": 446 + "minecraft:block.fence_gate.close": { + "protocol_id": 366 }, - "minecraft:warped_wart_block": { - "protocol_id": 447 + "minecraft:block.fence_gate.open": { + "protocol_id": 367 }, - "minecraft:red_nether_bricks": { - "protocol_id": 448 + "minecraft:block.fire.ambient": { + "protocol_id": 377 }, - "minecraft:bone_block": { - "protocol_id": 449 + "minecraft:block.fire.extinguish": { + "protocol_id": 378 }, - "minecraft:structure_void": { - "protocol_id": 450 + "minecraft:block.flowering_azalea.break": { + "protocol_id": 384 }, - "minecraft:shulker_box": { - "protocol_id": 451 + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 385 }, - "minecraft:white_shulker_box": { - "protocol_id": 452 + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 386 }, - "minecraft:orange_shulker_box": { - "protocol_id": 453 + "minecraft:block.flowering_azalea.place": { + "protocol_id": 387 }, - "minecraft:magenta_shulker_box": { - "protocol_id": 454 + "minecraft:block.flowering_azalea.step": { + "protocol_id": 388 }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 455 + "minecraft:block.froglight.break": { + "protocol_id": 400 }, - "minecraft:yellow_shulker_box": { - "protocol_id": 456 + "minecraft:block.froglight.fall": { + "protocol_id": 401 }, - "minecraft:lime_shulker_box": { - "protocol_id": 457 + "minecraft:block.froglight.hit": { + "protocol_id": 402 }, - "minecraft:pink_shulker_box": { - "protocol_id": 458 + "minecraft:block.froglight.place": { + "protocol_id": 403 }, - "minecraft:gray_shulker_box": { - "protocol_id": 459 + "minecraft:block.froglight.step": { + "protocol_id": 404 }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 460 + "minecraft:block.frogspawn.break": { + "protocol_id": 406 }, - "minecraft:cyan_shulker_box": { - "protocol_id": 461 + "minecraft:block.frogspawn.fall": { + "protocol_id": 407 }, - "minecraft:purple_shulker_box": { - "protocol_id": 462 + "minecraft:block.frogspawn.hatch": { + "protocol_id": 408 }, - "minecraft:blue_shulker_box": { - "protocol_id": 463 + "minecraft:block.frogspawn.hit": { + "protocol_id": 409 }, - "minecraft:brown_shulker_box": { - "protocol_id": 464 + "minecraft:block.frogspawn.place": { + "protocol_id": 410 }, - "minecraft:green_shulker_box": { - "protocol_id": 465 + "minecraft:block.frogspawn.step": { + "protocol_id": 405 }, - "minecraft:red_shulker_box": { - "protocol_id": 466 + "minecraft:block.fungus.break": { + "protocol_id": 743 }, - "minecraft:black_shulker_box": { - "protocol_id": 467 + "minecraft:block.fungus.fall": { + "protocol_id": 747 }, - "minecraft:white_glazed_terracotta": { - "protocol_id": 468 + "minecraft:block.fungus.hit": { + "protocol_id": 746 }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 469 + "minecraft:block.fungus.place": { + "protocol_id": 745 }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 470 + "minecraft:block.fungus.step": { + "protocol_id": 744 }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 471 + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 424 }, - "minecraft:yellow_glazed_terracotta": { - "protocol_id": 472 + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 442 }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 473 + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 443 }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 474 + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 444 }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 475 + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 445 }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 476 + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 446 }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 477 + "minecraft:block.glass.break": { + "protocol_id": 447 }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 478 + "minecraft:block.glass.fall": { + "protocol_id": 448 }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 479 + "minecraft:block.glass.hit": { + "protocol_id": 449 }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 480 + "minecraft:block.glass.place": { + "protocol_id": 450 }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 481 + "minecraft:block.glass.step": { + "protocol_id": 451 }, - "minecraft:red_glazed_terracotta": { + "minecraft:block.grass.break": { "protocol_id": 482 }, - "minecraft:black_glazed_terracotta": { + "minecraft:block.grass.fall": { "protocol_id": 483 }, - "minecraft:white_concrete": { + "minecraft:block.grass.hit": { "protocol_id": 484 }, - "minecraft:orange_concrete": { + "minecraft:block.grass.place": { "protocol_id": 485 }, - "minecraft:magenta_concrete": { + "minecraft:block.grass.step": { "protocol_id": 486 }, - "minecraft:light_blue_concrete": { + "minecraft:block.gravel.break": { "protocol_id": 487 }, - "minecraft:yellow_concrete": { + "minecraft:block.gravel.fall": { "protocol_id": 488 }, - "minecraft:lime_concrete": { + "minecraft:block.gravel.hit": { "protocol_id": 489 }, - "minecraft:pink_concrete": { + "minecraft:block.gravel.place": { "protocol_id": 490 }, - "minecraft:gray_concrete": { + "minecraft:block.gravel.step": { "protocol_id": 491 }, - "minecraft:light_gray_concrete": { + "minecraft:block.grindstone.use": { "protocol_id": 492 }, - "minecraft:cyan_concrete": { + "minecraft:block.growing_plant.crop": { "protocol_id": 493 }, - "minecraft:purple_concrete": { - "protocol_id": 494 - }, - "minecraft:blue_concrete": { - "protocol_id": 495 - }, - "minecraft:brown_concrete": { - "protocol_id": 496 - }, - "minecraft:green_concrete": { - "protocol_id": 497 - }, - "minecraft:red_concrete": { - "protocol_id": 498 - }, - "minecraft:black_concrete": { - "protocol_id": 499 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 500 - }, - "minecraft:orange_concrete_powder": { - "protocol_id": 501 - }, - "minecraft:magenta_concrete_powder": { + "minecraft:block.hanging_roots.break": { "protocol_id": 502 }, - "minecraft:light_blue_concrete_powder": { + "minecraft:block.hanging_roots.fall": { "protocol_id": 503 }, - "minecraft:yellow_concrete_powder": { + "minecraft:block.hanging_roots.hit": { "protocol_id": 504 }, - "minecraft:lime_concrete_powder": { + "minecraft:block.hanging_roots.place": { "protocol_id": 505 }, - "minecraft:pink_concrete_powder": { + "minecraft:block.hanging_roots.step": { "protocol_id": 506 }, - "minecraft:gray_concrete_powder": { - "protocol_id": 507 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 508 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 509 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 510 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 511 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 512 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 513 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 514 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 515 - }, - "minecraft:turtle_egg": { + "minecraft:block.honey_block.break": { "protocol_id": 516 }, - "minecraft:dead_tube_coral_block": { + "minecraft:block.honey_block.fall": { "protocol_id": 517 }, - "minecraft:dead_brain_coral_block": { + "minecraft:block.honey_block.hit": { "protocol_id": 518 }, - "minecraft:dead_bubble_coral_block": { + "minecraft:block.honey_block.place": { "protocol_id": 519 }, - "minecraft:dead_fire_coral_block": { + "minecraft:block.honey_block.slide": { "protocol_id": 520 }, - "minecraft:dead_horn_coral_block": { + "minecraft:block.honey_block.step": { "protocol_id": 521 }, - "minecraft:tube_coral_block": { - "protocol_id": 522 - }, - "minecraft:brain_coral_block": { - "protocol_id": 523 + "minecraft:block.iron_door.close": { + "protocol_id": 564 }, - "minecraft:bubble_coral_block": { - "protocol_id": 524 + "minecraft:block.iron_door.open": { + "protocol_id": 565 }, - "minecraft:fire_coral_block": { - "protocol_id": 525 + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 572 }, - "minecraft:horn_coral_block": { - "protocol_id": 526 + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 573 }, - "minecraft:tube_coral": { - "protocol_id": 527 + "minecraft:block.ladder.break": { + "protocol_id": 581 }, - "minecraft:brain_coral": { - "protocol_id": 528 + "minecraft:block.ladder.fall": { + "protocol_id": 582 }, - "minecraft:bubble_coral": { - "protocol_id": 529 + "minecraft:block.ladder.hit": { + "protocol_id": 583 }, - "minecraft:fire_coral": { - "protocol_id": 530 + "minecraft:block.ladder.place": { + "protocol_id": 584 }, - "minecraft:horn_coral": { - "protocol_id": 531 + "minecraft:block.ladder.step": { + "protocol_id": 585 }, - "minecraft:dead_brain_coral": { - "protocol_id": 532 + "minecraft:block.lantern.break": { + "protocol_id": 586 }, - "minecraft:dead_bubble_coral": { - "protocol_id": 533 + "minecraft:block.lantern.fall": { + "protocol_id": 587 }, - "minecraft:dead_fire_coral": { - "protocol_id": 534 + "minecraft:block.lantern.hit": { + "protocol_id": 588 }, - "minecraft:dead_horn_coral": { - "protocol_id": 535 + "minecraft:block.lantern.place": { + "protocol_id": 589 }, - "minecraft:dead_tube_coral": { - "protocol_id": 536 + "minecraft:block.lantern.step": { + "protocol_id": 590 }, - "minecraft:tube_coral_fan": { - "protocol_id": 537 + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 591 }, - "minecraft:brain_coral_fan": { - "protocol_id": 538 + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 592 }, - "minecraft:bubble_coral_fan": { - "protocol_id": 539 + "minecraft:block.lava.ambient": { + "protocol_id": 593 }, - "minecraft:fire_coral_fan": { - "protocol_id": 540 + "minecraft:block.lava.extinguish": { + "protocol_id": 594 }, - "minecraft:horn_coral_fan": { - "protocol_id": 541 + "minecraft:block.lava.pop": { + "protocol_id": 595 }, - "minecraft:dead_tube_coral_fan": { - "protocol_id": 542 + "minecraft:block.lever.click": { + "protocol_id": 598 }, - "minecraft:dead_brain_coral_fan": { - "protocol_id": 543 + "minecraft:block.lily_pad.place": { + "protocol_id": 1210 }, - "minecraft:dead_bubble_coral_fan": { - "protocol_id": 544 + "minecraft:block.lodestone.break": { + "protocol_id": 612 }, - "minecraft:dead_fire_coral_fan": { - "protocol_id": 545 + "minecraft:block.lodestone.fall": { + "protocol_id": 616 }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 546 + "minecraft:block.lodestone.hit": { + "protocol_id": 615 }, - "minecraft:blue_ice": { - "protocol_id": 547 + "minecraft:block.lodestone.place": { + "protocol_id": 614 }, - "minecraft:conduit": { - "protocol_id": 548 + "minecraft:block.lodestone.step": { + "protocol_id": 613 }, - "minecraft:polished_granite_stairs": { - "protocol_id": 549 + "minecraft:block.mangrove_roots.break": { + "protocol_id": 624 }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 550 + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 625 }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 551 + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 626 }, - "minecraft:polished_diorite_stairs": { - "protocol_id": 552 + "minecraft:block.mangrove_roots.place": { + "protocol_id": 627 }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 553 + "minecraft:block.mangrove_roots.step": { + "protocol_id": 628 }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 554 + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 629 }, - "minecraft:stone_stairs": { - "protocol_id": 555 + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 630 }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 556 + "minecraft:block.metal.break": { + "protocol_id": 631 }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 557 + "minecraft:block.metal.fall": { + "protocol_id": 632 }, - "minecraft:granite_stairs": { - "protocol_id": 558 + "minecraft:block.metal.hit": { + "protocol_id": 633 }, - "minecraft:andesite_stairs": { - "protocol_id": 559 + "minecraft:block.metal.place": { + "protocol_id": 634 }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 560 + "minecraft:block.metal.step": { + "protocol_id": 637 }, - "minecraft:polished_andesite_stairs": { - "protocol_id": 561 + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 635 }, - "minecraft:diorite_stairs": { - "protocol_id": 562 + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 636 }, - "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 563 + "minecraft:block.moss.break": { + "protocol_id": 651 }, - "minecraft:polished_deepslate_stairs": { - "protocol_id": 564 + "minecraft:block.moss.fall": { + "protocol_id": 652 }, - "minecraft:deepslate_brick_stairs": { - "protocol_id": 565 + "minecraft:block.moss.hit": { + "protocol_id": 653 }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 566 + "minecraft:block.moss.place": { + "protocol_id": 654 }, - "minecraft:polished_granite_slab": { - "protocol_id": 567 + "minecraft:block.moss.step": { + "protocol_id": 655 }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 568 + "minecraft:block.moss_carpet.break": { + "protocol_id": 646 }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 569 + "minecraft:block.moss_carpet.fall": { + "protocol_id": 647 }, - "minecraft:polished_diorite_slab": { - "protocol_id": 570 + "minecraft:block.moss_carpet.hit": { + "protocol_id": 648 }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 571 + "minecraft:block.moss_carpet.place": { + "protocol_id": 649 }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 572 + "minecraft:block.moss_carpet.step": { + "protocol_id": 650 }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 573 + "minecraft:block.mud.break": { + "protocol_id": 656 }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 574 + "minecraft:block.mud.fall": { + "protocol_id": 657 }, - "minecraft:granite_slab": { - "protocol_id": 575 + "minecraft:block.mud.hit": { + "protocol_id": 658 }, - "minecraft:andesite_slab": { - "protocol_id": 576 + "minecraft:block.mud.place": { + "protocol_id": 659 }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 577 + "minecraft:block.mud.step": { + "protocol_id": 660 }, - "minecraft:polished_andesite_slab": { - "protocol_id": 578 + "minecraft:block.mud_bricks.break": { + "protocol_id": 661 }, - "minecraft:diorite_slab": { - "protocol_id": 579 + "minecraft:block.mud_bricks.fall": { + "protocol_id": 662 }, - "minecraft:cobbled_deepslate_slab": { - "protocol_id": 580 + "minecraft:block.mud_bricks.hit": { + "protocol_id": 663 }, - "minecraft:polished_deepslate_slab": { - "protocol_id": 581 + "minecraft:block.mud_bricks.place": { + "protocol_id": 664 }, - "minecraft:deepslate_brick_slab": { - "protocol_id": 582 + "minecraft:block.mud_bricks.step": { + "protocol_id": 665 }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 583 + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 666 }, - "minecraft:scaffolding": { - "protocol_id": 584 + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 667 }, - "minecraft:redstone": { - "protocol_id": 585 + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 668 }, - "minecraft:redstone_torch": { - "protocol_id": 586 + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 669 }, - "minecraft:redstone_block": { - "protocol_id": 587 + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 670 }, - "minecraft:repeater": { - "protocol_id": 588 + "minecraft:block.nether_bricks.break": { + "protocol_id": 716 }, - "minecraft:comparator": { - "protocol_id": 589 + "minecraft:block.nether_bricks.fall": { + "protocol_id": 720 }, - "minecraft:piston": { - "protocol_id": 590 + "minecraft:block.nether_bricks.hit": { + "protocol_id": 719 }, - "minecraft:sticky_piston": { - "protocol_id": 591 + "minecraft:block.nether_bricks.place": { + "protocol_id": 718 }, - "minecraft:slime_block": { - "protocol_id": 592 + "minecraft:block.nether_bricks.step": { + "protocol_id": 717 }, - "minecraft:honey_block": { - "protocol_id": 593 + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 933 }, - "minecraft:observer": { - "protocol_id": 594 + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 934 }, - "minecraft:hopper": { - "protocol_id": 595 + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 935 }, - "minecraft:dispenser": { - "protocol_id": 596 + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 936 }, - "minecraft:dropper": { - "protocol_id": 597 + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 937 }, - "minecraft:lectern": { - "protocol_id": 598 + "minecraft:block.nether_ore.break": { + "protocol_id": 938 }, - "minecraft:target": { - "protocol_id": 599 + "minecraft:block.nether_ore.fall": { + "protocol_id": 939 }, - "minecraft:lever": { - "protocol_id": 600 + "minecraft:block.nether_ore.hit": { + "protocol_id": 940 }, - "minecraft:lightning_rod": { - "protocol_id": 601 + "minecraft:block.nether_ore.place": { + "protocol_id": 941 }, - "minecraft:daylight_detector": { - "protocol_id": 602 + "minecraft:block.nether_ore.step": { + "protocol_id": 942 }, - "minecraft:sculk_sensor": { - "protocol_id": 603 + "minecraft:block.nether_sprouts.break": { + "protocol_id": 738 }, - "minecraft:tripwire_hook": { - "protocol_id": 604 + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 742 }, - "minecraft:trapped_chest": { - "protocol_id": 605 + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 741 }, - "minecraft:tnt": { - "protocol_id": 606 + "minecraft:block.nether_sprouts.place": { + "protocol_id": 740 }, - "minecraft:redstone_lamp": { - "protocol_id": 607 + "minecraft:block.nether_sprouts.step": { + "protocol_id": 739 }, - "minecraft:note_block": { - "protocol_id": 608 + "minecraft:block.nether_wart.break": { + "protocol_id": 721 }, - "minecraft:stone_button": { - "protocol_id": 609 + "minecraft:block.netherite_block.break": { + "protocol_id": 758 }, - "minecraft:polished_blackstone_button": { - "protocol_id": 610 + "minecraft:block.netherite_block.fall": { + "protocol_id": 762 }, - "minecraft:oak_button": { - "protocol_id": 611 + "minecraft:block.netherite_block.hit": { + "protocol_id": 761 }, - "minecraft:spruce_button": { - "protocol_id": 612 + "minecraft:block.netherite_block.place": { + "protocol_id": 760 }, - "minecraft:birch_button": { - "protocol_id": 613 + "minecraft:block.netherite_block.step": { + "protocol_id": 759 }, - "minecraft:jungle_button": { - "protocol_id": 614 + "minecraft:block.netherrack.break": { + "protocol_id": 763 }, - "minecraft:acacia_button": { - "protocol_id": 615 + "minecraft:block.netherrack.fall": { + "protocol_id": 767 }, - "minecraft:dark_oak_button": { - "protocol_id": 616 + "minecraft:block.netherrack.hit": { + "protocol_id": 766 }, - "minecraft:crimson_button": { - "protocol_id": 617 + "minecraft:block.netherrack.place": { + "protocol_id": 765 }, - "minecraft:warped_button": { - "protocol_id": 618 + "minecraft:block.netherrack.step": { + "protocol_id": 764 }, - "minecraft:stone_pressure_plate": { - "protocol_id": 619 + "minecraft:block.note_block.banjo": { + "protocol_id": 783 }, - "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 620 + "minecraft:block.note_block.basedrum": { + "protocol_id": 768 }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 621 + "minecraft:block.note_block.bass": { + "protocol_id": 769 }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 622 + "minecraft:block.note_block.bell": { + "protocol_id": 770 }, - "minecraft:oak_pressure_plate": { - "protocol_id": 623 + "minecraft:block.note_block.bit": { + "protocol_id": 782 }, - "minecraft:spruce_pressure_plate": { - "protocol_id": 624 + "minecraft:block.note_block.chime": { + "protocol_id": 771 }, - "minecraft:birch_pressure_plate": { - "protocol_id": 625 + "minecraft:block.note_block.cow_bell": { + "protocol_id": 780 }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 626 + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 781 }, - "minecraft:acacia_pressure_plate": { - "protocol_id": 627 + "minecraft:block.note_block.flute": { + "protocol_id": 772 }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 628 + "minecraft:block.note_block.guitar": { + "protocol_id": 773 }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 629 + "minecraft:block.note_block.harp": { + "protocol_id": 774 }, - "minecraft:warped_pressure_plate": { - "protocol_id": 630 + "minecraft:block.note_block.hat": { + "protocol_id": 775 }, - "minecraft:iron_door": { - "protocol_id": 631 + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 779 }, - "minecraft:oak_door": { - "protocol_id": 632 + "minecraft:block.note_block.pling": { + "protocol_id": 776 }, - "minecraft:spruce_door": { - "protocol_id": 633 + "minecraft:block.note_block.snare": { + "protocol_id": 777 }, - "minecraft:birch_door": { - "protocol_id": 634 + "minecraft:block.note_block.xylophone": { + "protocol_id": 778 }, - "minecraft:jungle_door": { - "protocol_id": 635 + "minecraft:block.nylium.break": { + "protocol_id": 733 }, - "minecraft:acacia_door": { - "protocol_id": 636 + "minecraft:block.nylium.fall": { + "protocol_id": 737 }, - "minecraft:dark_oak_door": { - "protocol_id": 637 + "minecraft:block.nylium.hit": { + "protocol_id": 736 }, - "minecraft:crimson_door": { - "protocol_id": 638 + "minecraft:block.nylium.place": { + "protocol_id": 735 }, - "minecraft:warped_door": { - "protocol_id": 639 + "minecraft:block.nylium.step": { + "protocol_id": 734 }, - "minecraft:iron_trapdoor": { - "protocol_id": 640 + "minecraft:block.packed_mud.break": { + "protocol_id": 723 }, - "minecraft:oak_trapdoor": { - "protocol_id": 641 + "minecraft:block.packed_mud.fall": { + "protocol_id": 724 }, - "minecraft:spruce_trapdoor": { - "protocol_id": 642 + "minecraft:block.packed_mud.hit": { + "protocol_id": 725 }, - "minecraft:birch_trapdoor": { - "protocol_id": 643 + "minecraft:block.packed_mud.place": { + "protocol_id": 726 }, - "minecraft:jungle_trapdoor": { - "protocol_id": 644 + "minecraft:block.packed_mud.step": { + "protocol_id": 727 }, - "minecraft:acacia_trapdoor": { - "protocol_id": 645 + "minecraft:block.piston.contract": { + "protocol_id": 870 }, - "minecraft:dark_oak_trapdoor": { - "protocol_id": 646 + "minecraft:block.piston.extend": { + "protocol_id": 871 }, - "minecraft:crimson_trapdoor": { - "protocol_id": 647 + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 297 }, - "minecraft:warped_trapdoor": { - "protocol_id": 648 + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 303 }, - "minecraft:oak_fence_gate": { - "protocol_id": 649 + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 305 }, - "minecraft:spruce_fence_gate": { - "protocol_id": 650 + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 304 }, - "minecraft:birch_fence_gate": { - "protocol_id": 651 + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 306 }, - "minecraft:jungle_fence_gate": { - "protocol_id": 652 + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 301 }, - "minecraft:acacia_fence_gate": { - "protocol_id": 653 + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 300 }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 654 + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 302 }, - "minecraft:crimson_fence_gate": { - "protocol_id": 655 + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 299 }, - "minecraft:warped_fence_gate": { - "protocol_id": 656 + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 298 }, - "minecraft:powered_rail": { - "protocol_id": 657 + "minecraft:block.polished_deepslate.break": { + "protocol_id": 898 }, - "minecraft:detector_rail": { - "protocol_id": 658 + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 899 }, - "minecraft:rail": { - "protocol_id": 659 + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 900 }, - "minecraft:activator_rail": { - "protocol_id": 660 + "minecraft:block.polished_deepslate.place": { + "protocol_id": 901 }, - "minecraft:saddle": { - "protocol_id": 661 + "minecraft:block.polished_deepslate.step": { + "protocol_id": 902 }, - "minecraft:minecart": { - "protocol_id": 662 + "minecraft:block.portal.ambient": { + "protocol_id": 903 }, - "minecraft:chest_minecart": { - "protocol_id": 663 + "minecraft:block.portal.travel": { + "protocol_id": 904 }, - "minecraft:furnace_minecart": { - "protocol_id": 664 + "minecraft:block.portal.trigger": { + "protocol_id": 905 }, - "minecraft:tnt_minecart": { - "protocol_id": 665 + "minecraft:block.powder_snow.break": { + "protocol_id": 906 }, - "minecraft:hopper_minecart": { - "protocol_id": 666 + "minecraft:block.powder_snow.fall": { + "protocol_id": 907 }, - "minecraft:carrot_on_a_stick": { - "protocol_id": 667 + "minecraft:block.powder_snow.hit": { + "protocol_id": 908 }, - "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 668 + "minecraft:block.powder_snow.place": { + "protocol_id": 909 }, - "minecraft:elytra": { - "protocol_id": 669 + "minecraft:block.powder_snow.step": { + "protocol_id": 910 }, - "minecraft:oak_boat": { - "protocol_id": 670 + "minecraft:block.pumpkin.carve": { + "protocol_id": 918 }, - "minecraft:spruce_boat": { - "protocol_id": 671 + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 943 }, - "minecraft:birch_boat": { - "protocol_id": 672 + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 944 }, - "minecraft:jungle_boat": { - "protocol_id": 673 + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 945 }, - "minecraft:acacia_boat": { - "protocol_id": 674 + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 946 }, - "minecraft:dark_oak_boat": { - "protocol_id": 675 + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 947 }, - "minecraft:structure_block": { - "protocol_id": 676 + "minecraft:block.rooted_dirt.break": { + "protocol_id": 948 }, - "minecraft:jigsaw": { - "protocol_id": 677 + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 949 }, - "minecraft:turtle_helmet": { - "protocol_id": 678 + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 950 }, - "minecraft:scute": { - "protocol_id": 679 + "minecraft:block.rooted_dirt.place": { + "protocol_id": 951 }, - "minecraft:flint_and_steel": { - "protocol_id": 680 + "minecraft:block.rooted_dirt.step": { + "protocol_id": 952 }, - "minecraft:apple": { - "protocol_id": 681 + "minecraft:block.roots.break": { + "protocol_id": 419 }, - "minecraft:bow": { - "protocol_id": 682 + "minecraft:block.roots.fall": { + "protocol_id": 423 }, - "minecraft:arrow": { - "protocol_id": 683 + "minecraft:block.roots.hit": { + "protocol_id": 422 }, - "minecraft:coal": { - "protocol_id": 684 + "minecraft:block.roots.place": { + "protocol_id": 421 }, - "minecraft:charcoal": { - "protocol_id": 685 + "minecraft:block.roots.step": { + "protocol_id": 420 }, - "minecraft:diamond": { - "protocol_id": 686 + "minecraft:block.sand.break": { + "protocol_id": 957 }, - "minecraft:emerald": { - "protocol_id": 687 + "minecraft:block.sand.fall": { + "protocol_id": 958 }, - "minecraft:lapis_lazuli": { - "protocol_id": 688 + "minecraft:block.sand.hit": { + "protocol_id": 959 }, - "minecraft:quartz": { - "protocol_id": 689 + "minecraft:block.sand.place": { + "protocol_id": 960 }, - "minecraft:amethyst_shard": { - "protocol_id": 690 + "minecraft:block.sand.step": { + "protocol_id": 961 }, - "minecraft:raw_iron": { - "protocol_id": 691 + "minecraft:block.scaffolding.break": { + "protocol_id": 962 }, - "minecraft:iron_ingot": { - "protocol_id": 692 + "minecraft:block.scaffolding.fall": { + "protocol_id": 963 }, - "minecraft:raw_copper": { - "protocol_id": 693 + "minecraft:block.scaffolding.hit": { + "protocol_id": 964 }, - "minecraft:copper_ingot": { - "protocol_id": 694 + "minecraft:block.scaffolding.place": { + "protocol_id": 965 }, - "minecraft:raw_gold": { - "protocol_id": 695 + "minecraft:block.scaffolding.step": { + "protocol_id": 966 }, - "minecraft:gold_ingot": { - "protocol_id": 696 + "minecraft:block.sculk.break": { + "protocol_id": 969 }, - "minecraft:netherite_ingot": { - "protocol_id": 697 + "minecraft:block.sculk.charge": { + "protocol_id": 968 }, - "minecraft:netherite_scrap": { - "protocol_id": 698 + "minecraft:block.sculk.fall": { + "protocol_id": 970 }, - "minecraft:wooden_sword": { - "protocol_id": 699 + "minecraft:block.sculk.hit": { + "protocol_id": 971 }, - "minecraft:wooden_shovel": { - "protocol_id": 700 + "minecraft:block.sculk.place": { + "protocol_id": 972 }, - "minecraft:wooden_pickaxe": { - "protocol_id": 701 + "minecraft:block.sculk.spread": { + "protocol_id": 967 }, - "minecraft:wooden_axe": { - "protocol_id": 702 + "minecraft:block.sculk.step": { + "protocol_id": 973 }, - "minecraft:wooden_hoe": { - "protocol_id": 703 + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 974 }, - "minecraft:stone_sword": { - "protocol_id": 704 + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 975 }, - "minecraft:stone_shovel": { - "protocol_id": 705 + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 976 }, - "minecraft:stone_pickaxe": { - "protocol_id": 706 + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 977 }, - "minecraft:stone_axe": { - "protocol_id": 707 + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 978 }, - "minecraft:stone_hoe": { - "protocol_id": 708 + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 979 }, - "minecraft:golden_sword": { - "protocol_id": 709 + "minecraft:block.sculk_sensor.break": { + "protocol_id": 982 }, - "minecraft:golden_shovel": { - "protocol_id": 710 + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 980 }, - "minecraft:golden_pickaxe": { - "protocol_id": 711 + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 981 }, - "minecraft:golden_axe": { - "protocol_id": 712 + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 983 }, - "minecraft:golden_hoe": { - "protocol_id": 713 + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 984 }, - "minecraft:iron_sword": { - "protocol_id": 714 + "minecraft:block.sculk_sensor.place": { + "protocol_id": 985 }, - "minecraft:iron_shovel": { - "protocol_id": 715 + "minecraft:block.sculk_sensor.step": { + "protocol_id": 986 }, - "minecraft:iron_pickaxe": { - "protocol_id": 716 + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 987 }, - "minecraft:iron_axe": { - "protocol_id": 717 + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 988 }, - "minecraft:iron_hoe": { - "protocol_id": 718 + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 989 }, - "minecraft:diamond_sword": { - "protocol_id": 719 + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 990 }, - "minecraft:diamond_shovel": { - "protocol_id": 720 + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 991 }, - "minecraft:diamond_pickaxe": { - "protocol_id": 721 + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 992 }, - "minecraft:diamond_axe": { - "protocol_id": 722 + "minecraft:block.sculk_vein.break": { + "protocol_id": 993 }, - "minecraft:diamond_hoe": { - "protocol_id": 723 + "minecraft:block.sculk_vein.fall": { + "protocol_id": 994 }, - "minecraft:netherite_sword": { - "protocol_id": 724 + "minecraft:block.sculk_vein.hit": { + "protocol_id": 995 }, - "minecraft:netherite_shovel": { - "protocol_id": 725 + "minecraft:block.sculk_vein.place": { + "protocol_id": 996 }, - "minecraft:netherite_pickaxe": { - "protocol_id": 726 + "minecraft:block.sculk_vein.step": { + "protocol_id": 997 }, - "minecraft:netherite_axe": { - "protocol_id": 727 + "minecraft:block.shroomlight.break": { + "protocol_id": 1005 }, - "minecraft:netherite_hoe": { - "protocol_id": 728 + "minecraft:block.shroomlight.fall": { + "protocol_id": 1009 }, - "minecraft:stick": { - "protocol_id": 729 + "minecraft:block.shroomlight.hit": { + "protocol_id": 1008 }, - "minecraft:bowl": { - "protocol_id": 730 + "minecraft:block.shroomlight.place": { + "protocol_id": 1007 }, - "minecraft:mushroom_stew": { - "protocol_id": 731 + "minecraft:block.shroomlight.step": { + "protocol_id": 1006 }, - "minecraft:string": { - "protocol_id": 732 + "minecraft:block.shulker_box.close": { + "protocol_id": 1012 }, - "minecraft:feather": { - "protocol_id": 733 + "minecraft:block.shulker_box.open": { + "protocol_id": 1013 }, - "minecraft:gunpowder": { - "protocol_id": 734 + "minecraft:block.slime_block.break": { + "protocol_id": 1046 }, - "minecraft:wheat_seeds": { - "protocol_id": 735 + "minecraft:block.slime_block.fall": { + "protocol_id": 1047 }, - "minecraft:wheat": { - "protocol_id": 736 + "minecraft:block.slime_block.hit": { + "protocol_id": 1048 }, - "minecraft:bread": { - "protocol_id": 737 + "minecraft:block.slime_block.place": { + "protocol_id": 1049 }, - "minecraft:leather_helmet": { - "protocol_id": 738 + "minecraft:block.slime_block.step": { + "protocol_id": 1050 }, - "minecraft:leather_chestplate": { - "protocol_id": 739 + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1051 }, - "minecraft:leather_leggings": { - "protocol_id": 740 + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1052 }, - "minecraft:leather_boots": { - "protocol_id": 741 + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1053 }, - "minecraft:chainmail_helmet": { - "protocol_id": 742 + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1054 }, - "minecraft:chainmail_chestplate": { - "protocol_id": 743 + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1055 }, - "minecraft:chainmail_leggings": { - "protocol_id": 744 + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1056 }, - "minecraft:chainmail_boots": { - "protocol_id": 745 + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1057 }, - "minecraft:iron_helmet": { - "protocol_id": 746 + "minecraft:block.smithing_table.use": { + "protocol_id": 1087 }, - "minecraft:iron_chestplate": { - "protocol_id": 747 + "minecraft:block.smoker.smoke": { + "protocol_id": 1088 }, - "minecraft:iron_leggings": { - "protocol_id": 748 + "minecraft:block.snow.break": { + "protocol_id": 1090 }, - "minecraft:iron_boots": { - "protocol_id": 749 + "minecraft:block.snow.fall": { + "protocol_id": 1091 }, - "minecraft:diamond_helmet": { - "protocol_id": 750 + "minecraft:block.snow.hit": { + "protocol_id": 1097 }, - "minecraft:diamond_chestplate": { - "protocol_id": 751 + "minecraft:block.snow.place": { + "protocol_id": 1098 }, - "minecraft:diamond_leggings": { - "protocol_id": 752 + "minecraft:block.snow.step": { + "protocol_id": 1099 }, - "minecraft:diamond_boots": { - "protocol_id": 753 + "minecraft:block.soul_sand.break": { + "protocol_id": 1058 }, - "minecraft:golden_helmet": { - "protocol_id": 754 + "minecraft:block.soul_sand.fall": { + "protocol_id": 1062 }, - "minecraft:golden_chestplate": { - "protocol_id": 755 + "minecraft:block.soul_sand.hit": { + "protocol_id": 1061 }, - "minecraft:golden_leggings": { - "protocol_id": 756 + "minecraft:block.soul_sand.place": { + "protocol_id": 1060 }, - "minecraft:golden_boots": { - "protocol_id": 757 + "minecraft:block.soul_sand.step": { + "protocol_id": 1059 }, - "minecraft:netherite_helmet": { - "protocol_id": 758 + "minecraft:block.soul_soil.break": { + "protocol_id": 1063 }, - "minecraft:netherite_chestplate": { - "protocol_id": 759 + "minecraft:block.soul_soil.fall": { + "protocol_id": 1067 }, - "minecraft:netherite_leggings": { - "protocol_id": 760 + "minecraft:block.soul_soil.hit": { + "protocol_id": 1066 }, - "minecraft:netherite_boots": { - "protocol_id": 761 + "minecraft:block.soul_soil.place": { + "protocol_id": 1065 }, - "minecraft:flint": { - "protocol_id": 762 + "minecraft:block.soul_soil.step": { + "protocol_id": 1064 }, - "minecraft:porkchop": { - "protocol_id": 763 + "minecraft:block.spore_blossom.break": { + "protocol_id": 1069 }, - "minecraft:cooked_porkchop": { - "protocol_id": 764 + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1070 }, - "minecraft:painting": { - "protocol_id": 765 + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1071 }, - "minecraft:golden_apple": { - "protocol_id": 766 + "minecraft:block.spore_blossom.place": { + "protocol_id": 1072 }, - "minecraft:enchanted_golden_apple": { - "protocol_id": 767 + "minecraft:block.spore_blossom.step": { + "protocol_id": 1073 }, - "minecraft:oak_sign": { - "protocol_id": 768 + "minecraft:block.stem.break": { + "protocol_id": 728 }, - "minecraft:spruce_sign": { - "protocol_id": 769 + "minecraft:block.stem.fall": { + "protocol_id": 732 }, - "minecraft:birch_sign": { - "protocol_id": 770 + "minecraft:block.stem.hit": { + "protocol_id": 731 }, - "minecraft:jungle_sign": { - "protocol_id": 771 + "minecraft:block.stem.place": { + "protocol_id": 730 }, - "minecraft:acacia_sign": { - "protocol_id": 772 + "minecraft:block.stem.step": { + "protocol_id": 729 }, - "minecraft:dark_oak_sign": { - "protocol_id": 773 + "minecraft:block.stone.break": { + "protocol_id": 1112 }, - "minecraft:crimson_sign": { - "protocol_id": 774 + "minecraft:block.stone.fall": { + "protocol_id": 1115 }, - "minecraft:warped_sign": { - "protocol_id": 775 + "minecraft:block.stone.hit": { + "protocol_id": 1116 }, - "minecraft:bucket": { - "protocol_id": 776 + "minecraft:block.stone.place": { + "protocol_id": 1117 }, - "minecraft:water_bucket": { - "protocol_id": 777 + "minecraft:block.stone.step": { + "protocol_id": 1120 }, - "minecraft:lava_bucket": { - "protocol_id": 778 + "minecraft:block.stone_button.click_off": { + "protocol_id": 1113 }, - "minecraft:powder_snow_bucket": { - "protocol_id": 779 + "minecraft:block.stone_button.click_on": { + "protocol_id": 1114 }, - "minecraft:snowball": { - "protocol_id": 780 + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1118 }, - "minecraft:leather": { - "protocol_id": 781 + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1119 }, - "minecraft:milk_bucket": { - "protocol_id": 782 + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1125 }, - "minecraft:pufferfish_bucket": { - "protocol_id": 783 + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1127 }, - "minecraft:salmon_bucket": { - "protocol_id": 784 + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1126 }, - "minecraft:cod_bucket": { - "protocol_id": 785 + "minecraft:block.tripwire.attach": { + "protocol_id": 1143 }, - "minecraft:tropical_fish_bucket": { - "protocol_id": 786 + "minecraft:block.tripwire.click_off": { + "protocol_id": 1144 }, - "minecraft:axolotl_bucket": { - "protocol_id": 787 + "minecraft:block.tripwire.click_on": { + "protocol_id": 1145 }, - "minecraft:brick": { - "protocol_id": 788 + "minecraft:block.tripwire.detach": { + "protocol_id": 1146 }, - "minecraft:clay_ball": { - "protocol_id": 789 + "minecraft:block.tuff.break": { + "protocol_id": 1151 }, - "minecraft:dried_kelp_block": { - "protocol_id": 790 + "minecraft:block.tuff.fall": { + "protocol_id": 1155 }, - "minecraft:paper": { - "protocol_id": 791 + "minecraft:block.tuff.hit": { + "protocol_id": 1154 }, - "minecraft:book": { - "protocol_id": 792 + "minecraft:block.tuff.place": { + "protocol_id": 1153 }, - "minecraft:slime_ball": { - "protocol_id": 793 + "minecraft:block.tuff.step": { + "protocol_id": 1152 }, - "minecraft:egg": { - "protocol_id": 794 + "minecraft:block.vine.break": { + "protocol_id": 1205 }, - "minecraft:compass": { - "protocol_id": 795 + "minecraft:block.vine.fall": { + "protocol_id": 1206 }, - "minecraft:bundle": { - "protocol_id": 796 + "minecraft:block.vine.hit": { + "protocol_id": 1207 }, - "minecraft:fishing_rod": { - "protocol_id": 797 + "minecraft:block.vine.place": { + "protocol_id": 1208 }, - "minecraft:clock": { - "protocol_id": 798 + "minecraft:block.vine.step": { + "protocol_id": 1209 }, - "minecraft:spyglass": { - "protocol_id": 799 + "minecraft:block.wart_block.break": { + "protocol_id": 753 }, - "minecraft:glowstone_dust": { - "protocol_id": 800 + "minecraft:block.wart_block.fall": { + "protocol_id": 757 }, - "minecraft:cod": { - "protocol_id": 801 + "minecraft:block.wart_block.hit": { + "protocol_id": 756 }, - "minecraft:salmon": { - "protocol_id": 802 + "minecraft:block.wart_block.place": { + "protocol_id": 755 }, - "minecraft:tropical_fish": { - "protocol_id": 803 + "minecraft:block.wart_block.step": { + "protocol_id": 754 }, - "minecraft:pufferfish": { - "protocol_id": 804 + "minecraft:block.water.ambient": { + "protocol_id": 1241 }, - "minecraft:cooked_cod": { - "protocol_id": 805 + "minecraft:block.weeping_vines.break": { + "protocol_id": 748 }, - "minecraft:cooked_salmon": { - "protocol_id": 806 + "minecraft:block.weeping_vines.fall": { + "protocol_id": 752 }, - "minecraft:ink_sac": { - "protocol_id": 807 + "minecraft:block.weeping_vines.hit": { + "protocol_id": 751 }, - "minecraft:glow_ink_sac": { - "protocol_id": 808 + "minecraft:block.weeping_vines.place": { + "protocol_id": 750 }, - "minecraft:cocoa_beans": { - "protocol_id": 809 + "minecraft:block.weeping_vines.step": { + "protocol_id": 749 }, - "minecraft:white_dye": { - "protocol_id": 810 + "minecraft:block.wet_grass.break": { + "protocol_id": 1244 }, - "minecraft:orange_dye": { - "protocol_id": 811 + "minecraft:block.wet_grass.fall": { + "protocol_id": 1245 }, - "minecraft:magenta_dye": { - "protocol_id": 812 + "minecraft:block.wet_grass.hit": { + "protocol_id": 1246 }, - "minecraft:light_blue_dye": { - "protocol_id": 813 + "minecraft:block.wet_grass.place": { + "protocol_id": 1247 }, - "minecraft:yellow_dye": { - "protocol_id": 814 + "minecraft:block.wet_grass.step": { + "protocol_id": 1248 }, - "minecraft:lime_dye": { - "protocol_id": 815 + "minecraft:block.wood.break": { + "protocol_id": 1278 }, - "minecraft:pink_dye": { - "protocol_id": 816 + "minecraft:block.wood.fall": { + "protocol_id": 1281 }, - "minecraft:gray_dye": { - "protocol_id": 817 + "minecraft:block.wood.hit": { + "protocol_id": 1282 }, - "minecraft:light_gray_dye": { - "protocol_id": 818 + "minecraft:block.wood.place": { + "protocol_id": 1283 }, - "minecraft:cyan_dye": { - "protocol_id": 819 + "minecraft:block.wood.step": { + "protocol_id": 1286 }, - "minecraft:purple_dye": { - "protocol_id": 820 + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1279 }, - "minecraft:blue_dye": { - "protocol_id": 821 + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1280 }, - "minecraft:brown_dye": { - "protocol_id": 822 + "minecraft:block.wooden_door.close": { + "protocol_id": 1274 }, - "minecraft:green_dye": { - "protocol_id": 823 + "minecraft:block.wooden_door.open": { + "protocol_id": 1275 }, - "minecraft:red_dye": { - "protocol_id": 824 + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1284 }, - "minecraft:black_dye": { - "protocol_id": 825 + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1285 }, - "minecraft:bone_meal": { - "protocol_id": 826 + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1276 }, - "minecraft:bone": { - "protocol_id": 827 + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1277 }, - "minecraft:sugar": { - "protocol_id": 828 + "minecraft:block.wool.break": { + "protocol_id": 1287 }, - "minecraft:cake": { - "protocol_id": 829 + "minecraft:block.wool.fall": { + "protocol_id": 1288 }, - "minecraft:white_bed": { - "protocol_id": 830 + "minecraft:block.wool.hit": { + "protocol_id": 1289 }, - "minecraft:orange_bed": { - "protocol_id": 831 + "minecraft:block.wool.place": { + "protocol_id": 1290 }, - "minecraft:magenta_bed": { - "protocol_id": 832 + "minecraft:block.wool.step": { + "protocol_id": 1291 }, - "minecraft:light_blue_bed": { - "protocol_id": 833 + "minecraft:enchant.thorns.hit": { + "protocol_id": 1132 }, - "minecraft:yellow_bed": { - "protocol_id": 834 + "minecraft:entity.allay.ambient_with_item": { + "protocol_id": 0 }, - "minecraft:lime_bed": { - "protocol_id": 835 + "minecraft:entity.allay.ambient_without_item": { + "protocol_id": 1 }, - "minecraft:pink_bed": { - "protocol_id": 836 + "minecraft:entity.allay.death": { + "protocol_id": 2 }, - "minecraft:gray_bed": { - "protocol_id": 837 + "minecraft:entity.allay.hurt": { + "protocol_id": 3 }, - "minecraft:light_gray_bed": { - "protocol_id": 838 + "minecraft:entity.allay.item_given": { + "protocol_id": 4 }, - "minecraft:cyan_bed": { - "protocol_id": 839 + "minecraft:entity.allay.item_taken": { + "protocol_id": 5 }, - "minecraft:purple_bed": { - "protocol_id": 840 + "minecraft:entity.allay.item_thrown": { + "protocol_id": 6 }, - "minecraft:blue_bed": { - "protocol_id": 841 + "minecraft:entity.armor_stand.break": { + "protocol_id": 62 }, - "minecraft:brown_bed": { - "protocol_id": 842 + "minecraft:entity.armor_stand.fall": { + "protocol_id": 63 }, - "minecraft:green_bed": { - "protocol_id": 843 + "minecraft:entity.armor_stand.hit": { + "protocol_id": 64 }, - "minecraft:red_bed": { - "protocol_id": 844 + "minecraft:entity.armor_stand.place": { + "protocol_id": 65 }, - "minecraft:black_bed": { - "protocol_id": 845 + "minecraft:entity.arrow.hit": { + "protocol_id": 66 }, - "minecraft:cookie": { - "protocol_id": 846 + "minecraft:entity.arrow.hit_player": { + "protocol_id": 67 }, - "minecraft:filled_map": { - "protocol_id": 847 + "minecraft:entity.arrow.shoot": { + "protocol_id": 68 }, - "minecraft:shears": { - "protocol_id": 848 + "minecraft:entity.axolotl.attack": { + "protocol_id": 72 }, - "minecraft:melon_slice": { - "protocol_id": 849 + "minecraft:entity.axolotl.death": { + "protocol_id": 73 }, - "minecraft:dried_kelp": { - "protocol_id": 850 + "minecraft:entity.axolotl.hurt": { + "protocol_id": 74 }, - "minecraft:pumpkin_seeds": { - "protocol_id": 851 + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 75 }, - "minecraft:melon_seeds": { - "protocol_id": 852 + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 76 }, - "minecraft:beef": { - "protocol_id": 853 + "minecraft:entity.axolotl.splash": { + "protocol_id": 77 }, - "minecraft:cooked_beef": { - "protocol_id": 854 + "minecraft:entity.axolotl.swim": { + "protocol_id": 78 }, - "minecraft:chicken": { - "protocol_id": 855 + "minecraft:entity.bat.ambient": { + "protocol_id": 104 }, - "minecraft:cooked_chicken": { - "protocol_id": 856 + "minecraft:entity.bat.death": { + "protocol_id": 105 }, - "minecraft:rotten_flesh": { - "protocol_id": 857 + "minecraft:entity.bat.hurt": { + "protocol_id": 106 }, - "minecraft:ender_pearl": { - "protocol_id": 858 + "minecraft:entity.bat.loop": { + "protocol_id": 107 }, - "minecraft:blaze_rod": { - "protocol_id": 859 + "minecraft:entity.bat.takeoff": { + "protocol_id": 108 }, - "minecraft:ghast_tear": { - "protocol_id": 860 + "minecraft:entity.bee.death": { + "protocol_id": 113 }, - "minecraft:gold_nugget": { - "protocol_id": 861 + "minecraft:entity.bee.hurt": { + "protocol_id": 114 }, - "minecraft:nether_wart": { - "protocol_id": 862 + "minecraft:entity.bee.loop": { + "protocol_id": 116 }, - "minecraft:potion": { - "protocol_id": 863 + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 115 }, - "minecraft:glass_bottle": { - "protocol_id": 864 + "minecraft:entity.bee.pollinate": { + "protocol_id": 118 }, - "minecraft:spider_eye": { - "protocol_id": 865 + "minecraft:entity.bee.sting": { + "protocol_id": 117 }, - "minecraft:fermented_spider_eye": { - "protocol_id": 866 + "minecraft:entity.blaze.ambient": { + "protocol_id": 131 }, - "minecraft:blaze_powder": { - "protocol_id": 867 + "minecraft:entity.blaze.burn": { + "protocol_id": 132 }, - "minecraft:magma_cream": { - "protocol_id": 868 + "minecraft:entity.blaze.death": { + "protocol_id": 133 }, - "minecraft:brewing_stand": { - "protocol_id": 869 + "minecraft:entity.blaze.hurt": { + "protocol_id": 134 }, - "minecraft:cauldron": { - "protocol_id": 870 + "minecraft:entity.blaze.shoot": { + "protocol_id": 135 }, - "minecraft:ender_eye": { - "protocol_id": 871 + "minecraft:entity.boat.paddle_land": { + "protocol_id": 136 }, - "minecraft:glistering_melon_slice": { - "protocol_id": 872 + "minecraft:entity.boat.paddle_water": { + "protocol_id": 137 }, - "minecraft:axolotl_spawn_egg": { - "protocol_id": 873 + "minecraft:entity.cat.ambient": { + "protocol_id": 185 }, - "minecraft:bat_spawn_egg": { - "protocol_id": 874 + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 190 }, - "minecraft:bee_spawn_egg": { - "protocol_id": 875 + "minecraft:entity.cat.death": { + "protocol_id": 187 }, - "minecraft:blaze_spawn_egg": { - "protocol_id": 876 + "minecraft:entity.cat.eat": { + "protocol_id": 188 }, - "minecraft:cat_spawn_egg": { - "protocol_id": 877 + "minecraft:entity.cat.hiss": { + "protocol_id": 189 }, - "minecraft:cave_spider_spawn_egg": { - "protocol_id": 878 + "minecraft:entity.cat.hurt": { + "protocol_id": 191 }, - "minecraft:chicken_spawn_egg": { - "protocol_id": 879 + "minecraft:entity.cat.purr": { + "protocol_id": 192 }, - "minecraft:cod_spawn_egg": { - "protocol_id": 880 + "minecraft:entity.cat.purreow": { + "protocol_id": 193 }, - "minecraft:cow_spawn_egg": { - "protocol_id": 881 + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 186 }, - "minecraft:creeper_spawn_egg": { - "protocol_id": 882 + "minecraft:entity.chicken.ambient": { + "protocol_id": 208 }, - "minecraft:dolphin_spawn_egg": { - "protocol_id": 883 + "minecraft:entity.chicken.death": { + "protocol_id": 209 }, - "minecraft:donkey_spawn_egg": { - "protocol_id": 884 + "minecraft:entity.chicken.egg": { + "protocol_id": 210 }, - "minecraft:drowned_spawn_egg": { - "protocol_id": 885 + "minecraft:entity.chicken.hurt": { + "protocol_id": 211 }, - "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 886 + "minecraft:entity.chicken.step": { + "protocol_id": 212 }, - "minecraft:enderman_spawn_egg": { - "protocol_id": 887 + "minecraft:entity.cod.ambient": { + "protocol_id": 216 }, - "minecraft:endermite_spawn_egg": { - "protocol_id": 888 + "minecraft:entity.cod.death": { + "protocol_id": 217 }, - "minecraft:evoker_spawn_egg": { - "protocol_id": 889 + "minecraft:entity.cod.flop": { + "protocol_id": 218 }, - "minecraft:fox_spawn_egg": { - "protocol_id": 890 + "minecraft:entity.cod.hurt": { + "protocol_id": 219 }, - "minecraft:ghast_spawn_egg": { - "protocol_id": 891 + "minecraft:entity.cow.ambient": { + "protocol_id": 240 }, - "minecraft:glow_squid_spawn_egg": { - "protocol_id": 892 + "minecraft:entity.cow.death": { + "protocol_id": 241 }, - "minecraft:goat_spawn_egg": { - "protocol_id": 893 + "minecraft:entity.cow.hurt": { + "protocol_id": 242 }, - "minecraft:guardian_spawn_egg": { - "protocol_id": 894 + "minecraft:entity.cow.milk": { + "protocol_id": 243 }, - "minecraft:hoglin_spawn_egg": { - "protocol_id": 895 + "minecraft:entity.cow.step": { + "protocol_id": 244 }, - "minecraft:horse_spawn_egg": { - "protocol_id": 896 + "minecraft:entity.creeper.death": { + "protocol_id": 245 }, - "minecraft:husk_spawn_egg": { - "protocol_id": 897 + "minecraft:entity.creeper.hurt": { + "protocol_id": 246 }, - "minecraft:llama_spawn_egg": { - "protocol_id": 898 + "minecraft:entity.creeper.primed": { + "protocol_id": 247 }, - "minecraft:magma_cube_spawn_egg": { - "protocol_id": 899 + "minecraft:entity.dolphin.ambient": { + "protocol_id": 276 }, - "minecraft:mooshroom_spawn_egg": { - "protocol_id": 900 + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 277 }, - "minecraft:mule_spawn_egg": { - "protocol_id": 901 + "minecraft:entity.dolphin.attack": { + "protocol_id": 278 }, - "minecraft:ocelot_spawn_egg": { - "protocol_id": 902 + "minecraft:entity.dolphin.death": { + "protocol_id": 279 }, - "minecraft:panda_spawn_egg": { - "protocol_id": 903 + "minecraft:entity.dolphin.eat": { + "protocol_id": 280 }, - "minecraft:parrot_spawn_egg": { - "protocol_id": 904 + "minecraft:entity.dolphin.hurt": { + "protocol_id": 281 }, - "minecraft:phantom_spawn_egg": { - "protocol_id": 905 + "minecraft:entity.dolphin.jump": { + "protocol_id": 282 }, - "minecraft:pig_spawn_egg": { - "protocol_id": 906 + "minecraft:entity.dolphin.play": { + "protocol_id": 283 }, - "minecraft:piglin_spawn_egg": { - "protocol_id": 907 + "minecraft:entity.dolphin.splash": { + "protocol_id": 284 }, - "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 908 + "minecraft:entity.dolphin.swim": { + "protocol_id": 285 }, - "minecraft:pillager_spawn_egg": { - "protocol_id": 909 + "minecraft:entity.donkey.ambient": { + "protocol_id": 286 }, - "minecraft:polar_bear_spawn_egg": { - "protocol_id": 910 + "minecraft:entity.donkey.angry": { + "protocol_id": 287 }, - "minecraft:pufferfish_spawn_egg": { - "protocol_id": 911 + "minecraft:entity.donkey.chest": { + "protocol_id": 288 }, - "minecraft:rabbit_spawn_egg": { - "protocol_id": 912 + "minecraft:entity.donkey.death": { + "protocol_id": 289 }, - "minecraft:ravager_spawn_egg": { - "protocol_id": 913 + "minecraft:entity.donkey.eat": { + "protocol_id": 290 }, - "minecraft:salmon_spawn_egg": { - "protocol_id": 914 + "minecraft:entity.donkey.hurt": { + "protocol_id": 291 }, - "minecraft:sheep_spawn_egg": { - "protocol_id": 915 + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 334 }, - "minecraft:shulker_spawn_egg": { - "protocol_id": 916 + "minecraft:entity.drowned.ambient": { + "protocol_id": 309 }, - "minecraft:silverfish_spawn_egg": { - "protocol_id": 917 + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 310 }, - "minecraft:skeleton_spawn_egg": { - "protocol_id": 918 + "minecraft:entity.drowned.death": { + "protocol_id": 311 }, - "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 919 + "minecraft:entity.drowned.death_water": { + "protocol_id": 312 }, - "minecraft:slime_spawn_egg": { - "protocol_id": 920 + "minecraft:entity.drowned.hurt": { + "protocol_id": 313 }, - "minecraft:spider_spawn_egg": { - "protocol_id": 921 + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 314 }, - "minecraft:squid_spawn_egg": { - "protocol_id": 922 + "minecraft:entity.drowned.shoot": { + "protocol_id": 315 }, - "minecraft:stray_spawn_egg": { - "protocol_id": 923 + "minecraft:entity.drowned.step": { + "protocol_id": 316 }, - "minecraft:strider_spawn_egg": { - "protocol_id": 924 + "minecraft:entity.drowned.swim": { + "protocol_id": 317 }, - "minecraft:trader_llama_spawn_egg": { - "protocol_id": 925 + "minecraft:entity.egg.throw": { + "protocol_id": 319 }, - "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 926 + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 320 }, - "minecraft:turtle_spawn_egg": { - "protocol_id": 927 + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 321 }, - "minecraft:vex_spawn_egg": { - "protocol_id": 928 + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 322 }, - "minecraft:villager_spawn_egg": { - "protocol_id": 929 + "minecraft:entity.elder_guardian.death": { + "protocol_id": 323 }, - "minecraft:vindicator_spawn_egg": { - "protocol_id": 930 + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 324 }, - "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 931 + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 325 }, - "minecraft:witch_spawn_egg": { - "protocol_id": 932 + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 326 }, - "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 933 + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 327 }, - "minecraft:wolf_spawn_egg": { - "protocol_id": 934 + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 332 }, - "minecraft:zoglin_spawn_egg": { - "protocol_id": 935 + "minecraft:entity.ender_dragon.death": { + "protocol_id": 333 }, - "minecraft:zombie_spawn_egg": { - "protocol_id": 936 + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 335 }, - "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 937 + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 336 }, - "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 938 + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 337 }, - "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 939 + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 338 }, - "minecraft:experience_bottle": { - "protocol_id": 940 + "minecraft:entity.ender_eye.death": { + "protocol_id": 339 }, - "minecraft:fire_charge": { - "protocol_id": 941 + "minecraft:entity.ender_eye.launch": { + "protocol_id": 340 }, - "minecraft:writable_book": { - "protocol_id": 942 + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 351 }, - "minecraft:written_book": { - "protocol_id": 943 + "minecraft:entity.enderman.ambient": { + "protocol_id": 341 }, - "minecraft:item_frame": { - "protocol_id": 944 + "minecraft:entity.enderman.death": { + "protocol_id": 342 }, - "minecraft:glow_item_frame": { - "protocol_id": 945 + "minecraft:entity.enderman.hurt": { + "protocol_id": 343 }, - "minecraft:flower_pot": { - "protocol_id": 946 + "minecraft:entity.enderman.scream": { + "protocol_id": 344 }, - "minecraft:carrot": { - "protocol_id": 947 + "minecraft:entity.enderman.stare": { + "protocol_id": 345 }, - "minecraft:potato": { - "protocol_id": 948 + "minecraft:entity.enderman.teleport": { + "protocol_id": 346 }, - "minecraft:baked_potato": { - "protocol_id": 949 + "minecraft:entity.endermite.ambient": { + "protocol_id": 347 }, - "minecraft:poisonous_potato": { - "protocol_id": 950 + "minecraft:entity.endermite.death": { + "protocol_id": 348 }, - "minecraft:map": { - "protocol_id": 951 + "minecraft:entity.endermite.hurt": { + "protocol_id": 349 }, - "minecraft:golden_carrot": { - "protocol_id": 952 + "minecraft:entity.endermite.step": { + "protocol_id": 350 }, - "minecraft:skeleton_skull": { - "protocol_id": 953 + "minecraft:entity.evoker.ambient": { + "protocol_id": 355 }, - "minecraft:wither_skeleton_skull": { - "protocol_id": 954 + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 356 }, - "minecraft:player_head": { - "protocol_id": 955 + "minecraft:entity.evoker.celebrate": { + "protocol_id": 357 }, - "minecraft:zombie_head": { - "protocol_id": 956 + "minecraft:entity.evoker.death": { + "protocol_id": 358 }, - "minecraft:creeper_head": { - "protocol_id": 957 + "minecraft:entity.evoker.hurt": { + "protocol_id": 360 }, - "minecraft:dragon_head": { - "protocol_id": 958 + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 361 }, - "minecraft:nether_star": { - "protocol_id": 959 + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 362 }, - "minecraft:pumpkin_pie": { - "protocol_id": 960 + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 363 }, - "minecraft:firework_rocket": { - "protocol_id": 961 + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 359 }, - "minecraft:firework_star": { - "protocol_id": 962 + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 364 }, - "minecraft:enchanted_book": { - "protocol_id": 963 + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 365 }, - "minecraft:nether_brick": { - "protocol_id": 964 + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 369 }, - "minecraft:prismarine_shard": { - "protocol_id": 965 + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 370 }, - "minecraft:prismarine_crystals": { - "protocol_id": 966 + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 371 }, - "minecraft:rabbit": { - "protocol_id": 967 + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 372 }, - "minecraft:cooked_rabbit": { - "protocol_id": 968 + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 373 }, - "minecraft:rabbit_stew": { - "protocol_id": 969 + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 374 }, - "minecraft:rabbit_foot": { - "protocol_id": 970 + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 375 }, - "minecraft:rabbit_hide": { - "protocol_id": 971 + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 376 }, - "minecraft:armor_stand": { - "protocol_id": 972 + "minecraft:entity.fish.swim": { + "protocol_id": 379 }, - "minecraft:iron_horse_armor": { - "protocol_id": 973 + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 380 }, - "minecraft:golden_horse_armor": { - "protocol_id": 974 + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 381 }, - "minecraft:diamond_horse_armor": { - "protocol_id": 975 + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 382 }, - "minecraft:leather_horse_armor": { - "protocol_id": 976 + "minecraft:entity.fox.aggro": { + "protocol_id": 389 }, - "minecraft:lead": { - "protocol_id": 977 + "minecraft:entity.fox.ambient": { + "protocol_id": 390 }, - "minecraft:name_tag": { - "protocol_id": 978 + "minecraft:entity.fox.bite": { + "protocol_id": 391 }, - "minecraft:command_block_minecart": { - "protocol_id": 979 + "minecraft:entity.fox.death": { + "protocol_id": 392 }, - "minecraft:mutton": { - "protocol_id": 980 + "minecraft:entity.fox.eat": { + "protocol_id": 393 }, - "minecraft:cooked_mutton": { - "protocol_id": 981 + "minecraft:entity.fox.hurt": { + "protocol_id": 394 }, - "minecraft:white_banner": { - "protocol_id": 982 + "minecraft:entity.fox.screech": { + "protocol_id": 395 }, - "minecraft:orange_banner": { - "protocol_id": 983 + "minecraft:entity.fox.sleep": { + "protocol_id": 396 }, - "minecraft:magenta_banner": { - "protocol_id": 984 + "minecraft:entity.fox.sniff": { + "protocol_id": 397 }, - "minecraft:light_blue_banner": { - "protocol_id": 985 + "minecraft:entity.fox.spit": { + "protocol_id": 398 }, - "minecraft:yellow_banner": { - "protocol_id": 986 + "minecraft:entity.fox.teleport": { + "protocol_id": 399 }, - "minecraft:lime_banner": { - "protocol_id": 987 + "minecraft:entity.frog.ambient": { + "protocol_id": 411 }, - "minecraft:pink_banner": { - "protocol_id": 988 + "minecraft:entity.frog.death": { + "protocol_id": 412 }, - "minecraft:gray_banner": { - "protocol_id": 989 + "minecraft:entity.frog.eat": { + "protocol_id": 413 }, - "minecraft:light_gray_banner": { - "protocol_id": 990 + "minecraft:entity.frog.hurt": { + "protocol_id": 414 }, - "minecraft:cyan_banner": { - "protocol_id": 991 + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 415 }, - "minecraft:purple_banner": { - "protocol_id": 992 + "minecraft:entity.frog.long_jump": { + "protocol_id": 416 }, - "minecraft:blue_banner": { - "protocol_id": 993 + "minecraft:entity.frog.step": { + "protocol_id": 417 }, - "minecraft:brown_banner": { - "protocol_id": 994 + "minecraft:entity.frog.tongue": { + "protocol_id": 418 }, - "minecraft:green_banner": { - "protocol_id": 995 + "minecraft:entity.generic.big_fall": { + "protocol_id": 425 }, - "minecraft:red_banner": { - "protocol_id": 996 + "minecraft:entity.generic.burn": { + "protocol_id": 426 }, - "minecraft:black_banner": { - "protocol_id": 997 + "minecraft:entity.generic.death": { + "protocol_id": 427 }, - "minecraft:end_crystal": { - "protocol_id": 998 + "minecraft:entity.generic.drink": { + "protocol_id": 428 }, - "minecraft:chorus_fruit": { - "protocol_id": 999 + "minecraft:entity.generic.eat": { + "protocol_id": 429 }, - "minecraft:popped_chorus_fruit": { - "protocol_id": 1000 + "minecraft:entity.generic.explode": { + "protocol_id": 430 }, - "minecraft:beetroot": { - "protocol_id": 1001 + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 431 }, - "minecraft:beetroot_seeds": { - "protocol_id": 1002 + "minecraft:entity.generic.hurt": { + "protocol_id": 432 }, - "minecraft:beetroot_soup": { - "protocol_id": 1003 + "minecraft:entity.generic.small_fall": { + "protocol_id": 433 }, - "minecraft:dragon_breath": { - "protocol_id": 1004 + "minecraft:entity.generic.splash": { + "protocol_id": 434 }, - "minecraft:splash_potion": { - "protocol_id": 1005 + "minecraft:entity.generic.swim": { + "protocol_id": 435 }, - "minecraft:spectral_arrow": { - "protocol_id": 1006 + "minecraft:entity.ghast.ambient": { + "protocol_id": 436 }, - "minecraft:tipped_arrow": { - "protocol_id": 1007 + "minecraft:entity.ghast.death": { + "protocol_id": 437 }, - "minecraft:lingering_potion": { - "protocol_id": 1008 + "minecraft:entity.ghast.hurt": { + "protocol_id": 438 }, - "minecraft:shield": { - "protocol_id": 1009 + "minecraft:entity.ghast.scream": { + "protocol_id": 439 }, - "minecraft:totem_of_undying": { - "protocol_id": 1010 + "minecraft:entity.ghast.shoot": { + "protocol_id": 440 }, - "minecraft:shulker_shell": { - "protocol_id": 1011 + "minecraft:entity.ghast.warn": { + "protocol_id": 441 }, - "minecraft:iron_nugget": { - "protocol_id": 1012 + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 453 }, - "minecraft:knowledge_book": { - "protocol_id": 1013 + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 454 }, - "minecraft:debug_stick": { - "protocol_id": 1014 + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 455 }, - "minecraft:music_disc_13": { - "protocol_id": 1015 + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 456 }, - "minecraft:music_disc_cat": { - "protocol_id": 1016 + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 457 }, - "minecraft:music_disc_blocks": { - "protocol_id": 1017 + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 458 }, - "minecraft:music_disc_chirp": { - "protocol_id": 1018 + "minecraft:entity.glow_squid.death": { + "protocol_id": 459 }, - "minecraft:music_disc_far": { - "protocol_id": 1019 + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 460 }, - "minecraft:music_disc_mall": { - "protocol_id": 1020 + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 461 }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1021 + "minecraft:entity.goat.ambient": { + "protocol_id": 462 }, - "minecraft:music_disc_stal": { - "protocol_id": 1022 + "minecraft:entity.goat.death": { + "protocol_id": 463 }, - "minecraft:music_disc_strad": { - "protocol_id": 1023 + "minecraft:entity.goat.eat": { + "protocol_id": 464 }, - "minecraft:music_disc_ward": { - "protocol_id": 1024 + "minecraft:entity.goat.horn_break": { + "protocol_id": 470 }, - "minecraft:music_disc_11": { - "protocol_id": 1025 + "minecraft:entity.goat.hurt": { + "protocol_id": 465 }, - "minecraft:music_disc_wait": { - "protocol_id": 1026 + "minecraft:entity.goat.long_jump": { + "protocol_id": 466 }, - "minecraft:music_disc_otherside": { - "protocol_id": 1027 + "minecraft:entity.goat.milk": { + "protocol_id": 467 }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1028 + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 468 }, - "minecraft:trident": { - "protocol_id": 1029 + "minecraft:entity.goat.ram_impact": { + "protocol_id": 469 }, - "minecraft:phantom_membrane": { - "protocol_id": 1030 + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 472 }, - "minecraft:nautilus_shell": { - "protocol_id": 1031 + "minecraft:entity.goat.screaming.death": { + "protocol_id": 473 }, - "minecraft:heart_of_the_sea": { - "protocol_id": 1032 + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 474 }, - "minecraft:crossbow": { - "protocol_id": 1033 + "minecraft:entity.goat.screaming.horn_break": { + "protocol_id": 480 }, - "minecraft:suspicious_stew": { - "protocol_id": 1034 + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 475 }, - "minecraft:loom": { - "protocol_id": 1035 + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 476 }, - "minecraft:flower_banner_pattern": { - "protocol_id": 1036 + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 477 }, - "minecraft:creeper_banner_pattern": { - "protocol_id": 1037 + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 478 }, - "minecraft:skull_banner_pattern": { - "protocol_id": 1038 + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 479 }, - "minecraft:mojang_banner_pattern": { - "protocol_id": 1039 + "minecraft:entity.goat.step": { + "protocol_id": 481 }, - "minecraft:globe_banner_pattern": { - "protocol_id": 1040 + "minecraft:entity.guardian.ambient": { + "protocol_id": 494 }, - "minecraft:piglin_banner_pattern": { - "protocol_id": 1041 + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 495 }, - "minecraft:composter": { - "protocol_id": 1042 + "minecraft:entity.guardian.attack": { + "protocol_id": 496 }, - "minecraft:barrel": { - "protocol_id": 1043 + "minecraft:entity.guardian.death": { + "protocol_id": 497 }, - "minecraft:smoker": { - "protocol_id": 1044 + "minecraft:entity.guardian.death_land": { + "protocol_id": 498 }, - "minecraft:blast_furnace": { - "protocol_id": 1045 + "minecraft:entity.guardian.flop": { + "protocol_id": 499 }, - "minecraft:cartography_table": { - "protocol_id": 1046 + "minecraft:entity.guardian.hurt": { + "protocol_id": 500 }, - "minecraft:fletching_table": { - "protocol_id": 1047 + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 501 }, - "minecraft:grindstone": { - "protocol_id": 1048 + "minecraft:entity.hoglin.ambient": { + "protocol_id": 508 }, - "minecraft:smithing_table": { - "protocol_id": 1049 + "minecraft:entity.hoglin.angry": { + "protocol_id": 509 }, - "minecraft:stonecutter": { - "protocol_id": 1050 + "minecraft:entity.hoglin.attack": { + "protocol_id": 510 }, - "minecraft:bell": { - "protocol_id": 1051 + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 511 }, - "minecraft:lantern": { - "protocol_id": 1052 + "minecraft:entity.hoglin.death": { + "protocol_id": 512 }, - "minecraft:soul_lantern": { - "protocol_id": 1053 + "minecraft:entity.hoglin.hurt": { + "protocol_id": 513 }, - "minecraft:sweet_berries": { - "protocol_id": 1054 + "minecraft:entity.hoglin.retreat": { + "protocol_id": 514 }, - "minecraft:glow_berries": { - "protocol_id": 1055 + "minecraft:entity.hoglin.step": { + "protocol_id": 515 }, - "minecraft:campfire": { - "protocol_id": 1056 + "minecraft:entity.horse.ambient": { + "protocol_id": 532 }, - "minecraft:soul_campfire": { - "protocol_id": 1057 + "minecraft:entity.horse.angry": { + "protocol_id": 533 }, - "minecraft:shroomlight": { - "protocol_id": 1058 + "minecraft:entity.horse.armor": { + "protocol_id": 534 }, - "minecraft:honeycomb": { - "protocol_id": 1059 + "minecraft:entity.horse.breathe": { + "protocol_id": 535 }, - "minecraft:bee_nest": { - "protocol_id": 1060 + "minecraft:entity.horse.death": { + "protocol_id": 536 }, - "minecraft:beehive": { - "protocol_id": 1061 + "minecraft:entity.horse.eat": { + "protocol_id": 537 }, - "minecraft:honey_bottle": { - "protocol_id": 1062 + "minecraft:entity.horse.gallop": { + "protocol_id": 538 }, - "minecraft:honeycomb_block": { - "protocol_id": 1063 + "minecraft:entity.horse.hurt": { + "protocol_id": 539 }, - "minecraft:lodestone": { - "protocol_id": 1064 + "minecraft:entity.horse.jump": { + "protocol_id": 540 }, - "minecraft:crying_obsidian": { - "protocol_id": 1065 + "minecraft:entity.horse.land": { + "protocol_id": 541 }, - "minecraft:blackstone": { - "protocol_id": 1066 + "minecraft:entity.horse.saddle": { + "protocol_id": 542 }, - "minecraft:blackstone_slab": { - "protocol_id": 1067 + "minecraft:entity.horse.step": { + "protocol_id": 543 }, - "minecraft:blackstone_stairs": { - "protocol_id": 1068 + "minecraft:entity.horse.step_wood": { + "protocol_id": 544 }, - "minecraft:gilded_blackstone": { - "protocol_id": 1069 + "minecraft:entity.hostile.big_fall": { + "protocol_id": 545 }, - "minecraft:polished_blackstone": { - "protocol_id": 1070 + "minecraft:entity.hostile.death": { + "protocol_id": 546 }, - "minecraft:polished_blackstone_slab": { - "protocol_id": 1071 + "minecraft:entity.hostile.hurt": { + "protocol_id": 547 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 548 }, - "minecraft:polished_blackstone_stairs": { - "protocol_id": 1072 + "minecraft:entity.hostile.splash": { + "protocol_id": 549 }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1073 + "minecraft:entity.hostile.swim": { + "protocol_id": 550 }, - "minecraft:polished_blackstone_bricks": { - "protocol_id": 1074 + "minecraft:entity.husk.ambient": { + "protocol_id": 551 }, - "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1075 + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 552 }, - "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1076 + "minecraft:entity.husk.death": { + "protocol_id": 553 }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1077 + "minecraft:entity.husk.hurt": { + "protocol_id": 554 }, - "minecraft:respawn_anchor": { - "protocol_id": 1078 + "minecraft:entity.husk.step": { + "protocol_id": 555 }, - "minecraft:candle": { - "protocol_id": 1079 + "minecraft:entity.illusioner.ambient": { + "protocol_id": 556 }, - "minecraft:white_candle": { - "protocol_id": 1080 + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 557 }, - "minecraft:orange_candle": { - "protocol_id": 1081 + "minecraft:entity.illusioner.death": { + "protocol_id": 558 }, - "minecraft:magenta_candle": { - "protocol_id": 1082 + "minecraft:entity.illusioner.hurt": { + "protocol_id": 559 }, - "minecraft:light_blue_candle": { - "protocol_id": 1083 + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 560 }, - "minecraft:yellow_candle": { - "protocol_id": 1084 + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 561 }, - "minecraft:lime_candle": { - "protocol_id": 1085 + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 562 }, - "minecraft:pink_candle": { - "protocol_id": 1086 + "minecraft:entity.iron_golem.attack": { + "protocol_id": 566 }, - "minecraft:gray_candle": { - "protocol_id": 1087 + "minecraft:entity.iron_golem.damage": { + "protocol_id": 567 }, - "minecraft:light_gray_candle": { - "protocol_id": 1088 + "minecraft:entity.iron_golem.death": { + "protocol_id": 568 }, - "minecraft:cyan_candle": { - "protocol_id": 1089 + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 569 }, - "minecraft:purple_candle": { - "protocol_id": 1090 + "minecraft:entity.iron_golem.repair": { + "protocol_id": 570 }, - "minecraft:blue_candle": { - "protocol_id": 1091 + "minecraft:entity.iron_golem.step": { + "protocol_id": 571 }, - "minecraft:brown_candle": { - "protocol_id": 1092 + "minecraft:entity.item.break": { + "protocol_id": 579 }, - "minecraft:green_candle": { - "protocol_id": 1093 + "minecraft:entity.item.pickup": { + "protocol_id": 580 }, - "minecraft:red_candle": { - "protocol_id": 1094 + "minecraft:entity.item_frame.add_item": { + "protocol_id": 574 }, - "minecraft:black_candle": { - "protocol_id": 1095 + "minecraft:entity.item_frame.break": { + "protocol_id": 575 }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1096 + "minecraft:entity.item_frame.place": { + "protocol_id": 576 }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 1097 + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 577 }, - "minecraft:large_amethyst_bud": { - "protocol_id": 1098 + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 578 }, - "minecraft:amethyst_cluster": { - "protocol_id": 1099 + "minecraft:entity.leash_knot.break": { + "protocol_id": 596 }, - "minecraft:pointed_dripstone": { - "protocol_id": 1100 - } - } - }, - "minecraft:potion": { - "default": "minecraft:empty", - "protocol_id": 8, - "entries": { - "minecraft:empty": { - "protocol_id": 0 + "minecraft:entity.leash_knot.place": { + "protocol_id": 597 }, - "minecraft:water": { - "protocol_id": 1 + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 599 }, - "minecraft:mundane": { - "protocol_id": 2 + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 600 }, - "minecraft:thick": { - "protocol_id": 3 + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 601 }, - "minecraft:awkward": { - "protocol_id": 4 + "minecraft:entity.llama.ambient": { + "protocol_id": 602 }, - "minecraft:night_vision": { - "protocol_id": 5 + "minecraft:entity.llama.angry": { + "protocol_id": 603 }, - "minecraft:long_night_vision": { - "protocol_id": 6 + "minecraft:entity.llama.chest": { + "protocol_id": 604 }, - "minecraft:invisibility": { - "protocol_id": 7 + "minecraft:entity.llama.death": { + "protocol_id": 605 }, - "minecraft:long_invisibility": { - "protocol_id": 8 + "minecraft:entity.llama.eat": { + "protocol_id": 606 }, - "minecraft:leaping": { - "protocol_id": 9 + "minecraft:entity.llama.hurt": { + "protocol_id": 607 }, - "minecraft:long_leaping": { - "protocol_id": 10 + "minecraft:entity.llama.spit": { + "protocol_id": 608 }, - "minecraft:strong_leaping": { - "protocol_id": 11 + "minecraft:entity.llama.step": { + "protocol_id": 609 }, - "minecraft:fire_resistance": { - "protocol_id": 12 + "minecraft:entity.llama.swag": { + "protocol_id": 610 }, - "minecraft:long_fire_resistance": { - "protocol_id": 13 + "minecraft:entity.magma_cube.death": { + "protocol_id": 618 }, - "minecraft:swiftness": { - "protocol_id": 14 + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 611 }, - "minecraft:long_swiftness": { - "protocol_id": 15 + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 619 }, - "minecraft:strong_swiftness": { - "protocol_id": 16 + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 620 }, - "minecraft:slowness": { - "protocol_id": 17 + "minecraft:entity.magma_cube.jump": { + "protocol_id": 621 }, - "minecraft:long_slowness": { - "protocol_id": 18 + "minecraft:entity.magma_cube.squish": { + "protocol_id": 622 }, - "minecraft:strong_slowness": { - "protocol_id": 19 + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 623 }, - "minecraft:turtle_master": { - "protocol_id": 20 + "minecraft:entity.minecart.inside": { + "protocol_id": 639 }, - "minecraft:long_turtle_master": { - "protocol_id": 21 + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 638 }, - "minecraft:strong_turtle_master": { - "protocol_id": 22 + "minecraft:entity.minecart.riding": { + "protocol_id": 640 }, - "minecraft:water_breathing": { - "protocol_id": 23 + "minecraft:entity.mooshroom.convert": { + "protocol_id": 641 }, - "minecraft:long_water_breathing": { - "protocol_id": 24 + "minecraft:entity.mooshroom.eat": { + "protocol_id": 642 }, - "minecraft:healing": { - "protocol_id": 25 + "minecraft:entity.mooshroom.milk": { + "protocol_id": 643 }, - "minecraft:strong_healing": { - "protocol_id": 26 + "minecraft:entity.mooshroom.shear": { + "protocol_id": 645 }, - "minecraft:harming": { - "protocol_id": 27 + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 644 }, - "minecraft:strong_harming": { - "protocol_id": 28 + "minecraft:entity.mule.ambient": { + "protocol_id": 671 }, - "minecraft:poison": { - "protocol_id": 29 + "minecraft:entity.mule.angry": { + "protocol_id": 672 }, - "minecraft:long_poison": { - "protocol_id": 30 + "minecraft:entity.mule.chest": { + "protocol_id": 673 }, - "minecraft:strong_poison": { - "protocol_id": 31 + "minecraft:entity.mule.death": { + "protocol_id": 674 }, - "minecraft:regeneration": { - "protocol_id": 32 + "minecraft:entity.mule.eat": { + "protocol_id": 675 }, - "minecraft:long_regeneration": { - "protocol_id": 33 + "minecraft:entity.mule.hurt": { + "protocol_id": 676 }, - "minecraft:strong_regeneration": { - "protocol_id": 34 + "minecraft:entity.ocelot.ambient": { + "protocol_id": 785 }, - "minecraft:strength": { - "protocol_id": 35 + "minecraft:entity.ocelot.death": { + "protocol_id": 786 }, - "minecraft:long_strength": { - "protocol_id": 36 + "minecraft:entity.ocelot.hurt": { + "protocol_id": 784 }, - "minecraft:strong_strength": { - "protocol_id": 37 + "minecraft:entity.painting.break": { + "protocol_id": 787 }, - "minecraft:weakness": { - "protocol_id": 38 + "minecraft:entity.painting.place": { + "protocol_id": 788 }, - "minecraft:long_weakness": { - "protocol_id": 39 + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 796 }, - "minecraft:luck": { - "protocol_id": 40 + "minecraft:entity.panda.ambient": { + "protocol_id": 791 }, - "minecraft:slow_falling": { - "protocol_id": 41 + "minecraft:entity.panda.bite": { + "protocol_id": 799 }, - "minecraft:long_slow_falling": { - "protocol_id": 42 - } - } - }, - "minecraft:particle_type": { - "protocol_id": 9, - "entries": { - "minecraft:ambient_entity_effect": { - "protocol_id": 0 + "minecraft:entity.panda.cant_breed": { + "protocol_id": 795 }, - "minecraft:angry_villager": { - "protocol_id": 1 + "minecraft:entity.panda.death": { + "protocol_id": 792 }, - "minecraft:block": { - "protocol_id": 2 + "minecraft:entity.panda.eat": { + "protocol_id": 793 }, - "minecraft:block_marker": { - "protocol_id": 3 + "minecraft:entity.panda.hurt": { + "protocol_id": 798 }, - "minecraft:bubble": { - "protocol_id": 4 + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 789 }, - "minecraft:cloud": { - "protocol_id": 5 + "minecraft:entity.panda.sneeze": { + "protocol_id": 790 }, - "minecraft:crit": { - "protocol_id": 6 + "minecraft:entity.panda.step": { + "protocol_id": 794 }, - "minecraft:damage_indicator": { - "protocol_id": 7 + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 797 }, - "minecraft:dragon_breath": { - "protocol_id": 8 + "minecraft:entity.parrot.ambient": { + "protocol_id": 800 }, - "minecraft:dripping_lava": { - "protocol_id": 9 + "minecraft:entity.parrot.death": { + "protocol_id": 801 }, - "minecraft:falling_lava": { - "protocol_id": 10 + "minecraft:entity.parrot.eat": { + "protocol_id": 802 }, - "minecraft:landing_lava": { - "protocol_id": 11 + "minecraft:entity.parrot.fly": { + "protocol_id": 803 }, - "minecraft:dripping_water": { - "protocol_id": 12 + "minecraft:entity.parrot.hurt": { + "protocol_id": 804 }, - "minecraft:falling_water": { - "protocol_id": 13 + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 805 }, - "minecraft:dust": { - "protocol_id": 14 + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 806 }, - "minecraft:dust_color_transition": { - "protocol_id": 15 + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 807 }, - "minecraft:effect": { - "protocol_id": 16 + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 808 }, - "minecraft:elder_guardian": { - "protocol_id": 17 + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 809 }, - "minecraft:enchanted_hit": { - "protocol_id": 18 + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 810 }, - "minecraft:enchant": { - "protocol_id": 19 + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 811 }, - "minecraft:end_rod": { - "protocol_id": 20 + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 812 }, - "minecraft:entity_effect": { - "protocol_id": 21 + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 813 }, - "minecraft:explosion_emitter": { - "protocol_id": 22 + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 814 }, - "minecraft:explosion": { - "protocol_id": 23 + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 815 }, - "minecraft:falling_dust": { - "protocol_id": 24 + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 816 }, - "minecraft:firework": { - "protocol_id": 25 + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 817 }, - "minecraft:fishing": { - "protocol_id": 26 + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 818 }, - "minecraft:flame": { - "protocol_id": 27 + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 819 }, - "minecraft:soul_fire_flame": { - "protocol_id": 28 + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 820 }, - "minecraft:soul": { - "protocol_id": 29 + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 821 }, - "minecraft:flash": { - "protocol_id": 30 + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 822 }, - "minecraft:happy_villager": { - "protocol_id": 31 + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 823 }, - "minecraft:composter": { - "protocol_id": 32 + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 824 }, - "minecraft:heart": { - "protocol_id": 33 + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 825 }, - "minecraft:instant_effect": { - "protocol_id": 34 + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 826 }, - "minecraft:item": { - "protocol_id": 35 + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 827 }, - "minecraft:vibration": { - "protocol_id": 36 + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 828 }, - "minecraft:item_slime": { - "protocol_id": 37 + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 829 }, - "minecraft:item_snowball": { - "protocol_id": 38 + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 830 }, - "minecraft:large_smoke": { - "protocol_id": 39 + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 831 }, - "minecraft:lava": { - "protocol_id": 40 + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 832 }, - "minecraft:mycelium": { - "protocol_id": 41 + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 833 }, - "minecraft:note": { - "protocol_id": 42 + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 834 }, - "minecraft:poof": { - "protocol_id": 43 + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 835 }, - "minecraft:portal": { - "protocol_id": 44 + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 836 }, - "minecraft:rain": { - "protocol_id": 45 + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 837 }, - "minecraft:smoke": { - "protocol_id": 46 + "minecraft:entity.parrot.step": { + "protocol_id": 838 }, - "minecraft:sneeze": { - "protocol_id": 47 + "minecraft:entity.phantom.ambient": { + "protocol_id": 839 }, - "minecraft:spit": { - "protocol_id": 48 + "minecraft:entity.phantom.bite": { + "protocol_id": 840 }, - "minecraft:squid_ink": { - "protocol_id": 49 + "minecraft:entity.phantom.death": { + "protocol_id": 841 }, - "minecraft:sweep_attack": { - "protocol_id": 50 + "minecraft:entity.phantom.flap": { + "protocol_id": 842 }, - "minecraft:totem_of_undying": { - "protocol_id": 51 + "minecraft:entity.phantom.hurt": { + "protocol_id": 843 }, - "minecraft:underwater": { - "protocol_id": 52 + "minecraft:entity.phantom.swoop": { + "protocol_id": 844 }, - "minecraft:splash": { - "protocol_id": 53 + "minecraft:entity.pig.ambient": { + "protocol_id": 845 + }, + "minecraft:entity.pig.death": { + "protocol_id": 846 }, - "minecraft:witch": { - "protocol_id": 54 + "minecraft:entity.pig.hurt": { + "protocol_id": 847 }, - "minecraft:bubble_pop": { - "protocol_id": 55 + "minecraft:entity.pig.saddle": { + "protocol_id": 848 }, - "minecraft:current_down": { - "protocol_id": 56 + "minecraft:entity.pig.step": { + "protocol_id": 849 }, - "minecraft:bubble_column_up": { - "protocol_id": 57 + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 850 }, - "minecraft:nautilus": { - "protocol_id": 58 + "minecraft:entity.piglin.ambient": { + "protocol_id": 851 }, - "minecraft:dolphin": { - "protocol_id": 59 + "minecraft:entity.piglin.angry": { + "protocol_id": 852 }, - "minecraft:campfire_cosy_smoke": { - "protocol_id": 60 + "minecraft:entity.piglin.celebrate": { + "protocol_id": 853 }, - "minecraft:campfire_signal_smoke": { - "protocol_id": 61 + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 859 }, - "minecraft:dripping_honey": { - "protocol_id": 62 + "minecraft:entity.piglin.death": { + "protocol_id": 854 }, - "minecraft:falling_honey": { - "protocol_id": 63 + "minecraft:entity.piglin.hurt": { + "protocol_id": 856 }, - "minecraft:landing_honey": { - "protocol_id": 64 + "minecraft:entity.piglin.jealous": { + "protocol_id": 855 }, - "minecraft:falling_nectar": { - "protocol_id": 65 + "minecraft:entity.piglin.retreat": { + "protocol_id": 857 }, - "minecraft:falling_spore_blossom": { - "protocol_id": 66 + "minecraft:entity.piglin.step": { + "protocol_id": 858 }, - "minecraft:ash": { - "protocol_id": 67 + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 860 }, - "minecraft:crimson_spore": { - "protocol_id": 68 + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 861 }, - "minecraft:warped_spore": { - "protocol_id": 69 + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 865 }, - "minecraft:spore_blossom_air": { - "protocol_id": 70 + "minecraft:entity.piglin_brute.death": { + "protocol_id": 862 }, - "minecraft:dripping_obsidian_tear": { - "protocol_id": 71 + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 863 }, - "minecraft:falling_obsidian_tear": { - "protocol_id": 72 + "minecraft:entity.piglin_brute.step": { + "protocol_id": 864 }, - "minecraft:landing_obsidian_tear": { - "protocol_id": 73 + "minecraft:entity.pillager.ambient": { + "protocol_id": 866 }, - "minecraft:reverse_portal": { - "protocol_id": 74 + "minecraft:entity.pillager.celebrate": { + "protocol_id": 867 }, - "minecraft:white_ash": { - "protocol_id": 75 + "minecraft:entity.pillager.death": { + "protocol_id": 868 }, - "minecraft:small_flame": { - "protocol_id": 76 + "minecraft:entity.pillager.hurt": { + "protocol_id": 869 }, - "minecraft:snowflake": { - "protocol_id": 77 + "minecraft:entity.player.attack.crit": { + "protocol_id": 872 }, - "minecraft:dripping_dripstone_lava": { - "protocol_id": 78 + "minecraft:entity.player.attack.knockback": { + "protocol_id": 873 }, - "minecraft:falling_dripstone_lava": { - "protocol_id": 79 + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 874 }, - "minecraft:dripping_dripstone_water": { - "protocol_id": 80 + "minecraft:entity.player.attack.strong": { + "protocol_id": 875 }, - "minecraft:falling_dripstone_water": { - "protocol_id": 81 + "minecraft:entity.player.attack.sweep": { + "protocol_id": 876 }, - "minecraft:glow_squid_ink": { - "protocol_id": 82 + "minecraft:entity.player.attack.weak": { + "protocol_id": 877 }, - "minecraft:glow": { - "protocol_id": 83 + "minecraft:entity.player.big_fall": { + "protocol_id": 878 }, - "minecraft:wax_on": { - "protocol_id": 84 + "minecraft:entity.player.breath": { + "protocol_id": 879 }, - "minecraft:wax_off": { - "protocol_id": 85 + "minecraft:entity.player.burp": { + "protocol_id": 880 }, - "minecraft:electric_spark": { - "protocol_id": 86 + "minecraft:entity.player.death": { + "protocol_id": 881 }, - "minecraft:scrape": { - "protocol_id": 87 - } - } - }, - "minecraft:block_entity_type": { - "protocol_id": 10, - "entries": { - "minecraft:furnace": { - "protocol_id": 0 + "minecraft:entity.player.hurt": { + "protocol_id": 882 }, - "minecraft:chest": { - "protocol_id": 1 + "minecraft:entity.player.hurt_drown": { + "protocol_id": 883 }, - "minecraft:trapped_chest": { - "protocol_id": 2 + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 884 }, - "minecraft:ender_chest": { - "protocol_id": 3 + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 885 }, - "minecraft:jukebox": { - "protocol_id": 4 + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 886 }, - "minecraft:dispenser": { - "protocol_id": 5 + "minecraft:entity.player.levelup": { + "protocol_id": 887 }, - "minecraft:dropper": { - "protocol_id": 6 + "minecraft:entity.player.small_fall": { + "protocol_id": 888 }, - "minecraft:sign": { - "protocol_id": 7 + "minecraft:entity.player.splash": { + "protocol_id": 889 }, - "minecraft:mob_spawner": { - "protocol_id": 8 + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 890 }, - "minecraft:piston": { - "protocol_id": 9 + "minecraft:entity.player.swim": { + "protocol_id": 891 }, - "minecraft:brewing_stand": { - "protocol_id": 10 + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 892 }, - "minecraft:enchanting_table": { - "protocol_id": 11 + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 893 }, - "minecraft:end_portal": { - "protocol_id": 12 + "minecraft:entity.polar_bear.death": { + "protocol_id": 894 }, - "minecraft:beacon": { - "protocol_id": 13 + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 895 }, - "minecraft:skull": { - "protocol_id": 14 + "minecraft:entity.polar_bear.step": { + "protocol_id": 896 }, - "minecraft:daylight_detector": { - "protocol_id": 15 + "minecraft:entity.polar_bear.warning": { + "protocol_id": 897 }, - "minecraft:hopper": { - "protocol_id": 16 + "minecraft:entity.puffer_fish.ambient": { + "protocol_id": 911 }, - "minecraft:comparator": { - "protocol_id": 17 + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 912 }, - "minecraft:banner": { - "protocol_id": 18 + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 913 }, - "minecraft:structure_block": { - "protocol_id": 19 + "minecraft:entity.puffer_fish.death": { + "protocol_id": 914 }, - "minecraft:end_gateway": { - "protocol_id": 20 + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 915 }, - "minecraft:command_block": { - "protocol_id": 21 + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 916 }, - "minecraft:shulker_box": { - "protocol_id": 22 + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 917 }, - "minecraft:bed": { - "protocol_id": 23 + "minecraft:entity.rabbit.ambient": { + "protocol_id": 919 }, - "minecraft:conduit": { - "protocol_id": 24 + "minecraft:entity.rabbit.attack": { + "protocol_id": 920 }, - "minecraft:barrel": { - "protocol_id": 25 + "minecraft:entity.rabbit.death": { + "protocol_id": 921 }, - "minecraft:smoker": { - "protocol_id": 26 + "minecraft:entity.rabbit.hurt": { + "protocol_id": 922 }, - "minecraft:blast_furnace": { - "protocol_id": 27 + "minecraft:entity.rabbit.jump": { + "protocol_id": 923 }, - "minecraft:lectern": { - "protocol_id": 28 + "minecraft:entity.ravager.ambient": { + "protocol_id": 925 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 926 }, - "minecraft:bell": { - "protocol_id": 29 + "minecraft:entity.ravager.celebrate": { + "protocol_id": 927 }, - "minecraft:jigsaw": { - "protocol_id": 30 + "minecraft:entity.ravager.death": { + "protocol_id": 928 }, - "minecraft:campfire": { - "protocol_id": 31 + "minecraft:entity.ravager.hurt": { + "protocol_id": 929 }, - "minecraft:beehive": { - "protocol_id": 32 + "minecraft:entity.ravager.roar": { + "protocol_id": 932 }, - "minecraft:sculk_sensor": { - "protocol_id": 33 - } - } - }, - "minecraft:motive": { - "default": "minecraft:kebab", - "protocol_id": 11, - "entries": { - "minecraft:kebab": { - "protocol_id": 0 + "minecraft:entity.ravager.step": { + "protocol_id": 930 }, - "minecraft:aztec": { - "protocol_id": 1 + "minecraft:entity.ravager.stunned": { + "protocol_id": 931 }, - "minecraft:alban": { - "protocol_id": 2 + "minecraft:entity.salmon.ambient": { + "protocol_id": 953 }, - "minecraft:aztec2": { - "protocol_id": 3 + "minecraft:entity.salmon.death": { + "protocol_id": 954 }, - "minecraft:bomb": { - "protocol_id": 4 + "minecraft:entity.salmon.flop": { + "protocol_id": 955 }, - "minecraft:plant": { - "protocol_id": 5 + "minecraft:entity.salmon.hurt": { + "protocol_id": 956 }, - "minecraft:wasteland": { - "protocol_id": 6 + "minecraft:entity.sheep.ambient": { + "protocol_id": 998 }, - "minecraft:pool": { - "protocol_id": 7 + "minecraft:entity.sheep.death": { + "protocol_id": 999 }, - "minecraft:courbet": { - "protocol_id": 8 + "minecraft:entity.sheep.hurt": { + "protocol_id": 1000 }, - "minecraft:sea": { - "protocol_id": 9 + "minecraft:entity.sheep.shear": { + "protocol_id": 1001 }, - "minecraft:sunset": { - "protocol_id": 10 + "minecraft:entity.sheep.step": { + "protocol_id": 1002 }, - "minecraft:creebet": { - "protocol_id": 11 + "minecraft:entity.shulker.ambient": { + "protocol_id": 1011 }, - "minecraft:wanderer": { - "protocol_id": 12 + "minecraft:entity.shulker.close": { + "protocol_id": 1016 }, - "minecraft:graham": { - "protocol_id": 13 + "minecraft:entity.shulker.death": { + "protocol_id": 1017 }, - "minecraft:match": { - "protocol_id": 14 + "minecraft:entity.shulker.hurt": { + "protocol_id": 1018 }, - "minecraft:bust": { - "protocol_id": 15 + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1019 }, - "minecraft:stage": { - "protocol_id": 16 + "minecraft:entity.shulker.open": { + "protocol_id": 1020 }, - "minecraft:void": { - "protocol_id": 17 + "minecraft:entity.shulker.shoot": { + "protocol_id": 1021 }, - "minecraft:skull_and_roses": { - "protocol_id": 18 + "minecraft:entity.shulker.teleport": { + "protocol_id": 1022 }, - "minecraft:wither": { - "protocol_id": 19 + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1014 }, - "minecraft:fighters": { - "protocol_id": 20 + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1015 }, - "minecraft:pointer": { - "protocol_id": 21 + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1023 }, - "minecraft:pigscene": { - "protocol_id": 22 + "minecraft:entity.silverfish.death": { + "protocol_id": 1024 }, - "minecraft:burning_skull": { - "protocol_id": 23 + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1025 }, - "minecraft:skeleton": { - "protocol_id": 24 + "minecraft:entity.silverfish.step": { + "protocol_id": 1026 }, - "minecraft:donkey_kong": { - "protocol_id": 25 - } - } - }, - "minecraft:custom_stat": { - "protocol_id": 12, - "entries": { - "minecraft:leave_game": { - "protocol_id": 0 + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1027 }, - "minecraft:play_time": { - "protocol_id": 1 + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1028 }, - "minecraft:total_world_time": { - "protocol_id": 2 + "minecraft:entity.skeleton.death": { + "protocol_id": 1029 }, - "minecraft:time_since_death": { - "protocol_id": 3 + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1038 }, - "minecraft:time_since_rest": { - "protocol_id": 4 + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1039 }, - "minecraft:sneak_time": { - "protocol_id": 5 + "minecraft:entity.skeleton.step": { + "protocol_id": 1040 }, - "minecraft:walk_one_cm": { - "protocol_id": 6 + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1030 }, - "minecraft:crouch_one_cm": { - "protocol_id": 7 + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1034 }, - "minecraft:sprint_one_cm": { - "protocol_id": 8 + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1031 }, - "minecraft:walk_on_water_one_cm": { - "protocol_id": 9 + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1035 }, - "minecraft:fall_one_cm": { - "protocol_id": 10 + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1032 }, - "minecraft:climb_one_cm": { - "protocol_id": 11 + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1036 }, - "minecraft:fly_one_cm": { - "protocol_id": 12 + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1037 }, - "minecraft:walk_under_water_one_cm": { - "protocol_id": 13 + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1033 }, - "minecraft:minecart_one_cm": { - "protocol_id": 14 + "minecraft:entity.slime.attack": { + "protocol_id": 1041 }, - "minecraft:boat_one_cm": { - "protocol_id": 15 + "minecraft:entity.slime.death": { + "protocol_id": 1042 }, - "minecraft:pig_one_cm": { - "protocol_id": 16 + "minecraft:entity.slime.death_small": { + "protocol_id": 1083 }, - "minecraft:horse_one_cm": { - "protocol_id": 17 + "minecraft:entity.slime.hurt": { + "protocol_id": 1043 }, - "minecraft:aviate_one_cm": { - "protocol_id": 18 + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1084 }, - "minecraft:swim_one_cm": { - "protocol_id": 19 + "minecraft:entity.slime.jump": { + "protocol_id": 1044 }, - "minecraft:strider_one_cm": { - "protocol_id": 20 + "minecraft:entity.slime.jump_small": { + "protocol_id": 1085 }, - "minecraft:jump": { - "protocol_id": 21 + "minecraft:entity.slime.squish": { + "protocol_id": 1045 }, - "minecraft:drop": { - "protocol_id": 22 + "minecraft:entity.slime.squish_small": { + "protocol_id": 1086 }, - "minecraft:damage_dealt": { - "protocol_id": 23 + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1092 }, - "minecraft:damage_dealt_absorbed": { - "protocol_id": 24 + "minecraft:entity.snow_golem.death": { + "protocol_id": 1093 }, - "minecraft:damage_dealt_resisted": { - "protocol_id": 25 + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1094 }, - "minecraft:damage_taken": { - "protocol_id": 26 + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1096 }, - "minecraft:damage_blocked_by_shield": { - "protocol_id": 27 + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1095 }, - "minecraft:damage_absorbed": { - "protocol_id": 28 + "minecraft:entity.snowball.throw": { + "protocol_id": 1089 }, - "minecraft:damage_resisted": { - "protocol_id": 29 + "minecraft:entity.spider.ambient": { + "protocol_id": 1100 }, - "minecraft:deaths": { - "protocol_id": 30 + "minecraft:entity.spider.death": { + "protocol_id": 1101 }, - "minecraft:mob_kills": { - "protocol_id": 31 + "minecraft:entity.spider.hurt": { + "protocol_id": 1102 }, - "minecraft:animals_bred": { - "protocol_id": 32 + "minecraft:entity.spider.step": { + "protocol_id": 1103 }, - "minecraft:player_kills": { - "protocol_id": 33 + "minecraft:entity.splash_potion.break": { + "protocol_id": 1104 }, - "minecraft:fish_caught": { - "protocol_id": 34 + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1105 }, - "minecraft:talked_to_villager": { - "protocol_id": 35 + "minecraft:entity.squid.ambient": { + "protocol_id": 1108 }, - "minecraft:traded_with_villager": { - "protocol_id": 36 + "minecraft:entity.squid.death": { + "protocol_id": 1109 }, - "minecraft:eat_cake_slice": { - "protocol_id": 37 + "minecraft:entity.squid.hurt": { + "protocol_id": 1110 }, - "minecraft:fill_cauldron": { - "protocol_id": 38 + "minecraft:entity.squid.squirt": { + "protocol_id": 1111 }, - "minecraft:use_cauldron": { - "protocol_id": 39 + "minecraft:entity.stray.ambient": { + "protocol_id": 1121 }, - "minecraft:clean_armor": { - "protocol_id": 40 + "minecraft:entity.stray.death": { + "protocol_id": 1122 }, - "minecraft:clean_banner": { - "protocol_id": 41 + "minecraft:entity.stray.hurt": { + "protocol_id": 1123 }, - "minecraft:clean_shulker_box": { - "protocol_id": 42 + "minecraft:entity.stray.step": { + "protocol_id": 1124 }, - "minecraft:interact_with_brewingstand": { - "protocol_id": 43 + "minecraft:entity.strider.ambient": { + "protocol_id": 1074 }, - "minecraft:interact_with_beacon": { - "protocol_id": 44 + "minecraft:entity.strider.death": { + "protocol_id": 1077 }, - "minecraft:inspect_dropper": { - "protocol_id": 45 + "minecraft:entity.strider.eat": { + "protocol_id": 1081 }, - "minecraft:inspect_hopper": { - "protocol_id": 46 + "minecraft:entity.strider.happy": { + "protocol_id": 1075 }, - "minecraft:inspect_dispenser": { - "protocol_id": 47 + "minecraft:entity.strider.hurt": { + "protocol_id": 1078 }, - "minecraft:play_noteblock": { - "protocol_id": 48 + "minecraft:entity.strider.retreat": { + "protocol_id": 1076 }, - "minecraft:tune_noteblock": { - "protocol_id": 49 + "minecraft:entity.strider.saddle": { + "protocol_id": 1082 }, - "minecraft:pot_flower": { - "protocol_id": 50 + "minecraft:entity.strider.step": { + "protocol_id": 1079 }, - "minecraft:trigger_trapped_chest": { - "protocol_id": 51 + "minecraft:entity.strider.step_lava": { + "protocol_id": 1080 }, - "minecraft:open_enderchest": { - "protocol_id": 52 + "minecraft:entity.tadpole.death": { + "protocol_id": 1128 }, - "minecraft:enchant_item": { - "protocol_id": 53 + "minecraft:entity.tadpole.flop": { + "protocol_id": 1129 }, - "minecraft:play_record": { - "protocol_id": 54 + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1130 }, - "minecraft:interact_with_furnace": { - "protocol_id": 55 + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1131 }, - "minecraft:interact_with_crafting_table": { - "protocol_id": 56 + "minecraft:entity.tnt.primed": { + "protocol_id": 1133 }, - "minecraft:open_chest": { - "protocol_id": 57 + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1147 }, - "minecraft:sleep_in_bed": { - "protocol_id": 58 + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1148 }, - "minecraft:open_shulker_box": { - "protocol_id": 59 + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1149 }, - "minecraft:open_barrel": { - "protocol_id": 60 + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1150 }, - "minecraft:interact_with_blast_furnace": { - "protocol_id": 61 + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1156 }, - "minecraft:interact_with_smoker": { - "protocol_id": 62 + "minecraft:entity.turtle.death": { + "protocol_id": 1157 }, - "minecraft:interact_with_lectern": { - "protocol_id": 63 + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1158 }, - "minecraft:interact_with_campfire": { - "protocol_id": 64 + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1159 }, - "minecraft:interact_with_cartography_table": { - "protocol_id": 65 + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1160 }, - "minecraft:interact_with_loom": { - "protocol_id": 66 + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1161 }, - "minecraft:interact_with_stonecutter": { - "protocol_id": 67 + "minecraft:entity.turtle.hurt": { + "protocol_id": 1162 }, - "minecraft:bell_ring": { - "protocol_id": 68 + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1163 }, - "minecraft:raid_trigger": { - "protocol_id": 69 + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1164 }, - "minecraft:raid_win": { - "protocol_id": 70 + "minecraft:entity.turtle.shamble": { + "protocol_id": 1165 }, - "minecraft:interact_with_anvil": { - "protocol_id": 71 + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1166 }, - "minecraft:interact_with_grindstone": { - "protocol_id": 72 + "minecraft:entity.turtle.swim": { + "protocol_id": 1167 }, - "minecraft:target_hit": { - "protocol_id": 73 + "minecraft:entity.vex.ambient": { + "protocol_id": 1177 }, - "minecraft:interact_with_smithing_table": { - "protocol_id": 74 - } - } - }, - "minecraft:chunk_status": { - "default": "minecraft:empty", - "protocol_id": 13, - "entries": { - "minecraft:empty": { - "protocol_id": 0 + "minecraft:entity.vex.charge": { + "protocol_id": 1178 }, - "minecraft:structure_starts": { - "protocol_id": 1 + "minecraft:entity.vex.death": { + "protocol_id": 1179 }, - "minecraft:structure_references": { - "protocol_id": 2 + "minecraft:entity.vex.hurt": { + "protocol_id": 1180 }, - "minecraft:biomes": { - "protocol_id": 3 + "minecraft:entity.villager.ambient": { + "protocol_id": 1181 }, - "minecraft:noise": { - "protocol_id": 4 + "minecraft:entity.villager.celebrate": { + "protocol_id": 1182 }, - "minecraft:surface": { - "protocol_id": 5 + "minecraft:entity.villager.death": { + "protocol_id": 1183 }, - "minecraft:carvers": { - "protocol_id": 6 + "minecraft:entity.villager.hurt": { + "protocol_id": 1184 }, - "minecraft:liquid_carvers": { - "protocol_id": 7 + "minecraft:entity.villager.no": { + "protocol_id": 1185 }, - "minecraft:features": { - "protocol_id": 8 + "minecraft:entity.villager.trade": { + "protocol_id": 1186 }, - "minecraft:light": { - "protocol_id": 9 + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1188 }, - "minecraft:spawn": { - "protocol_id": 10 + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1189 }, - "minecraft:heightmaps": { - "protocol_id": 11 + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1190 }, - "minecraft:full": { - "protocol_id": 12 - } - } - }, - "minecraft:rule_test": { - "protocol_id": 14, - "entries": { - "minecraft:always_true": { - "protocol_id": 0 + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1191 }, - "minecraft:block_match": { - "protocol_id": 1 + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1192 }, - "minecraft:blockstate_match": { - "protocol_id": 2 + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1193 }, - "minecraft:tag_match": { - "protocol_id": 3 + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1194 }, - "minecraft:random_block_match": { - "protocol_id": 4 + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1195 }, - "minecraft:random_blockstate_match": { - "protocol_id": 5 - } - } - }, - "minecraft:pos_rule_test": { - "protocol_id": 15, - "entries": { - "minecraft:always_true": { - "protocol_id": 0 + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1196 }, - "minecraft:linear_pos": { - "protocol_id": 1 + "minecraft:entity.villager.work_mason": { + "protocol_id": 1197 }, - "minecraft:axis_aligned_linear_pos": { - "protocol_id": 2 - } - } - }, - "minecraft:menu": { - "protocol_id": 16, - "entries": { - "minecraft:generic_9x1": { - "protocol_id": 0 + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1198 }, - "minecraft:generic_9x2": { - "protocol_id": 1 + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1199 }, - "minecraft:generic_9x3": { - "protocol_id": 2 + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1200 }, - "minecraft:generic_9x4": { - "protocol_id": 3 + "minecraft:entity.villager.yes": { + "protocol_id": 1187 }, - "minecraft:generic_9x5": { - "protocol_id": 4 + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1201 }, - "minecraft:generic_9x6": { - "protocol_id": 5 + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1202 }, - "minecraft:generic_3x3": { - "protocol_id": 6 + "minecraft:entity.vindicator.death": { + "protocol_id": 1203 }, - "minecraft:anvil": { - "protocol_id": 7 + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1204 }, - "minecraft:beacon": { - "protocol_id": 8 + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1211 }, - "minecraft:blast_furnace": { - "protocol_id": 9 + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1212 }, - "minecraft:brewing_stand": { - "protocol_id": 10 + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1213 }, - "minecraft:crafting": { - "protocol_id": 11 + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1214 }, - "minecraft:enchantment": { - "protocol_id": 12 + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1215 }, - "minecraft:furnace": { - "protocol_id": 13 + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1216 }, - "minecraft:grindstone": { - "protocol_id": 14 + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1217 }, - "minecraft:hopper": { - "protocol_id": 15 + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1218 }, - "minecraft:lectern": { - "protocol_id": 16 + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1219 }, - "minecraft:loom": { - "protocol_id": 17 + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1220 }, - "minecraft:merchant": { - "protocol_id": 18 + "minecraft:entity.warden.agitated": { + "protocol_id": 1221 }, - "minecraft:shulker_box": { - "protocol_id": 19 + "minecraft:entity.warden.ambient": { + "protocol_id": 1222 }, - "minecraft:smithing": { - "protocol_id": 20 + "minecraft:entity.warden.angry": { + "protocol_id": 1223 }, - "minecraft:smoker": { - "protocol_id": 21 + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1224 }, - "minecraft:cartography_table": { - "protocol_id": 22 + "minecraft:entity.warden.death": { + "protocol_id": 1225 }, - "minecraft:stonecutter": { - "protocol_id": 23 - } - } - }, - "minecraft:recipe_type": { - "protocol_id": 17, - "entries": { - "minecraft:crafting": { - "protocol_id": 0 + "minecraft:entity.warden.dig": { + "protocol_id": 1226 }, - "minecraft:smelting": { - "protocol_id": 1 + "minecraft:entity.warden.emerge": { + "protocol_id": 1227 }, - "minecraft:blasting": { - "protocol_id": 2 + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1228 }, - "minecraft:smoking": { - "protocol_id": 3 + "minecraft:entity.warden.hurt": { + "protocol_id": 1229 }, - "minecraft:campfire_cooking": { - "protocol_id": 4 + "minecraft:entity.warden.listening": { + "protocol_id": 1230 }, - "minecraft:stonecutting": { - "protocol_id": 5 + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1231 }, - "minecraft:smithing": { - "protocol_id": 6 - } - } - }, - "minecraft:recipe_serializer": { - "protocol_id": 18, - "entries": { - "minecraft:crafting_shaped": { - "protocol_id": 0 + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1232 }, - "minecraft:crafting_shapeless": { - "protocol_id": 1 + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1233 }, - "minecraft:crafting_special_armordye": { - "protocol_id": 2 + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1234 }, - "minecraft:crafting_special_bookcloning": { - "protocol_id": 3 + "minecraft:entity.warden.roar": { + "protocol_id": 1235 }, - "minecraft:crafting_special_mapcloning": { - "protocol_id": 4 + "minecraft:entity.warden.sniff": { + "protocol_id": 1236 }, - "minecraft:crafting_special_mapextending": { - "protocol_id": 5 + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1237 }, - "minecraft:crafting_special_firework_rocket": { - "protocol_id": 6 + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1238 }, - "minecraft:crafting_special_firework_star": { - "protocol_id": 7 + "minecraft:entity.warden.step": { + "protocol_id": 1239 }, - "minecraft:crafting_special_firework_star_fade": { - "protocol_id": 8 + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1240 }, - "minecraft:crafting_special_tippedarrow": { - "protocol_id": 9 + "minecraft:entity.witch.ambient": { + "protocol_id": 1249 }, - "minecraft:crafting_special_bannerduplicate": { - "protocol_id": 10 + "minecraft:entity.witch.celebrate": { + "protocol_id": 1250 }, - "minecraft:crafting_special_shielddecoration": { - "protocol_id": 11 + "minecraft:entity.witch.death": { + "protocol_id": 1251 }, - "minecraft:crafting_special_shulkerboxcoloring": { - "protocol_id": 12 + "minecraft:entity.witch.drink": { + "protocol_id": 1252 }, - "minecraft:crafting_special_suspiciousstew": { - "protocol_id": 13 + "minecraft:entity.witch.hurt": { + "protocol_id": 1253 }, - "minecraft:crafting_special_repairitem": { - "protocol_id": 14 + "minecraft:entity.witch.throw": { + "protocol_id": 1254 }, - "minecraft:smelting": { - "protocol_id": 15 + "minecraft:entity.wither.ambient": { + "protocol_id": 1255 }, - "minecraft:blasting": { - "protocol_id": 16 + "minecraft:entity.wither.break_block": { + "protocol_id": 1256 }, - "minecraft:smoking": { - "protocol_id": 17 + "minecraft:entity.wither.death": { + "protocol_id": 1257 }, - "minecraft:campfire_cooking": { - "protocol_id": 18 + "minecraft:entity.wither.hurt": { + "protocol_id": 1258 }, - "minecraft:stonecutting": { - "protocol_id": 19 + "minecraft:entity.wither.shoot": { + "protocol_id": 1259 }, - "minecraft:smithing": { - "protocol_id": 20 - } - } - }, - "minecraft:attribute": { - "protocol_id": 19, - "entries": { - "minecraft:generic.max_health": { - "protocol_id": 0 + "minecraft:entity.wither.spawn": { + "protocol_id": 1264 }, - "minecraft:generic.follow_range": { - "protocol_id": 1 + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1260 }, - "minecraft:generic.knockback_resistance": { - "protocol_id": 2 + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1261 }, - "minecraft:generic.movement_speed": { - "protocol_id": 3 + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1262 }, - "minecraft:generic.flying_speed": { - "protocol_id": 4 + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1263 }, - "minecraft:generic.attack_damage": { - "protocol_id": 5 + "minecraft:entity.wolf.ambient": { + "protocol_id": 1265 }, - "minecraft:generic.attack_knockback": { - "protocol_id": 6 + "minecraft:entity.wolf.death": { + "protocol_id": 1266 }, - "minecraft:generic.attack_speed": { - "protocol_id": 7 + "minecraft:entity.wolf.growl": { + "protocol_id": 1267 }, - "minecraft:generic.armor": { - "protocol_id": 8 + "minecraft:entity.wolf.howl": { + "protocol_id": 1268 }, - "minecraft:generic.armor_toughness": { - "protocol_id": 9 + "minecraft:entity.wolf.hurt": { + "protocol_id": 1269 }, - "minecraft:generic.luck": { - "protocol_id": 10 + "minecraft:entity.wolf.pant": { + "protocol_id": 1270 }, - "minecraft:zombie.spawn_reinforcements": { - "protocol_id": 11 + "minecraft:entity.wolf.shake": { + "protocol_id": 1271 }, - "minecraft:horse.jump_strength": { - "protocol_id": 12 - } - } - }, - "minecraft:position_source_type": { - "protocol_id": 20, - "entries": { - "minecraft:block": { - "protocol_id": 0 + "minecraft:entity.wolf.step": { + "protocol_id": 1272 }, - "minecraft:entity": { - "protocol_id": 1 - } - } - }, - "minecraft:stat_type": { - "protocol_id": 21, - "entries": { - "minecraft:mined": { - "protocol_id": 0 + "minecraft:entity.wolf.whine": { + "protocol_id": 1273 }, - "minecraft:crafted": { - "protocol_id": 1 + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1292 }, - "minecraft:used": { - "protocol_id": 2 + "minecraft:entity.zoglin.angry": { + "protocol_id": 1293 }, - "minecraft:broken": { - "protocol_id": 3 + "minecraft:entity.zoglin.attack": { + "protocol_id": 1294 }, - "minecraft:picked_up": { - "protocol_id": 4 + "minecraft:entity.zoglin.death": { + "protocol_id": 1295 }, - "minecraft:dropped": { - "protocol_id": 5 + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1296 }, - "minecraft:killed": { - "protocol_id": 6 + "minecraft:entity.zoglin.step": { + "protocol_id": 1297 }, - "minecraft:killed_by": { - "protocol_id": 7 + "minecraft:entity.zombie.ambient": { + "protocol_id": 1298 }, - "minecraft:custom": { - "protocol_id": 8 - } - } - }, - "minecraft:villager_type": { - "default": "minecraft:plains", - "protocol_id": 22, - "entries": { - "minecraft:desert": { - "protocol_id": 0 + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1300 }, - "minecraft:jungle": { - "protocol_id": 1 + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1299 }, - "minecraft:plains": { - "protocol_id": 2 + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1301 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1302 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1303 }, - "minecraft:savanna": { - "protocol_id": 3 + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1304 }, - "minecraft:snow": { - "protocol_id": 4 + "minecraft:entity.zombie.hurt": { + "protocol_id": 1308 }, - "minecraft:swamp": { - "protocol_id": 5 + "minecraft:entity.zombie.infect": { + "protocol_id": 1309 }, - "minecraft:taiga": { - "protocol_id": 6 - } - } - }, - "minecraft:villager_profession": { - "default": "minecraft:none", - "protocol_id": 23, - "entries": { - "minecraft:none": { - "protocol_id": 0 + "minecraft:entity.zombie.step": { + "protocol_id": 1314 }, - "minecraft:armorer": { - "protocol_id": 1 + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1305 }, - "minecraft:butcher": { - "protocol_id": 2 + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1306 }, - "minecraft:cartographer": { - "protocol_id": 3 + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1307 }, - "minecraft:cleric": { - "protocol_id": 4 + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1315 }, - "minecraft:farmer": { - "protocol_id": 5 + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1316 }, - "minecraft:fisherman": { - "protocol_id": 6 + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1317 }, - "minecraft:fletcher": { - "protocol_id": 7 + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1318 }, - "minecraft:leatherworker": { - "protocol_id": 8 + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1319 }, - "minecraft:librarian": { - "protocol_id": 9 + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1320 }, - "minecraft:mason": { - "protocol_id": 10 + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1310 }, - "minecraft:nitwit": { - "protocol_id": 11 + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1311 }, - "minecraft:shepherd": { - "protocol_id": 12 + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1312 }, - "minecraft:toolsmith": { - "protocol_id": 13 + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1313 }, - "minecraft:weaponsmith": { - "protocol_id": 14 - } - } - }, - "minecraft:point_of_interest_type": { - "default": "minecraft:unemployed", - "protocol_id": 24, - "entries": { - "minecraft:unemployed": { - "protocol_id": 0 + "minecraft:event.raid.horn": { + "protocol_id": 924 }, - "minecraft:armorer": { - "protocol_id": 1 + "minecraft:item.armor.equip_chain": { + "protocol_id": 53 }, - "minecraft:butcher": { - "protocol_id": 2 + "minecraft:item.armor.equip_diamond": { + "protocol_id": 54 }, - "minecraft:cartographer": { - "protocol_id": 3 + "minecraft:item.armor.equip_elytra": { + "protocol_id": 55 }, - "minecraft:cleric": { - "protocol_id": 4 + "minecraft:item.armor.equip_generic": { + "protocol_id": 56 }, - "minecraft:farmer": { - "protocol_id": 5 + "minecraft:item.armor.equip_gold": { + "protocol_id": 57 }, - "minecraft:fisherman": { - "protocol_id": 6 + "minecraft:item.armor.equip_iron": { + "protocol_id": 58 }, - "minecraft:fletcher": { - "protocol_id": 7 + "minecraft:item.armor.equip_leather": { + "protocol_id": 59 }, - "minecraft:leatherworker": { - "protocol_id": 8 + "minecraft:item.armor.equip_netherite": { + "protocol_id": 60 }, - "minecraft:librarian": { - "protocol_id": 9 + "minecraft:item.armor.equip_turtle": { + "protocol_id": 61 }, - "minecraft:mason": { - "protocol_id": 10 + "minecraft:item.axe.scrape": { + "protocol_id": 70 }, - "minecraft:nitwit": { - "protocol_id": 11 + "minecraft:item.axe.strip": { + "protocol_id": 69 }, - "minecraft:shepherd": { - "protocol_id": 12 + "minecraft:item.axe.wax_off": { + "protocol_id": 71 }, - "minecraft:toolsmith": { - "protocol_id": 13 + "minecraft:item.bone_meal.use": { + "protocol_id": 143 }, - "minecraft:weaponsmith": { - "protocol_id": 14 + "minecraft:item.book.page_turn": { + "protocol_id": 144 }, - "minecraft:home": { - "protocol_id": 15 + "minecraft:item.book.put": { + "protocol_id": 145 }, - "minecraft:meeting": { - "protocol_id": 16 + "minecraft:item.bottle.empty": { + "protocol_id": 147 }, - "minecraft:beehive": { - "protocol_id": 17 + "minecraft:item.bottle.fill": { + "protocol_id": 148 }, - "minecraft:bee_nest": { - "protocol_id": 18 + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 149 }, - "minecraft:nether_portal": { - "protocol_id": 19 + "minecraft:item.bucket.empty": { + "protocol_id": 156 }, - "minecraft:lodestone": { - "protocol_id": 20 + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 157 }, - "minecraft:lightning_rod": { - "protocol_id": 21 - } - } - }, - "minecraft:memory_module_type": { - "default": "minecraft:dummy", - "protocol_id": 25, - "entries": { - "minecraft:dummy": { - "protocol_id": 0 + "minecraft:item.bucket.empty_fish": { + "protocol_id": 158 }, - "minecraft:home": { - "protocol_id": 1 + "minecraft:item.bucket.empty_lava": { + "protocol_id": 159 }, - "minecraft:job_site": { - "protocol_id": 2 + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 160 }, - "minecraft:potential_job_site": { - "protocol_id": 3 + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 161 }, - "minecraft:meeting_point": { - "protocol_id": 4 + "minecraft:item.bucket.fill": { + "protocol_id": 162 }, - "minecraft:secondary_job_site": { - "protocol_id": 5 + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 163 }, - "minecraft:mobs": { - "protocol_id": 6 + "minecraft:item.bucket.fill_fish": { + "protocol_id": 164 }, - "minecraft:visible_mobs": { - "protocol_id": 7 + "minecraft:item.bucket.fill_lava": { + "protocol_id": 165 }, - "minecraft:visible_villager_babies": { - "protocol_id": 8 + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 166 }, - "minecraft:nearest_players": { - "protocol_id": 9 + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 167 }, - "minecraft:nearest_visible_player": { - "protocol_id": 10 + "minecraft:item.bundle.drop_contents": { + "protocol_id": 168 }, - "minecraft:nearest_visible_targetable_player": { - "protocol_id": 11 + "minecraft:item.bundle.insert": { + "protocol_id": 169 }, - "minecraft:walk_target": { - "protocol_id": 12 + "minecraft:item.bundle.remove_one": { + "protocol_id": 170 }, - "minecraft:look_target": { - "protocol_id": 13 + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 215 }, - "minecraft:attack_target": { - "protocol_id": 14 + "minecraft:item.crop.plant": { + "protocol_id": 249 }, - "minecraft:attack_cooling_down": { - "protocol_id": 15 + "minecraft:item.crossbow.hit": { + "protocol_id": 250 }, - "minecraft:interaction_target": { - "protocol_id": 16 + "minecraft:item.crossbow.loading_end": { + "protocol_id": 251 }, - "minecraft:breed_target": { - "protocol_id": 17 + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 252 }, - "minecraft:ride_target": { - "protocol_id": 18 + "minecraft:item.crossbow.loading_start": { + "protocol_id": 253 }, - "minecraft:path": { - "protocol_id": 19 + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 254 }, - "minecraft:interactable_doors": { - "protocol_id": 20 + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 255 }, - "minecraft:doors_to_close": { - "protocol_id": 21 + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 256 }, - "minecraft:nearest_bed": { - "protocol_id": 22 + "minecraft:item.crossbow.shoot": { + "protocol_id": 257 }, - "minecraft:hurt_by": { - "protocol_id": 23 + "minecraft:item.dye.use": { + "protocol_id": 318 }, - "minecraft:hurt_by_entity": { - "protocol_id": 24 + "minecraft:item.elytra.flying": { + "protocol_id": 328 }, - "minecraft:avoid_target": { - "protocol_id": 25 + "minecraft:item.firecharge.use": { + "protocol_id": 368 }, - "minecraft:nearest_hostile": { - "protocol_id": 26 + "minecraft:item.flintandsteel.use": { + "protocol_id": 383 }, - "minecraft:nearest_attackable": { - "protocol_id": 27 + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 452 }, - "minecraft:hiding_place": { - "protocol_id": 28 + "minecraft:item.goat_horn.play": { + "protocol_id": 471 }, - "minecraft:heard_bell_time": { - "protocol_id": 29 + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 524 }, - "minecraft:cant_reach_walk_target_since": { - "protocol_id": 30 + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 525 }, - "minecraft:golem_detected_recently": { - "protocol_id": 31 + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 526 }, - "minecraft:last_slept": { - "protocol_id": 32 + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 527 }, - "minecraft:last_woken": { - "protocol_id": 33 + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 528 }, - "minecraft:last_worked_at_poi": { - "protocol_id": 34 + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 529 }, - "minecraft:nearest_visible_adult": { - "protocol_id": 35 + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 530 }, - "minecraft:nearest_visible_wanted_item": { - "protocol_id": 36 + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 531 }, - "minecraft:nearest_visible_nemesis": { - "protocol_id": 37 + "minecraft:item.hoe.till": { + "protocol_id": 507 }, - "minecraft:play_dead_ticks": { - "protocol_id": 38 + "minecraft:item.honey_bottle.drink": { + "protocol_id": 523 }, - "minecraft:tempting_player": { - "protocol_id": 39 + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 522 }, - "minecraft:temptation_cooldown_ticks": { - "protocol_id": 40 + "minecraft:item.ink_sac.use": { + "protocol_id": 563 }, - "minecraft:is_tempted": { - "protocol_id": 41 + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 617 }, - "minecraft:long_jump_cooling_down": { - "protocol_id": 42 + "minecraft:item.nether_wart.plant": { + "protocol_id": 722 }, - "minecraft:long_jump_mid_jump": { - "protocol_id": 43 + "minecraft:item.shield.block": { + "protocol_id": 1003 }, - "minecraft:has_hunting_cooldown": { - "protocol_id": 44 + "minecraft:item.shield.break": { + "protocol_id": 1004 }, - "minecraft:ram_cooldown_ticks": { - "protocol_id": 45 + "minecraft:item.shovel.flatten": { + "protocol_id": 1010 }, - "minecraft:ram_target": { - "protocol_id": 46 + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1107 }, - "minecraft:angry_at": { - "protocol_id": 47 + "minecraft:item.spyglass.use": { + "protocol_id": 1106 }, - "minecraft:universal_anger": { - "protocol_id": 48 + "minecraft:item.totem.use": { + "protocol_id": 1134 }, - "minecraft:admiring_item": { - "protocol_id": 49 + "minecraft:item.trident.hit": { + "protocol_id": 1135 }, - "minecraft:time_trying_to_reach_admire_item": { - "protocol_id": 50 + "minecraft:item.trident.hit_ground": { + "protocol_id": 1136 }, - "minecraft:disable_walk_to_admire_item": { - "protocol_id": 51 + "minecraft:item.trident.return": { + "protocol_id": 1137 }, - "minecraft:admiring_disabled": { - "protocol_id": 52 + "minecraft:item.trident.riptide_1": { + "protocol_id": 1138 }, - "minecraft:hunted_recently": { - "protocol_id": 53 + "minecraft:item.trident.riptide_2": { + "protocol_id": 1139 }, - "minecraft:celebrate_location": { - "protocol_id": 54 + "minecraft:item.trident.riptide_3": { + "protocol_id": 1140 }, - "minecraft:dancing": { - "protocol_id": 55 + "minecraft:item.trident.throw": { + "protocol_id": 1141 }, - "minecraft:nearest_visible_huntable_hoglin": { - "protocol_id": 56 + "minecraft:item.trident.thunder": { + "protocol_id": 1142 }, - "minecraft:nearest_visible_baby_hoglin": { - "protocol_id": 57 + "minecraft:music.creative": { + "protocol_id": 677 }, - "minecraft:nearest_targetable_player_not_wearing_gold": { - "protocol_id": 58 + "minecraft:music.credits": { + "protocol_id": 678 }, - "minecraft:nearby_adult_piglins": { - "protocol_id": 59 + "minecraft:music.dragon": { + "protocol_id": 694 }, - "minecraft:nearest_visible_adult_piglins": { - "protocol_id": 60 + "minecraft:music.end": { + "protocol_id": 695 }, - "minecraft:nearest_visible_adult_hoglins": { - "protocol_id": 61 + "minecraft:music.game": { + "protocol_id": 696 }, - "minecraft:nearest_visible_adult_piglin": { - "protocol_id": 62 + "minecraft:music.menu": { + "protocol_id": 697 }, - "minecraft:nearest_visible_zombified": { - "protocol_id": 63 + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 698 }, - "minecraft:visible_adult_piglin_count": { - "protocol_id": 64 + "minecraft:music.nether.crimson_forest": { + "protocol_id": 699 }, - "minecraft:visible_adult_hoglin_count": { - "protocol_id": 65 + "minecraft:music.nether.nether_wastes": { + "protocol_id": 709 }, - "minecraft:nearest_player_holding_wanted_item": { - "protocol_id": 66 + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 712 }, - "minecraft:ate_recently": { - "protocol_id": 67 + "minecraft:music.nether.warped_forest": { + "protocol_id": 714 }, - "minecraft:nearest_repellent": { - "protocol_id": 68 + "minecraft:music.overworld.deep_dark": { + "protocol_id": 700 }, - "minecraft:pacified": { - "protocol_id": 69 - } - } - }, - "minecraft:sensor_type": { - "default": "minecraft:dummy", - "protocol_id": 26, - "entries": { - "minecraft:dummy": { - "protocol_id": 0 + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 701 }, - "minecraft:nearest_items": { - "protocol_id": 1 + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 710 }, - "minecraft:nearest_living_entities": { - "protocol_id": 2 + "minecraft:music.overworld.grove": { + "protocol_id": 702 }, - "minecraft:nearest_players": { - "protocol_id": 3 + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 703 }, - "minecraft:nearest_bed": { - "protocol_id": 4 + "minecraft:music.overworld.jungle_and_forest": { + "protocol_id": 706 }, - "minecraft:hurt_by": { - "protocol_id": 5 + "minecraft:music.overworld.lush_caves": { + "protocol_id": 704 }, - "minecraft:villager_hostiles": { - "protocol_id": 6 + "minecraft:music.overworld.meadow": { + "protocol_id": 708 }, - "minecraft:villager_babies": { - "protocol_id": 7 + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 707 }, - "minecraft:secondary_pois": { - "protocol_id": 8 + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 711 }, - "minecraft:golem_detected": { - "protocol_id": 9 + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 713 }, - "minecraft:piglin_specific_sensor": { - "protocol_id": 10 + "minecraft:music.overworld.swamp": { + "protocol_id": 705 }, - "minecraft:piglin_brute_specific_sensor": { - "protocol_id": 11 + "minecraft:music.under_water": { + "protocol_id": 715 }, - "minecraft:hoglin_specific_sensor": { - "protocol_id": 12 + "minecraft:music_disc.11": { + "protocol_id": 680 }, - "minecraft:nearest_adult": { - "protocol_id": 13 + "minecraft:music_disc.13": { + "protocol_id": 681 }, - "minecraft:axolotl_attackables": { - "protocol_id": 14 + "minecraft:music_disc.5": { + "protocol_id": 679 }, - "minecraft:axolotl_temptations": { - "protocol_id": 15 + "minecraft:music_disc.blocks": { + "protocol_id": 682 }, - "minecraft:goat_temptations": { - "protocol_id": 16 - } - } - }, - "minecraft:schedule": { - "protocol_id": 27, - "entries": { - "minecraft:empty": { - "protocol_id": 0 + "minecraft:music_disc.cat": { + "protocol_id": 683 }, - "minecraft:simple": { - "protocol_id": 1 + "minecraft:music_disc.chirp": { + "protocol_id": 684 }, - "minecraft:villager_baby": { - "protocol_id": 2 + "minecraft:music_disc.far": { + "protocol_id": 685 }, - "minecraft:villager_default": { - "protocol_id": 3 - } - } - }, - "minecraft:activity": { - "protocol_id": 28, - "entries": { - "minecraft:core": { - "protocol_id": 0 + "minecraft:music_disc.mall": { + "protocol_id": 686 }, - "minecraft:idle": { - "protocol_id": 1 + "minecraft:music_disc.mellohi": { + "protocol_id": 687 }, - "minecraft:work": { - "protocol_id": 2 + "minecraft:music_disc.otherside": { + "protocol_id": 693 }, - "minecraft:play": { - "protocol_id": 3 + "minecraft:music_disc.pigstep": { + "protocol_id": 688 }, - "minecraft:rest": { - "protocol_id": 4 + "minecraft:music_disc.stal": { + "protocol_id": 689 }, - "minecraft:meet": { - "protocol_id": 5 + "minecraft:music_disc.strad": { + "protocol_id": 690 }, - "minecraft:panic": { - "protocol_id": 6 + "minecraft:music_disc.wait": { + "protocol_id": 691 }, - "minecraft:raid": { - "protocol_id": 7 + "minecraft:music_disc.ward": { + "protocol_id": 692 }, - "minecraft:pre_raid": { - "protocol_id": 8 + "minecraft:particle.soul_escape": { + "protocol_id": 1068 }, - "minecraft:hide": { - "protocol_id": 9 + "minecraft:ui.button.click": { + "protocol_id": 1168 }, - "minecraft:fight": { - "protocol_id": 10 + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1171 }, - "minecraft:celebrate": { - "protocol_id": 11 + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1169 }, - "minecraft:admire_item": { - "protocol_id": 12 + "minecraft:ui.loom.take_result": { + "protocol_id": 1170 }, - "minecraft:avoid": { - "protocol_id": 13 + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1173 }, - "minecraft:ride": { - "protocol_id": 14 + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1172 }, - "minecraft:play_dead": { - "protocol_id": 15 + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1174 }, - "minecraft:long_jump": { - "protocol_id": 16 + "minecraft:ui.toast.in": { + "protocol_id": 1175 }, - "minecraft:ram": { - "protocol_id": 17 + "minecraft:ui.toast.out": { + "protocol_id": 1176 + }, + "minecraft:weather.rain": { + "protocol_id": 1242 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1243 } - } + }, + "protocol_id": 1 }, - "minecraft:loot_pool_entry_type": { - "protocol_id": 29, + "minecraft:stat_type": { "entries": { - "minecraft:empty": { - "protocol_id": 0 + "minecraft:broken": { + "protocol_id": 3 }, - "minecraft:item": { + "minecraft:crafted": { "protocol_id": 1 }, - "minecraft:loot_table": { - "protocol_id": 2 - }, - "minecraft:dynamic": { - "protocol_id": 3 - }, - "minecraft:tag": { - "protocol_id": 4 + "minecraft:custom": { + "protocol_id": 8 }, - "minecraft:alternatives": { + "minecraft:dropped": { "protocol_id": 5 }, - "minecraft:sequence": { + "minecraft:killed": { "protocol_id": 6 }, - "minecraft:group": { + "minecraft:killed_by": { "protocol_id": 7 + }, + "minecraft:mined": { + "protocol_id": 0 + }, + "minecraft:picked_up": { + "protocol_id": 4 + }, + "minecraft:used": { + "protocol_id": 2 } - } + }, + "protocol_id": 22 }, - "minecraft:loot_function_type": { - "protocol_id": 30, + "minecraft:villager_profession": { + "default": "minecraft:none", "entries": { - "minecraft:set_count": { - "protocol_id": 0 - }, - "minecraft:enchant_with_levels": { + "minecraft:armorer": { "protocol_id": 1 }, - "minecraft:enchant_randomly": { + "minecraft:butcher": { "protocol_id": 2 }, - "minecraft:set_enchantments": { + "minecraft:cartographer": { "protocol_id": 3 }, - "minecraft:set_nbt": { + "minecraft:cleric": { "protocol_id": 4 }, - "minecraft:furnace_smelt": { + "minecraft:farmer": { "protocol_id": 5 }, - "minecraft:looting_enchant": { + "minecraft:fisherman": { "protocol_id": 6 }, - "minecraft:set_damage": { + "minecraft:fletcher": { "protocol_id": 7 }, - "minecraft:set_attributes": { + "minecraft:leatherworker": { "protocol_id": 8 }, - "minecraft:set_name": { + "minecraft:librarian": { "protocol_id": 9 }, - "minecraft:exploration_map": { + "minecraft:mason": { "protocol_id": 10 }, - "minecraft:set_stew_effect": { + "minecraft:nitwit": { "protocol_id": 11 }, - "minecraft:copy_name": { + "minecraft:none": { + "protocol_id": 0 + }, + "minecraft:shepherd": { "protocol_id": 12 }, - "minecraft:set_contents": { + "minecraft:toolsmith": { "protocol_id": 13 }, - "minecraft:limit_count": { + "minecraft:weaponsmith": { "protocol_id": 14 - }, - "minecraft:apply_bonus": { - "protocol_id": 15 - }, - "minecraft:set_loot_table": { - "protocol_id": 16 - }, - "minecraft:explosion_decay": { - "protocol_id": 17 - }, - "minecraft:set_lore": { - "protocol_id": 18 - }, - "minecraft:fill_player_head": { - "protocol_id": 19 - }, - "minecraft:copy_nbt": { - "protocol_id": 20 - }, - "minecraft:copy_state": { - "protocol_id": 21 - }, - "minecraft:set_banner_pattern": { - "protocol_id": 22 - }, - "minecraft:set_potion": { - "protocol_id": 23 } - } + }, + "protocol_id": 24 }, - "minecraft:loot_condition_type": { - "protocol_id": 31, + "minecraft:villager_type": { + "default": "minecraft:plains", "entries": { - "minecraft:inverted": { + "minecraft:desert": { "protocol_id": 0 }, - "minecraft:alternative": { + "minecraft:jungle": { "protocol_id": 1 }, - "minecraft:random_chance": { + "minecraft:plains": { "protocol_id": 2 }, - "minecraft:random_chance_with_looting": { + "minecraft:savanna": { "protocol_id": 3 }, - "minecraft:entity_properties": { + "minecraft:snow": { "protocol_id": 4 }, - "minecraft:killed_by_player": { + "minecraft:swamp": { "protocol_id": 5 }, - "minecraft:entity_scores": { + "minecraft:taiga": { "protocol_id": 6 + } + }, + "protocol_id": 23 + }, + "minecraft:worldgen/biome_source": { + "entries": { + "minecraft:checkerboard": { + "protocol_id": 2 }, - "minecraft:block_state_property": { - "protocol_id": 7 - }, - "minecraft:match_tool": { - "protocol_id": 8 - }, - "minecraft:table_bonus": { - "protocol_id": 9 + "minecraft:fixed": { + "protocol_id": 0 }, - "minecraft:survives_explosion": { - "protocol_id": 10 + "minecraft:multi_noise": { + "protocol_id": 1 }, - "minecraft:damage_source_properties": { - "protocol_id": 11 + "minecraft:the_end": { + "protocol_id": 3 + } + }, + "protocol_id": 52 + }, + "minecraft:worldgen/block_state_provider_type": { + "entries": { + "minecraft:dual_noise_provider": { + "protocol_id": 4 }, - "minecraft:location_check": { - "protocol_id": 12 + "minecraft:noise_provider": { + "protocol_id": 3 }, - "minecraft:weather_check": { - "protocol_id": 13 + "minecraft:noise_threshold_provider": { + "protocol_id": 2 }, - "minecraft:reference": { - "protocol_id": 14 + "minecraft:randomized_int_state_provider": { + "protocol_id": 6 }, - "minecraft:time_check": { - "protocol_id": 15 + "minecraft:rotated_block_provider": { + "protocol_id": 5 }, - "minecraft:value_check": { - "protocol_id": 16 - } - } - }, - "minecraft:loot_number_provider_type": { - "protocol_id": 32, - "entries": { - "minecraft:constant": { + "minecraft:simple_state_provider": { "protocol_id": 0 }, - "minecraft:uniform": { + "minecraft:weighted_state_provider": { "protocol_id": 1 - }, - "minecraft:binomial": { - "protocol_id": 2 - }, - "minecraft:score": { - "protocol_id": 3 } - } + }, + "protocol_id": 46 }, - "minecraft:loot_nbt_provider_type": { - "protocol_id": 33, + "minecraft:worldgen/carver": { "entries": { - "minecraft:storage": { + "minecraft:canyon": { + "protocol_id": 2 + }, + "minecraft:cave": { "protocol_id": 0 }, - "minecraft:context": { + "minecraft:nether_cave": { "protocol_id": 1 } - } + }, + "protocol_id": 40 }, - "minecraft:loot_score_provider_type": { - "protocol_id": 34, + "minecraft:worldgen/chunk_generator": { "entries": { - "minecraft:fixed": { - "protocol_id": 0 + "minecraft:debug": { + "protocol_id": 2 }, - "minecraft:context": { + "minecraft:flat": { "protocol_id": 1 + }, + "minecraft:noise": { + "protocol_id": 0 } - } + }, + "protocol_id": 53 }, - "minecraft:float_provider_type": { - "protocol_id": 35, + "minecraft:worldgen/density_function_type": { "entries": { - "minecraft:constant": { - "protocol_id": 0 + "minecraft:abs": { + "protocol_id": 19 }, - "minecraft:uniform": { - "protocol_id": 1 + "minecraft:add": { + "protocol_id": 25 }, - "minecraft:clamped_normal": { + "minecraft:beardifier": { "protocol_id": 2 }, - "minecraft:trapezoid": { - "protocol_id": 3 - } - } - }, - "minecraft:int_provider_type": { - "protocol_id": 36, - "entries": { - "minecraft:constant": { + "minecraft:blend_alpha": { "protocol_id": 0 }, - "minecraft:uniform": { + "minecraft:blend_density": { + "protocol_id": 17 + }, + "minecraft:blend_offset": { "protocol_id": 1 }, - "minecraft:biased_to_bottom": { - "protocol_id": 2 + "minecraft:cache_2d": { + "protocol_id": 6 }, - "minecraft:clamped": { - "protocol_id": 3 + "minecraft:cache_all_in_cell": { + "protocol_id": 8 }, - "minecraft:weighted_list": { - "protocol_id": 4 + "minecraft:cache_once": { + "protocol_id": 7 + }, + "minecraft:clamp": { + "protocol_id": 18 }, - "minecraft:clamped_normal": { - "protocol_id": 5 - } - } - }, - "minecraft:height_provider_type": { - "protocol_id": 37, - "entries": { "minecraft:constant": { - "protocol_id": 0 + "protocol_id": 30 }, - "minecraft:uniform": { - "protocol_id": 1 + "minecraft:cube": { + "protocol_id": 21 }, - "minecraft:biased_to_bottom": { - "protocol_id": 2 + "minecraft:end_islands": { + "protocol_id": 10 }, - "minecraft:very_biased_to_bottom": { - "protocol_id": 3 + "minecraft:flat_cache": { + "protocol_id": 5 }, - "minecraft:trapezoid": { + "minecraft:half_negative": { + "protocol_id": 22 + }, + "minecraft:interpolated": { "protocol_id": 4 }, - "minecraft:weighted_list": { - "protocol_id": 5 - } - } - }, - "minecraft:block_predicate_type": { - "protocol_id": 38, - "entries": { - "minecraft:matching_blocks": { - "protocol_id": 0 + "minecraft:max": { + "protocol_id": 28 }, - "minecraft:matching_block_tag": { - "protocol_id": 1 + "minecraft:min": { + "protocol_id": 27 }, - "minecraft:matching_fluids": { - "protocol_id": 2 + "minecraft:mul": { + "protocol_id": 26 }, - "minecraft:has_sturdy_face": { + "minecraft:noise": { + "protocol_id": 9 + }, + "minecraft:old_blended_noise": { "protocol_id": 3 }, - "minecraft:solid": { - "protocol_id": 4 + "minecraft:quarter_negative": { + "protocol_id": 23 }, - "minecraft:replaceable": { - "protocol_id": 5 + "minecraft:range_choice": { + "protocol_id": 13 }, - "minecraft:would_survive": { - "protocol_id": 6 + "minecraft:shift": { + "protocol_id": 16 }, - "minecraft:inside_world_bounds": { - "protocol_id": 7 + "minecraft:shift_a": { + "protocol_id": 14 }, - "minecraft:any_of": { - "protocol_id": 8 + "minecraft:shift_b": { + "protocol_id": 15 }, - "minecraft:all_of": { - "protocol_id": 9 + "minecraft:shifted_noise": { + "protocol_id": 12 }, - "minecraft:not": { - "protocol_id": 10 + "minecraft:spline": { + "protocol_id": 29 }, - "minecraft:true": { - "protocol_id": 11 - } - } - }, - "minecraft:worldgen/carver": { - "protocol_id": 39, - "entries": { - "minecraft:cave": { - "protocol_id": 0 + "minecraft:square": { + "protocol_id": 20 }, - "minecraft:nether_cave": { - "protocol_id": 1 + "minecraft:squeeze": { + "protocol_id": 24 }, - "minecraft:canyon": { - "protocol_id": 2 + "minecraft:weird_scaled_sampler": { + "protocol_id": 11 + }, + "minecraft:y_clamped_gradient": { + "protocol_id": 31 } - } + }, + "protocol_id": 56 }, "minecraft:worldgen/feature": { - "protocol_id": 40, "entries": { - "minecraft:no_op": { - "protocol_id": 0 - }, - "minecraft:tree": { - "protocol_id": 1 + "minecraft:bamboo": { + "protocol_id": 41 }, - "minecraft:flower": { - "protocol_id": 2 + "minecraft:basalt_columns": { + "protocol_id": 46 }, - "minecraft:no_bonemeal_flower": { - "protocol_id": 3 + "minecraft:basalt_pillar": { + "protocol_id": 51 }, - "minecraft:random_patch": { - "protocol_id": 4 + "minecraft:block_column": { + "protocol_id": 18 }, "minecraft:block_pile": { "protocol_id": 5 }, - "minecraft:spring_feature": { - "protocol_id": 6 + "minecraft:blue_ice": { + "protocol_id": 25 + }, + "minecraft:bonus_chest": { + "protocol_id": 50 }, "minecraft:chorus_plant": { "protocol_id": 7 }, - "minecraft:replace_single_block": { - "protocol_id": 8 + "minecraft:coral_claw": { + "protocol_id": 38 }, - "minecraft:void_start_platform": { - "protocol_id": 9 + "minecraft:coral_mushroom": { + "protocol_id": 37 + }, + "minecraft:coral_tree": { + "protocol_id": 36 + }, + "minecraft:delta_feature": { + "protocol_id": 47 }, "minecraft:desert_well": { "protocol_id": 10 }, - "minecraft:fossil": { - "protocol_id": 11 + "minecraft:disk": { + "protocol_id": 28 }, - "minecraft:huge_red_mushroom": { - "protocol_id": 12 + "minecraft:dripstone_cluster": { + "protocol_id": 57 }, - "minecraft:huge_brown_mushroom": { - "protocol_id": 13 + "minecraft:end_gateway": { + "protocol_id": 33 }, - "minecraft:ice_spike": { - "protocol_id": 14 + "minecraft:end_island": { + "protocol_id": 32 }, - "minecraft:glowstone_blob": { - "protocol_id": 15 + "minecraft:end_spike": { + "protocol_id": 31 + }, + "minecraft:fill_layer": { + "protocol_id": 49 + }, + "minecraft:flower": { + "protocol_id": 2 + }, + "minecraft:forest_rock": { + "protocol_id": 27 + }, + "minecraft:fossil": { + "protocol_id": 11 }, "minecraft:freeze_top_layer": { "protocol_id": 16 }, - "minecraft:vines": { - "protocol_id": 17 + "minecraft:geode": { + "protocol_id": 56 }, - "minecraft:block_column": { - "protocol_id": 18 + "minecraft:glowstone_blob": { + "protocol_id": 15 }, - "minecraft:vegetation_patch": { - "protocol_id": 19 + "minecraft:huge_brown_mushroom": { + "protocol_id": 13 }, - "minecraft:waterlogged_vegetation_patch": { - "protocol_id": 20 + "minecraft:huge_fungus": { + "protocol_id": 42 }, - "minecraft:root_system": { - "protocol_id": 21 + "minecraft:huge_red_mushroom": { + "protocol_id": 12 }, - "minecraft:glow_lichen": { - "protocol_id": 22 + "minecraft:ice_spike": { + "protocol_id": 14 }, - "minecraft:underwater_magma": { - "protocol_id": 23 + "minecraft:iceberg": { + "protocol_id": 26 + }, + "minecraft:kelp": { + "protocol_id": 35 + }, + "minecraft:lake": { + "protocol_id": 29 + }, + "minecraft:large_dripstone": { + "protocol_id": 58 }, "minecraft:monster_room": { "protocol_id": 24 }, - "minecraft:blue_ice": { - "protocol_id": 25 + "minecraft:multiface_growth": { + "protocol_id": 22 }, - "minecraft:iceberg": { - "protocol_id": 26 + "minecraft:nether_forest_vegetation": { + "protocol_id": 43 }, - "minecraft:forest_rock": { - "protocol_id": 27 + "minecraft:netherrack_replace_blobs": { + "protocol_id": 48 }, - "minecraft:disk": { - "protocol_id": 28 + "minecraft:no_bonemeal_flower": { + "protocol_id": 3 }, - "minecraft:ice_patch": { - "protocol_id": 29 + "minecraft:no_op": { + "protocol_id": 0 }, - "minecraft:lake": { + "minecraft:ore": { "protocol_id": 30 }, - "minecraft:ore": { - "protocol_id": 31 + "minecraft:pointed_dripstone": { + "protocol_id": 59 }, - "minecraft:end_spike": { - "protocol_id": 32 + "minecraft:random_boolean_selector": { + "protocol_id": 55 }, - "minecraft:end_island": { - "protocol_id": 33 + "minecraft:random_patch": { + "protocol_id": 4 }, - "minecraft:end_gateway": { - "protocol_id": 34 + "minecraft:random_selector": { + "protocol_id": 53 }, - "minecraft:seagrass": { - "protocol_id": 35 + "minecraft:replace_single_block": { + "protocol_id": 8 }, - "minecraft:kelp": { - "protocol_id": 36 + "minecraft:root_system": { + "protocol_id": 21 }, - "minecraft:coral_tree": { - "protocol_id": 37 + "minecraft:scattered_ore": { + "protocol_id": 52 }, - "minecraft:coral_mushroom": { - "protocol_id": 38 + "minecraft:sculk_patch": { + "protocol_id": 60 }, - "minecraft:coral_claw": { + "minecraft:sea_pickle": { "protocol_id": 39 }, - "minecraft:sea_pickle": { - "protocol_id": 40 + "minecraft:seagrass": { + "protocol_id": 34 }, "minecraft:simple_block": { - "protocol_id": 41 + "protocol_id": 40 }, - "minecraft:bamboo": { - "protocol_id": 42 + "minecraft:simple_random_selector": { + "protocol_id": 54 }, - "minecraft:huge_fungus": { - "protocol_id": 43 + "minecraft:spring_feature": { + "protocol_id": 6 }, - "minecraft:nether_forest_vegetation": { - "protocol_id": 44 + "minecraft:tree": { + "protocol_id": 1 }, - "minecraft:weeping_vines": { + "minecraft:twisting_vines": { "protocol_id": 45 }, - "minecraft:twisting_vines": { - "protocol_id": 46 + "minecraft:underwater_magma": { + "protocol_id": 23 }, - "minecraft:basalt_columns": { - "protocol_id": 47 + "minecraft:vegetation_patch": { + "protocol_id": 19 }, - "minecraft:delta_feature": { - "protocol_id": 48 + "minecraft:vines": { + "protocol_id": 17 }, - "minecraft:netherrack_replace_blobs": { - "protocol_id": 49 + "minecraft:void_start_platform": { + "protocol_id": 9 }, - "minecraft:fill_layer": { - "protocol_id": 50 + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 20 }, - "minecraft:bonus_chest": { - "protocol_id": 51 + "minecraft:weeping_vines": { + "protocol_id": 44 + } + }, + "protocol_id": 41 + }, + "minecraft:worldgen/feature_size_type": { + "entries": { + "minecraft:three_layers_feature_size": { + "protocol_id": 1 }, - "minecraft:basalt_pillar": { - "protocol_id": 52 + "minecraft:two_layers_feature_size": { + "protocol_id": 0 + } + }, + "protocol_id": 51 + }, + "minecraft:worldgen/foliage_placer_type": { + "entries": { + "minecraft:acacia_foliage_placer": { + "protocol_id": 3 }, - "minecraft:scattered_ore": { - "protocol_id": 53 + "minecraft:blob_foliage_placer": { + "protocol_id": 0 }, - "minecraft:random_selector": { - "protocol_id": 54 + "minecraft:bush_foliage_placer": { + "protocol_id": 4 }, - "minecraft:simple_random_selector": { - "protocol_id": 55 + "minecraft:dark_oak_foliage_placer": { + "protocol_id": 8 }, - "minecraft:random_boolean_selector": { - "protocol_id": 56 + "minecraft:fancy_foliage_placer": { + "protocol_id": 5 }, - "minecraft:geode": { - "protocol_id": 57 + "minecraft:jungle_foliage_placer": { + "protocol_id": 6 }, - "minecraft:dripstone_cluster": { - "protocol_id": 58 + "minecraft:mega_pine_foliage_placer": { + "protocol_id": 7 }, - "minecraft:large_dripstone": { - "protocol_id": 59 + "minecraft:pine_foliage_placer": { + "protocol_id": 2 }, - "minecraft:pointed_dripstone": { - "protocol_id": 60 + "minecraft:random_spread_foliage_placer": { + "protocol_id": 9 + }, + "minecraft:spruce_foliage_placer": { + "protocol_id": 1 } - } + }, + "protocol_id": 47 }, - "minecraft:worldgen/structure_feature": { - "protocol_id": 41, + "minecraft:worldgen/material_condition": { "entries": { - "minecraft:pillager_outpost": { + "minecraft:above_preliminary_surface": { + "protocol_id": 9 + }, + "minecraft:biome": { "protocol_id": 0 }, - "minecraft:mineshaft": { + "minecraft:hole": { + "protocol_id": 8 + }, + "minecraft:noise_threshold": { "protocol_id": 1 }, - "minecraft:mansion": { + "minecraft:not": { + "protocol_id": 7 + }, + "minecraft:steep": { + "protocol_id": 6 + }, + "minecraft:stone_depth": { + "protocol_id": 10 + }, + "minecraft:temperature": { + "protocol_id": 5 + }, + "minecraft:vertical_gradient": { "protocol_id": 2 }, - "minecraft:jungle_pyramid": { + "minecraft:water": { + "protocol_id": 4 + }, + "minecraft:y_above": { + "protocol_id": 3 + } + }, + "protocol_id": 54 + }, + "minecraft:worldgen/material_rule": { + "entries": { + "minecraft:bandlands": { + "protocol_id": 0 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:condition": { "protocol_id": 3 }, - "minecraft:desert_pyramid": { + "minecraft:sequence": { + "protocol_id": 2 + } + }, + "protocol_id": 55 + }, + "minecraft:worldgen/placement_modifier_type": { + "entries": { + "minecraft:biome": { "protocol_id": 4 }, - "minecraft:igloo": { - "protocol_id": 5 + "minecraft:block_predicate_filter": { + "protocol_id": 0 }, - "minecraft:ruined_portal": { - "protocol_id": 6 + "minecraft:carving_mask": { + "protocol_id": 14 }, - "minecraft:shipwreck": { - "protocol_id": 7 + "minecraft:count": { + "protocol_id": 5 }, - "minecraft:swamp_hut": { + "minecraft:count_on_every_layer": { "protocol_id": 8 }, - "minecraft:stronghold": { + "minecraft:environment_scan": { "protocol_id": 9 }, - "minecraft:monument": { - "protocol_id": 10 - }, - "minecraft:ocean_ruin": { + "minecraft:height_range": { "protocol_id": 11 }, - "minecraft:fortress": { + "minecraft:heightmap": { + "protocol_id": 10 + }, + "minecraft:in_square": { "protocol_id": 12 }, - "minecraft:endcity": { - "protocol_id": 13 + "minecraft:noise_based_count": { + "protocol_id": 6 }, - "minecraft:buried_treasure": { - "protocol_id": 14 + "minecraft:noise_threshold_count": { + "protocol_id": 7 }, - "minecraft:village": { - "protocol_id": 15 + "minecraft:random_offset": { + "protocol_id": 13 }, - "minecraft:nether_fossil": { - "protocol_id": 16 + "minecraft:rarity_filter": { + "protocol_id": 1 }, - "minecraft:bastion_remnant": { - "protocol_id": 17 + "minecraft:surface_relative_threshold_filter": { + "protocol_id": 2 + }, + "minecraft:surface_water_depth_filter": { + "protocol_id": 3 } - } + }, + "protocol_id": 45 }, - "minecraft:worldgen/structure_placement": { - "protocol_id": 42, + "minecraft:worldgen/root_placer_type": { "entries": { - "minecraft:random_spread": { + "minecraft:mangrove_root_placer": { "protocol_id": 0 + } + }, + "protocol_id": 49 + }, + "minecraft:worldgen/structure_piece": { + "entries": { + "minecraft:btp": { + "protocol_id": 52 + }, + "minecraft:ecp": { + "protocol_id": 50 + }, + "minecraft:iglu": { + "protocol_id": 34 + }, + "minecraft:jigsaw": { + "protocol_id": 55 }, - "minecraft:concentric_rings": { - "protocol_id": 1 - } - } - }, - "minecraft:worldgen/structure_piece": { - "protocol_id": 43, - "entries": { "minecraft:mscorridor": { "protocol_id": 0 }, @@ -12617,32 +13994,35 @@ "minecraft:neccs": { "protocol_id": 7 }, + "minecraft:nece": { + "protocol_id": 9 + }, + "minecraft:necsr": { + "protocol_id": 14 + }, "minecraft:nectb": { "protocol_id": 8 }, - "minecraft:nece": { - "protocol_id": 9 + "minecraft:nefos": { + "protocol_id": 54 }, - "minecraft:nescsc": { - "protocol_id": 10 + "minecraft:nemt": { + "protocol_id": 15 }, - "minecraft:nesclt": { - "protocol_id": 11 + "minecraft:nerc": { + "protocol_id": 16 }, "minecraft:nesc": { "protocol_id": 12 }, + "minecraft:nesclt": { + "protocol_id": 11 + }, "minecraft:nescrt": { "protocol_id": 13 }, - "minecraft:necsr": { - "protocol_id": 14 - }, - "minecraft:nemt": { - "protocol_id": 15 - }, - "minecraft:nerc": { - "protocol_id": 16 + "minecraft:nescsc": { + "protocol_id": 10 }, "minecraft:nesr": { "protocol_id": 17 @@ -12650,63 +14030,6 @@ "minecraft:nestart": { "protocol_id": 18 }, - "minecraft:shcc": { - "protocol_id": 19 - }, - "minecraft:shfc": { - "protocol_id": 20 - }, - "minecraft:sh5c": { - "protocol_id": 21 - }, - "minecraft:shlt": { - "protocol_id": 22 - }, - "minecraft:shli": { - "protocol_id": 23 - }, - "minecraft:shpr": { - "protocol_id": 24 - }, - "minecraft:shph": { - "protocol_id": 25 - }, - "minecraft:shrt": { - "protocol_id": 26 - }, - "minecraft:shrc": { - "protocol_id": 27 - }, - "minecraft:shsd": { - "protocol_id": 28 - }, - "minecraft:shstart": { - "protocol_id": 29 - }, - "minecraft:shs": { - "protocol_id": 30 - }, - "minecraft:shssd": { - "protocol_id": 31 - }, - "minecraft:tejp": { - "protocol_id": 32 - }, - "minecraft:orp": { - "protocol_id": 33 - }, - "minecraft:iglu": { - "protocol_id": 34 - }, - "minecraft:rupo": { - "protocol_id": 35 - }, - "minecraft:tesh": { - "protocol_id": 36 - }, - "minecraft:tedp": { - "protocol_id": 37 - }, "minecraft:omb": { "protocol_id": 38 }, @@ -12743,440 +14066,238 @@ "minecraft:omwr": { "protocol_id": 49 }, - "minecraft:ecp": { - "protocol_id": 50 - }, - "minecraft:wmp": { - "protocol_id": 51 - }, - "minecraft:btp": { - "protocol_id": 52 - }, - "minecraft:shipwreck": { - "protocol_id": 53 - }, - "minecraft:nefos": { - "protocol_id": 54 - }, - "minecraft:jigsaw": { - "protocol_id": 55 - } - } - }, - "minecraft:worldgen/placement_modifier_type": { - "protocol_id": 44, - "entries": { - "minecraft:block_predicate_filter": { - "protocol_id": 0 - }, - "minecraft:rarity_filter": { - "protocol_id": 1 - }, - "minecraft:surface_relative_threshold_filter": { - "protocol_id": 2 - }, - "minecraft:surface_water_depth_filter": { - "protocol_id": 3 - }, - "minecraft:biome": { - "protocol_id": 4 - }, - "minecraft:count": { - "protocol_id": 5 - }, - "minecraft:noise_based_count": { - "protocol_id": 6 - }, - "minecraft:noise_threshold_count": { - "protocol_id": 7 - }, - "minecraft:count_on_every_layer": { - "protocol_id": 8 - }, - "minecraft:environment_scan": { - "protocol_id": 9 - }, - "minecraft:heightmap": { - "protocol_id": 10 - }, - "minecraft:height_range": { - "protocol_id": 11 - }, - "minecraft:in_square": { - "protocol_id": 12 - }, - "minecraft:random_offset": { - "protocol_id": 13 - }, - "minecraft:carving_mask": { - "protocol_id": 14 - } - } - }, - "minecraft:worldgen/block_state_provider_type": { - "protocol_id": 45, - "entries": { - "minecraft:simple_state_provider": { - "protocol_id": 0 - }, - "minecraft:weighted_state_provider": { - "protocol_id": 1 - }, - "minecraft:noise_threshold_provider": { - "protocol_id": 2 - }, - "minecraft:noise_provider": { - "protocol_id": 3 - }, - "minecraft:dual_noise_provider": { - "protocol_id": 4 - }, - "minecraft:rotated_block_provider": { - "protocol_id": 5 - }, - "minecraft:randomized_int_state_provider": { - "protocol_id": 6 - } - } - }, - "minecraft:worldgen/foliage_placer_type": { - "protocol_id": 46, - "entries": { - "minecraft:blob_foliage_placer": { - "protocol_id": 0 - }, - "minecraft:spruce_foliage_placer": { - "protocol_id": 1 + "minecraft:orp": { + "protocol_id": 33 }, - "minecraft:pine_foliage_placer": { - "protocol_id": 2 + "minecraft:rupo": { + "protocol_id": 35 }, - "minecraft:acacia_foliage_placer": { - "protocol_id": 3 + "minecraft:sh5c": { + "protocol_id": 21 }, - "minecraft:bush_foliage_placer": { - "protocol_id": 4 + "minecraft:shcc": { + "protocol_id": 19 }, - "minecraft:fancy_foliage_placer": { - "protocol_id": 5 + "minecraft:shfc": { + "protocol_id": 20 }, - "minecraft:jungle_foliage_placer": { - "protocol_id": 6 + "minecraft:shipwreck": { + "protocol_id": 53 }, - "minecraft:mega_pine_foliage_placer": { - "protocol_id": 7 + "minecraft:shli": { + "protocol_id": 23 }, - "minecraft:dark_oak_foliage_placer": { - "protocol_id": 8 + "minecraft:shlt": { + "protocol_id": 22 }, - "minecraft:random_spread_foliage_placer": { - "protocol_id": 9 - } - } - }, - "minecraft:worldgen/trunk_placer_type": { - "protocol_id": 47, - "entries": { - "minecraft:straight_trunk_placer": { - "protocol_id": 0 + "minecraft:shph": { + "protocol_id": 25 }, - "minecraft:forking_trunk_placer": { - "protocol_id": 1 + "minecraft:shpr": { + "protocol_id": 24 }, - "minecraft:giant_trunk_placer": { - "protocol_id": 2 + "minecraft:shrc": { + "protocol_id": 27 }, - "minecraft:mega_jungle_trunk_placer": { - "protocol_id": 3 + "minecraft:shrt": { + "protocol_id": 26 }, - "minecraft:dark_oak_trunk_placer": { - "protocol_id": 4 + "minecraft:shs": { + "protocol_id": 30 }, - "minecraft:fancy_trunk_placer": { - "protocol_id": 5 + "minecraft:shsd": { + "protocol_id": 28 }, - "minecraft:bending_trunk_placer": { - "protocol_id": 6 - } - } - }, - "minecraft:worldgen/tree_decorator_type": { - "protocol_id": 48, - "entries": { - "minecraft:trunk_vine": { - "protocol_id": 0 + "minecraft:shssd": { + "protocol_id": 31 }, - "minecraft:leave_vine": { - "protocol_id": 1 + "minecraft:shstart": { + "protocol_id": 29 }, - "minecraft:cocoa": { - "protocol_id": 2 + "minecraft:tedp": { + "protocol_id": 37 }, - "minecraft:beehive": { - "protocol_id": 3 + "minecraft:tejp": { + "protocol_id": 32 }, - "minecraft:alter_ground": { - "protocol_id": 4 + "minecraft:tesh": { + "protocol_id": 36 + }, + "minecraft:wmp": { + "protocol_id": 51 } - } + }, + "protocol_id": 43 }, - "minecraft:worldgen/feature_size_type": { - "protocol_id": 49, + "minecraft:worldgen/structure_placement": { "entries": { - "minecraft:two_layers_feature_size": { - "protocol_id": 0 - }, - "minecraft:three_layers_feature_size": { + "minecraft:concentric_rings": { "protocol_id": 1 + }, + "minecraft:random_spread": { + "protocol_id": 0 } - } + }, + "protocol_id": 42 }, - "minecraft:worldgen/biome_source": { - "protocol_id": 50, + "minecraft:worldgen/structure_pool_element": { "entries": { - "minecraft:fixed": { - "protocol_id": 0 - }, - "minecraft:multi_noise": { - "protocol_id": 1 + "minecraft:empty_pool_element": { + "protocol_id": 3 }, - "minecraft:checkerboard": { + "minecraft:feature_pool_element": { "protocol_id": 2 }, - "minecraft:the_end": { - "protocol_id": 3 - } - } - }, - "minecraft:worldgen/chunk_generator": { - "protocol_id": 51, - "entries": { - "minecraft:noise": { - "protocol_id": 0 + "minecraft:legacy_single_pool_element": { + "protocol_id": 4 }, - "minecraft:flat": { + "minecraft:list_pool_element": { "protocol_id": 1 }, - "minecraft:debug": { - "protocol_id": 2 + "minecraft:single_pool_element": { + "protocol_id": 0 } - } + }, + "protocol_id": 58 }, - "minecraft:worldgen/material_condition": { - "protocol_id": 52, + "minecraft:worldgen/structure_processor": { "entries": { - "minecraft:biome": { + "minecraft:blackstone_replace": { + "protocol_id": 7 + }, + "minecraft:block_age": { + "protocol_id": 6 + }, + "minecraft:block_ignore": { "protocol_id": 0 }, - "minecraft:noise_threshold": { + "minecraft:block_rot": { "protocol_id": 1 }, - "minecraft:vertical_gradient": { + "minecraft:gravity": { "protocol_id": 2 }, - "minecraft:y_above": { + "minecraft:jigsaw_replacement": { "protocol_id": 3 }, - "minecraft:water": { - "protocol_id": 4 + "minecraft:lava_submerged_block": { + "protocol_id": 8 }, - "minecraft:temperature": { + "minecraft:nop": { "protocol_id": 5 }, - "minecraft:steep": { - "protocol_id": 6 - }, - "minecraft:not": { - "protocol_id": 7 - }, - "minecraft:hole": { - "protocol_id": 8 - }, - "minecraft:above_preliminary_surface": { + "minecraft:protected_blocks": { "protocol_id": 9 }, - "minecraft:stone_depth": { - "protocol_id": 10 - } - } - }, - "minecraft:worldgen/material_rule": { - "protocol_id": 53, - "entries": { - "minecraft:bandlands": { - "protocol_id": 0 - }, - "minecraft:block": { - "protocol_id": 1 - }, - "minecraft:sequence": { - "protocol_id": 2 - }, - "minecraft:condition": { - "protocol_id": 3 + "minecraft:rule": { + "protocol_id": 4 } - } + }, + "protocol_id": 57 }, - "minecraft:worldgen/density_function_type": { - "protocol_id": 54, + "minecraft:worldgen/structure_type": { "entries": { - "minecraft:blend_alpha": { + "minecraft:buried_treasure": { "protocol_id": 0 }, - "minecraft:blend_offset": { + "minecraft:desert_pyramid": { "protocol_id": 1 }, - "minecraft:beardifier": { + "minecraft:end_city": { "protocol_id": 2 }, - "minecraft:old_blended_noise": { + "minecraft:fortress": { "protocol_id": 3 }, - "minecraft:interpolated": { + "minecraft:igloo": { "protocol_id": 4 }, - "minecraft:flat_cache": { + "minecraft:jigsaw": { "protocol_id": 5 }, - "minecraft:cache_2d": { + "minecraft:jungle_temple": { "protocol_id": 6 }, - "minecraft:cache_once": { + "minecraft:mineshaft": { "protocol_id": 7 }, - "minecraft:cache_all_in_cell": { + "minecraft:nether_fossil": { "protocol_id": 8 }, - "minecraft:noise": { + "minecraft:ocean_monument": { "protocol_id": 9 }, - "minecraft:end_islands": { + "minecraft:ocean_ruin": { "protocol_id": 10 }, - "minecraft:weird_scaled_sampler": { + "minecraft:ruined_portal": { "protocol_id": 11 }, - "minecraft:shifted_noise": { + "minecraft:shipwreck": { "protocol_id": 12 }, - "minecraft:range_choice": { + "minecraft:stronghold": { "protocol_id": 13 }, - "minecraft:shift_a": { + "minecraft:swamp_hut": { "protocol_id": 14 }, - "minecraft:shift_b": { + "minecraft:woodland_mansion": { "protocol_id": 15 - }, - "minecraft:shift": { - "protocol_id": 16 - }, - "minecraft:blend_density": { - "protocol_id": 17 - }, - "minecraft:clamp": { - "protocol_id": 18 - }, - "minecraft:abs": { - "protocol_id": 19 - }, - "minecraft:square": { - "protocol_id": 20 - }, - "minecraft:cube": { - "protocol_id": 21 - }, - "minecraft:half_negative": { - "protocol_id": 22 - }, - "minecraft:quarter_negative": { - "protocol_id": 23 - }, - "minecraft:squeeze": { - "protocol_id": 24 - }, - "minecraft:slide": { - "protocol_id": 25 - }, - "minecraft:add": { - "protocol_id": 26 - }, - "minecraft:mul": { - "protocol_id": 27 - }, - "minecraft:min": { - "protocol_id": 28 - }, - "minecraft:max": { - "protocol_id": 29 - }, - "minecraft:spline": { - "protocol_id": 30 - }, - "minecraft:terrain_shaper_spline": { - "protocol_id": 31 - }, - "minecraft:constant": { - "protocol_id": 32 - }, - "minecraft:y_clamped_gradient": { - "protocol_id": 33 } - } + }, + "protocol_id": 44 }, - "minecraft:worldgen/structure_processor": { - "protocol_id": 55, + "minecraft:worldgen/tree_decorator_type": { "entries": { - "minecraft:block_ignore": { - "protocol_id": 0 - }, - "minecraft:block_rot": { - "protocol_id": 1 - }, - "minecraft:gravity": { - "protocol_id": 2 - }, - "minecraft:jigsaw_replacement": { - "protocol_id": 3 - }, - "minecraft:rule": { + "minecraft:alter_ground": { "protocol_id": 4 }, - "minecraft:nop": { + "minecraft:attached_to_leaves": { "protocol_id": 5 }, - "minecraft:block_age": { - "protocol_id": 6 + "minecraft:beehive": { + "protocol_id": 3 }, - "minecraft:blackstone_replace": { - "protocol_id": 7 + "minecraft:cocoa": { + "protocol_id": 2 }, - "minecraft:lava_submerged_block": { - "protocol_id": 8 + "minecraft:leave_vine": { + "protocol_id": 1 }, - "minecraft:protected_blocks": { - "protocol_id": 9 + "minecraft:trunk_vine": { + "protocol_id": 0 } - } + }, + "protocol_id": 50 }, - "minecraft:worldgen/structure_pool_element": { - "protocol_id": 56, + "minecraft:worldgen/trunk_placer_type": { "entries": { - "minecraft:single_pool_element": { - "protocol_id": 0 + "minecraft:bending_trunk_placer": { + "protocol_id": 6 }, - "minecraft:list_pool_element": { + "minecraft:dark_oak_trunk_placer": { + "protocol_id": 4 + }, + "minecraft:fancy_trunk_placer": { + "protocol_id": 5 + }, + "minecraft:forking_trunk_placer": { "protocol_id": 1 }, - "minecraft:feature_pool_element": { + "minecraft:giant_trunk_placer": { "protocol_id": 2 }, - "minecraft:empty_pool_element": { + "minecraft:mega_jungle_trunk_placer": { "protocol_id": 3 }, - "minecraft:legacy_single_pool_element": { - "protocol_id": 4 + "minecraft:straight_trunk_placer": { + "protocol_id": 0 + }, + "minecraft:upwards_branching_trunk_placer": { + "protocol_id": 7 } - } + }, + "protocol_id": 48 } } \ No newline at end of file