From 0a919303b6616cc916b17584b84d84601eedae72 Mon Sep 17 00:00:00 2001 From: LOOHP Date: Fri, 15 Dec 2023 00:09:42 +0000 Subject: [PATCH] Minecraft 1.20.4 --- pom.xml | 22 +- src/main/java/com/loohp/limbo/Limbo.java | 6 +- .../player/PlayerResourcePackStatusEvent.java | 8 +- .../loohp/limbo/network/ClientConnection.java | 12 +- ...=> ClientboundResourcePackPushPacket.java} | 56 +- .../ClientboundSetActionBarTextPacket.java | 4 +- .../ClientboundSetSubtitleTextPacket.java | 4 +- .../ClientboundSetTitleTextPacket.java | 4 +- .../packets/ClientboundSystemChatPacket.java | 4 +- .../packets/PacketLoginOutDisconnect.java | 4 +- .../protocol/packets/PacketPlayOutBoss.java | 6 +- .../packets/PacketPlayOutDisconnect.java | 4 +- .../packets/PacketPlayOutEntityMetadata.java | 3 +- .../packets/PacketPlayOutGameState.java | 4 +- .../packets/PacketPlayOutOpenWindow.java | 4 +- .../PacketPlayOutPlayerListHeaderFooter.java | 6 +- .../packets/PacketPlayOutTabComplete.java | 3 +- ...ava => ServerboundResourcePackPacket.java} | 61 +- .../java/com/loohp/limbo/player/Player.java | 4 +- .../com/loohp/limbo/utils/DataTypeIO.java | 19 + .../limbo/utils/NbtComponentSerializer.java | 385 + src/main/resources/blocks.json | 35105 +++++++++++++--- src/main/resources/dimension_registry.json | 1999 +- src/main/resources/mapping.json | 56 +- src/main/resources/registries.json | 15349 ++++--- 25 files changed, 40022 insertions(+), 13110 deletions(-) rename src/main/java/com/loohp/limbo/network/protocol/packets/{PacketPlayOutResourcePackSend.java => ClientboundResourcePackPushPacket.java} (63%) rename src/main/java/com/loohp/limbo/network/protocol/packets/{PacketPlayInResourcePackStatus.java => ServerboundResourcePackPacket.java} (50%) create mode 100644 src/main/java/com/loohp/limbo/utils/NbtComponentSerializer.java diff --git a/pom.xml b/pom.xml index dab2a3b..0b08ec8 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ com.loohp Limbo Limbo - 0.7.6-ALPHA + 0.7.7-ALPHA Standalone Limbo Minecraft Server. https://github.com/LOOHP/Limbo @@ -136,7 +136,7 @@ - ${project.artifactId}-${project.version}-1.20.2 + ${project.artifactId}-${project.version}-1.20.4 @@ -210,6 +210,10 @@ jitpack.io https://jitpack.io + + sonatype-oss-snapshots1 + https://s01.oss.sonatype.org/content/repositories/snapshots/ + bungeecord-repo https://oss.sonatype.org/content/repositories/snapshots @@ -220,7 +224,7 @@ org.apache.commons commons-lang3 - 3.11 + 3.12.0 com.github.Querz @@ -231,7 +235,7 @@ com.google.code.gson gson - 2.8.5 + 2.10.1 compile @@ -256,31 +260,31 @@ net.kyori adventure-text-serializer-gson - 4.14.0 + 4.15.0-SNAPSHOT compile net.kyori adventure-text-serializer-legacy - 4.14.0 + 4.15.0-SNAPSHOT compile net.kyori adventure-text-serializer-plain - 4.14.0 + 4.15.0-SNAPSHOT compile net.kyori adventure-api - 4.14.0 + 4.15.0-SNAPSHOT compile net.kyori adventure-nbt - 4.14.0 + 4.15.0-SNAPSHOT compile diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java index 3e4eaaf..11693b2 100644 --- a/src/main/java/com/loohp/limbo/Limbo.java +++ b/src/main/java/com/loohp/limbo/Limbo.java @@ -139,8 +139,8 @@ public final class Limbo { //=========================== - public final String SERVER_IMPLEMENTATION_VERSION = "1.20.2"; - public final int SERVER_IMPLEMENTATION_PROTOCOL = 764; + public final String SERVER_IMPLEMENTATION_VERSION = "1.20.4"; + public final int SERVER_IMPLEMENTATION_PROTOCOL = 765; public final String LIMBO_IMPLEMENTATION_VERSION; private final AtomicBoolean isRunning; @@ -555,7 +555,7 @@ public final class Limbo { json.put("modinfo", modInfoJson); - TreeMap treeMap = new TreeMap(String.CASE_INSENSITIVE_ORDER); + TreeMap treeMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER); treeMap.putAll(json); Gson g = new GsonBuilder().create(); diff --git a/src/main/java/com/loohp/limbo/events/player/PlayerResourcePackStatusEvent.java b/src/main/java/com/loohp/limbo/events/player/PlayerResourcePackStatusEvent.java index c879700..e1f0ea3 100644 --- a/src/main/java/com/loohp/limbo/events/player/PlayerResourcePackStatusEvent.java +++ b/src/main/java/com/loohp/limbo/events/player/PlayerResourcePackStatusEvent.java @@ -19,19 +19,19 @@ package com.loohp.limbo.events.player; -import com.loohp.limbo.network.protocol.packets.PacketPlayInResourcePackStatus.EnumResourcePackStatus; +import com.loohp.limbo.network.protocol.packets.ServerboundResourcePackPacket.Action; import com.loohp.limbo.player.Player; public class PlayerResourcePackStatusEvent extends PlayerEvent { - private EnumResourcePackStatus status; + private Action status; - public PlayerResourcePackStatusEvent(Player player, EnumResourcePackStatus status) { + public PlayerResourcePackStatusEvent(Player player, Action status) { super(player); this.status = status; } - public EnumResourcePackStatus getStatus() { + public Action getStatus() { return status; } } diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java index 553b750..0a93dd3 100644 --- a/src/main/java/com/loohp/limbo/network/ClientConnection.java +++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java @@ -63,8 +63,8 @@ import com.loohp.limbo.network.protocol.packets.PacketPlayInPickItem; import com.loohp.limbo.network.protocol.packets.PacketPlayInPluginMessaging; import com.loohp.limbo.network.protocol.packets.PacketPlayInPosition; import com.loohp.limbo.network.protocol.packets.PacketPlayInPositionAndLook; -import com.loohp.limbo.network.protocol.packets.PacketPlayInResourcePackStatus; -import com.loohp.limbo.network.protocol.packets.PacketPlayInResourcePackStatus.EnumResourcePackStatus; +import com.loohp.limbo.network.protocol.packets.ServerboundResourcePackPacket; +import com.loohp.limbo.network.protocol.packets.ServerboundResourcePackPacket.Action; import com.loohp.limbo.network.protocol.packets.PacketPlayInRotation; import com.loohp.limbo.network.protocol.packets.PacketPlayInSetCreativeSlot; import com.loohp.limbo.network.protocol.packets.PacketPlayInTabComplete; @@ -765,11 +765,11 @@ public class ClientConnection extends Thread { Limbo.getInstance().getUnsafe().a(player, event.getSlot()); } - } else if (packetIn instanceof PacketPlayInResourcePackStatus) { - PacketPlayInResourcePackStatus rpcheck = (PacketPlayInResourcePackStatus) packetIn; + } else if (packetIn instanceof ServerboundResourcePackPacket) { + ServerboundResourcePackPacket rpcheck = (ServerboundResourcePackPacket) packetIn; // Pass on result to the events - Limbo.getInstance().getEventsManager().callEvent(new PlayerResourcePackStatusEvent(player, rpcheck.getLoadedValue())); - if (rpcheck.getLoadedValue().equals(EnumResourcePackStatus.DECLINED) && properties.getResourcePackRequired()) { + Limbo.getInstance().getEventsManager().callEvent(new PlayerResourcePackStatusEvent(player, rpcheck.getAction())); + if (rpcheck.getAction().equals(Action.DECLINED) && properties.getResourcePackRequired()) { player.disconnect(new TranslatableComponent("multiplayer.requiredTexturePrompt.disconnect")); } } else if (packetIn instanceof PacketPlayInPluginMessaging) { diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutResourcePackSend.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundResourcePackPushPacket.java similarity index 63% rename from src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutResourcePackSend.java rename to src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundResourcePackPushPacket.java index 376b4fb..ef416d9 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutResourcePackSend.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundResourcePackPushPacket.java @@ -27,32 +27,34 @@ import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; +import java.util.UUID; -public class PacketPlayOutResourcePackSend extends PacketOut { +public class ClientboundResourcePackPushPacket extends PacketOut { public static final int MAX_HASH_LENGTH = 40; - - private String url; - private String hash; - private boolean isForced; - private boolean hasPromptMessage; - private Component promptMessage; - public PacketPlayOutResourcePackSend(String url, String hash, boolean isForced, boolean hasPromptMessage, Component promptMessage) { + private final UUID id; + private final String url; + private final String hash; + private final boolean required; + private final Component prompt; + + public ClientboundResourcePackPushPacket(UUID id, String url, String hash, boolean required, Component promptMessage) { if (hash.length() > MAX_HASH_LENGTH) { throw new IllegalArgumentException("Hash is too long (max " + MAX_HASH_LENGTH + ", was " + hash.length() + ")"); } + this.id = id; this.url = url; this.hash = hash; - this.isForced = isForced; - this.hasPromptMessage = hasPromptMessage; - if (hasPromptMessage && promptMessage == null) { - throw new IllegalArgumentException("promptMessage cannot be null when hasPromptMessage is true"); - } - this.promptMessage = promptMessage; + this.required = required; + this.prompt = promptMessage; } - public String getURL() { + public UUID getId() { + return id; + } + + public String getUrl() { return url; } @@ -60,31 +62,31 @@ public class PacketPlayOutResourcePackSend extends PacketOut { return hash; } - public boolean isForced() { - return isForced; + public boolean isRequired() { + return required; } - public boolean hasPromptMessage() { - return hasPromptMessage; + public Component getPrompt() { + return prompt; } - public Component getPromptMessage() { - return promptMessage; - } - @Override public byte[] serializePacket() throws IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); + DataTypeIO.writeUUID(output, id); DataTypeIO.writeString(output, url, StandardCharsets.UTF_8); DataTypeIO.writeString(output, hash, StandardCharsets.UTF_8); - output.writeBoolean(isForced); - output.writeBoolean(hasPromptMessage); - if (hasPromptMessage) { - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(promptMessage), StandardCharsets.UTF_8); + output.writeBoolean(required); + if (prompt == null) { + output.writeBoolean(false); + } else { + output.writeBoolean(true); + DataTypeIO.writeComponent(output, prompt); } + return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetActionBarTextPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetActionBarTextPacket.java index 63d6088..ee19ad5 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetActionBarTextPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetActionBarTextPacket.java @@ -21,12 +21,10 @@ 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; public class ClientboundSetActionBarTextPacket extends PacketOut { @@ -46,7 +44,7 @@ public class ClientboundSetActionBarTextPacket extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(actionBar), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, actionBar); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetSubtitleTextPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetSubtitleTextPacket.java index 5fa9de0..4917f8b 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetSubtitleTextPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetSubtitleTextPacket.java @@ -21,12 +21,10 @@ 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; public class ClientboundSetSubtitleTextPacket extends PacketOut { @@ -46,7 +44,7 @@ public class ClientboundSetSubtitleTextPacket extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(subTitle), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, subTitle); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetTitleTextPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetTitleTextPacket.java index 307dac2..0c5bf1d 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetTitleTextPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSetTitleTextPacket.java @@ -21,12 +21,10 @@ 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; public class ClientboundSetTitleTextPacket extends PacketOut { @@ -46,7 +44,7 @@ public class ClientboundSetTitleTextPacket extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(titleText), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, titleText); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java index 6953351..135a2da 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundSystemChatPacket.java @@ -21,12 +21,10 @@ 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; public class ClientboundSystemChatPacket extends PacketOut { @@ -52,7 +50,7 @@ public class ClientboundSystemChatPacket extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(message), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, message); output.writeBoolean(overlay); return buffer.toByteArray(); diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutDisconnect.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutDisconnect.java index b0e41a2..bb18d05 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutDisconnect.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutDisconnect.java @@ -21,12 +21,10 @@ 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; public class PacketLoginOutDisconnect extends PacketOut { @@ -46,7 +44,7 @@ public class PacketLoginOutDisconnect extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getLoginOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(reason), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, reason); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutBoss.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutBoss.java index 6a81aba..661535b 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutBoss.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutBoss.java @@ -22,12 +22,10 @@ package com.loohp.limbo.network.protocol.packets; import com.loohp.limbo.bossbar.KeyedBossBar; import com.loohp.limbo.utils.DataTypeIO; import net.kyori.adventure.bossbar.BossBar; -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; public class PacketPlayOutBoss extends PacketOut { @@ -83,7 +81,7 @@ public class PacketPlayOutBoss extends PacketOut { BossBar properties = bossBar.getProperties(); switch (action) { case ADD: { - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(properties.name()), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, properties.name()); output.writeFloat(properties.progress()); DataTypeIO.writeVarInt(output, properties.color().ordinal()); DataTypeIO.writeVarInt(output, properties.overlay().ordinal()); @@ -98,7 +96,7 @@ public class PacketPlayOutBoss extends PacketOut { break; } case UPDATE_NAME: { - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(properties.name()), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, properties.name()); break; } case UPDATE_STYLE: { diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutDisconnect.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutDisconnect.java index 9fc44a3..257f946 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutDisconnect.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutDisconnect.java @@ -21,12 +21,10 @@ 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; public class PacketPlayOutDisconnect extends PacketOut { @@ -46,7 +44,7 @@ public class PacketPlayOutDisconnect extends PacketOut { DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(reason), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, reason); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutEntityMetadata.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutEntityMetadata.java index b60fee2..c10edf2 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutEntityMetadata.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutEntityMetadata.java @@ -27,7 +27,6 @@ import com.loohp.limbo.utils.DataTypeIO; import com.loohp.limbo.utils.Rotation3f; import com.loohp.limbo.world.BlockPosition; import net.kyori.adventure.text.Component; -import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; @@ -129,7 +128,7 @@ public class PacketPlayOutEntityMetadata extends PacketOut { output.writeByte((byte) watch.getValue()); break; case CHAT: - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize((Component) watch.getValue()), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, (Component) watch.getValue()); break; //case DIRECTION: // break; diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutGameState.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutGameState.java index aa1f0bc..ab61263 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutGameState.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutGameState.java @@ -25,8 +25,8 @@ import java.io.IOException; public class PacketPlayOutGameState extends PacketOut { - private int reason; - private float value; + private final int reason; + private final float value; public PacketPlayOutGameState(int reason, float value) { this.reason = reason; diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java index ece04bc..22870ed 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java @@ -23,12 +23,10 @@ import com.loohp.limbo.registry.Registry; import com.loohp.limbo.utils.DataTypeIO; import net.kyori.adventure.key.Key; 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; public class PacketPlayOutOpenWindow extends PacketOut { @@ -63,7 +61,7 @@ public class PacketPlayOutOpenWindow extends PacketOut { DataTypeIO.writeVarInt(output, containerId); DataTypeIO.writeVarInt(output, Registry.MENU_REGISTRY.getId(type)); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(title), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, title); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerListHeaderFooter.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerListHeaderFooter.java index 757369a..b957610 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerListHeaderFooter.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutPlayerListHeaderFooter.java @@ -21,12 +21,10 @@ 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; public class PacketPlayOutPlayerListHeaderFooter extends PacketOut{ @@ -53,8 +51,8 @@ public class PacketPlayOutPlayerListHeaderFooter extends PacketOut{ DataOutputStream output = new DataOutputStream(buffer); output.writeByte(Packet.getPlayOut().get(getClass())); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(header), StandardCharsets.UTF_8); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(footer), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, header); + DataTypeIO.writeComponent(output, footer); return buffer.toByteArray(); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutTabComplete.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutTabComplete.java index 80b0ab1..d0be470 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutTabComplete.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutTabComplete.java @@ -21,7 +21,6 @@ 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; @@ -74,7 +73,7 @@ public class PacketPlayOutTabComplete extends PacketOut { DataTypeIO.writeString(output, match.getMatch(), StandardCharsets.UTF_8); if (match.getTooltip().isPresent()) { output.writeBoolean(true); - DataTypeIO.writeString(output, GsonComponentSerializer.gson().serialize(match.getTooltip().get()), StandardCharsets.UTF_8); + DataTypeIO.writeComponent(output, match.getTooltip().get()); } else { output.writeBoolean(false); } diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInResourcePackStatus.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundResourcePackPacket.java similarity index 50% rename from src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInResourcePackStatus.java rename to src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundResourcePackPacket.java index 81e8654..fce62fe 100644 --- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayInResourcePackStatus.java +++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundResourcePackPacket.java @@ -23,43 +23,38 @@ import com.loohp.limbo.utils.DataTypeIO; import java.io.DataInputStream; import java.io.IOException; +import java.util.UUID; -public class PacketPlayInResourcePackStatus extends PacketIn { +public class ServerboundResourcePackPacket extends PacketIn { - public static enum EnumResourcePackStatus { - SUCCESS, - DECLINED, - FAILED, - ACCEPTED; - } - - private EnumResourcePackStatus loaded; - - public PacketPlayInResourcePackStatus(EnumResourcePackStatus loaded) { - this.loaded = loaded; - } - - public PacketPlayInResourcePackStatus(DataInputStream in) throws IOException { - this(toLoadedValue(DataTypeIO.readVarInt(in))); - } - - public EnumResourcePackStatus getLoadedValue() { - return loaded; - } + public enum Action { - private static EnumResourcePackStatus toLoadedValue(int value) { - switch (value) { - case 0: - return EnumResourcePackStatus.SUCCESS; - case 1: - return EnumResourcePackStatus.DECLINED; - case 2: - return EnumResourcePackStatus.FAILED; - case 3: - return EnumResourcePackStatus.ACCEPTED; - default: - return EnumResourcePackStatus.FAILED; + SUCCESSFULLY_LOADED, DECLINED, FAILED_DOWNLOAD, ACCEPTED, DOWNLOADED, INVALID_URL, FAILED_RELOAD, DISCARDED; + + public boolean isTerminal() { + return this != ACCEPTED && this != DOWNLOADED; } + + } + + private final UUID id; + private final Action action; + + public ServerboundResourcePackPacket(UUID id, Action action) { + this.id = id; + this.action = action; + } + + public ServerboundResourcePackPacket(DataInputStream in) throws IOException { + this(DataTypeIO.readUUID(in), Action.values()[DataTypeIO.readVarInt(in)]); + } + + public UUID getId() { + return id; + } + + public Action getAction() { + return action; } } diff --git a/src/main/java/com/loohp/limbo/player/Player.java b/src/main/java/com/loohp/limbo/player/Player.java index 986dcce..ce2a1c8 100644 --- a/src/main/java/com/loohp/limbo/player/Player.java +++ b/src/main/java/com/loohp/limbo/player/Player.java @@ -51,7 +51,7 @@ import com.loohp.limbo.network.protocol.packets.PacketPlayOutNamedSoundEffect; import com.loohp.limbo.network.protocol.packets.PacketPlayOutOpenWindow; import com.loohp.limbo.network.protocol.packets.PacketPlayOutPlayerListHeaderFooter; import com.loohp.limbo.network.protocol.packets.PacketPlayOutPositionAndLook; -import com.loohp.limbo.network.protocol.packets.PacketPlayOutResourcePackSend; +import com.loohp.limbo.network.protocol.packets.ClientboundResourcePackPushPacket; import com.loohp.limbo.network.protocol.packets.PacketPlayOutRespawn; import com.loohp.limbo.network.protocol.packets.PacketPlayOutStopSound; import com.loohp.limbo.sounds.SoundEffect; @@ -369,7 +369,7 @@ public class Player extends LivingEntity implements CommandSender, InventoryHold public void setResourcePack(String url, String hash, boolean forced, Component promptmessage) { try { - PacketPlayOutResourcePackSend packsend = new PacketPlayOutResourcePackSend(url, hash, forced, promptmessage != null, promptmessage); + ClientboundResourcePackPushPacket packsend = new ClientboundResourcePackPushPacket(UUID.randomUUID(), url, hash, forced, promptmessage); clientConnection.sendPacket(packsend); } catch (IOException e) { e.printStackTrace(); diff --git a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java index 8f67b9d..7b8e1f4 100644 --- a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java +++ b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java @@ -19,6 +19,7 @@ package com.loohp.limbo.utils; +import com.google.gson.JsonElement; import com.loohp.limbo.inventory.ItemStack; import com.loohp.limbo.location.BlockFace; import com.loohp.limbo.location.MovingObjectPositionBlock; @@ -26,6 +27,8 @@ import com.loohp.limbo.location.Vector; import com.loohp.limbo.registry.Registry; import com.loohp.limbo.world.BlockPosition; import net.kyori.adventure.key.Key; +import net.kyori.adventure.text.Component; +import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; import net.querz.nbt.io.NBTInputStream; import net.querz.nbt.io.NBTOutputStream; import net.querz.nbt.tag.CompoundTag; @@ -272,4 +275,20 @@ public class DataTypeIO { } while (value != 0); } + public static Component readComponent(DataInputStream in) throws IOException { + // Do not use CompoundTag, as Mojang serializes a plaintext component as just a single StringTag + Tag tag = readTag(in, Tag.class); + if (tag == null || tag instanceof EndTag) { + throw new IllegalArgumentException("Got end-tag when trying to read Component"); + } + JsonElement json = NbtComponentSerializer.tagComponentToJson(tag); + return GsonComponentSerializer.gson().deserializeFromTree(json); + } + + public static void writeComponent(DataOutputStream out, Component component) throws IOException { + JsonElement json = GsonComponentSerializer.gson().serializeToTree(component); + Tag tag = NbtComponentSerializer.jsonComponentToTag(json); + writeTag(out, tag); + } + } diff --git a/src/main/java/com/loohp/limbo/utils/NbtComponentSerializer.java b/src/main/java/com/loohp/limbo/utils/NbtComponentSerializer.java new file mode 100644 index 0000000..135c2c5 --- /dev/null +++ b/src/main/java/com/loohp/limbo/utils/NbtComponentSerializer.java @@ -0,0 +1,385 @@ +/* + * This file is part of Limbo. + * + * Copyright (C) 2023. LoohpJames + * Copyright (C) 2023. 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.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonPrimitive; +import com.google.gson.internal.LazilyParsedNumber; +import net.querz.nbt.tag.ByteArrayTag; +import net.querz.nbt.tag.ByteTag; +import net.querz.nbt.tag.CompoundTag; +import net.querz.nbt.tag.DoubleTag; +import net.querz.nbt.tag.EndTag; +import net.querz.nbt.tag.FloatTag; +import net.querz.nbt.tag.IntArrayTag; +import net.querz.nbt.tag.IntTag; +import net.querz.nbt.tag.ListTag; +import net.querz.nbt.tag.LongArrayTag; +import net.querz.nbt.tag.LongTag; +import net.querz.nbt.tag.NumberTag; +import net.querz.nbt.tag.ShortTag; +import net.querz.nbt.tag.StringTag; +import net.querz.nbt.tag.Tag; + +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.UUID; + +/** + * Taken from MCProtocolLib's NbtComponentSerializer + */ +public class NbtComponentSerializer { + + private static final Set BOOLEAN_TYPES = new HashSet<>(Arrays.asList( + "interpret", + "bold", + "italic", + "underlined", + "strikethrough", + "obfuscated" + )); + // Order is important + private static final List> COMPONENT_TYPES = Arrays.asList( + new Pair<>("text", "text"), + new Pair<>("translatable", "translate"), + new Pair<>("score", "score"), + new Pair<>("selector", "selector"), + new Pair<>("keybind", "keybind"), + new Pair<>("nbt", "nbt") + ); + + private NbtComponentSerializer() { + + } + + public static JsonElement tagComponentToJson(Tag tag) { + return convertToJson(null, tag); + } + + + public static Tag jsonComponentToTag(JsonElement component) { + return convertToTag(component); + } + + private static Tag convertToTag(JsonElement element) { + if (element == null || element.isJsonNull()) { + return null; + } else if (element.isJsonObject()) { + final CompoundTag tag = new CompoundTag(); + final JsonObject jsonObject = element.getAsJsonObject(); + for (final Map.Entry entry : jsonObject.entrySet()) { + convertObjectEntry(entry.getKey(), entry.getValue(), tag); + } + + addComponentType(jsonObject, tag); + return tag; + } else if (element.isJsonArray()) { + return convertJsonArray(element.getAsJsonArray()); + } else if (element.isJsonPrimitive()) { + final JsonPrimitive primitive = element.getAsJsonPrimitive(); + if (primitive.isString()) { + return new StringTag(primitive.getAsString()); + } else if (primitive.isBoolean()) { + return new ByteTag((byte) (primitive.getAsBoolean() ? 1 : 0)); + } + + final Number number = primitive.getAsNumber(); + if (number instanceof Integer) { + return new IntTag(number.intValue()); + } else if (number instanceof Byte) { + return new ByteTag(number.byteValue()); + } else if (number instanceof Short) { + return new ShortTag(number.shortValue()); + } else if (number instanceof Long) { + return new LongTag(number.longValue()); + } else if (number instanceof Double) { + return new DoubleTag(number.doubleValue()); + } else if (number instanceof Float) { + return new FloatTag(number.floatValue()); + } else if (number instanceof LazilyParsedNumber) { + // TODO: This might need better handling + return new IntTag(number.intValue()); + } + return new IntTag(number.intValue()); // ??? + } + throw new IllegalArgumentException("Unhandled json type " + element.getClass().getSimpleName() + " with value " + element.getAsString()); + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + private static ListTag convertJsonArray(JsonArray array) { + // TODO Number arrays? + final ListTag listTag = ListTag.createUnchecked(EndTag.class); + boolean singleType = true; + for (final JsonElement entry : array) { + final Tag convertedEntryTag = convertToTag(entry); + if (listTag.getTypeClass() != null && listTag.getTypeClass() != convertedEntryTag.getClass()) { + singleType = false; + break; + } + + listTag.add(convertedEntryTag); + } + + if (singleType) { + return listTag; + } + + // Generally, vanilla-esque serializers should not produce this format, so it should be rare + // Lists are only used for lists of components ("extra" and "with") + final ListTag processedListTag = ListTag.createUnchecked(EndTag.class); + for (final JsonElement entry : array) { + final Tag convertedTag = convertToTag(entry); + if (convertedTag instanceof CompoundTag) { + processedListTag.add(convertedTag); + continue; + } + + // Wrap all entries in compound tags, as lists can only consist of one type of tag + final CompoundTag compoundTag = new CompoundTag(); + compoundTag.put("type", new StringTag("text")); + if (convertedTag instanceof ListTag) { + compoundTag.put("text", new StringTag()); + compoundTag.put("extra", convertedTag.clone()); + } else { + compoundTag.put("text", new StringTag(stringValue(convertedTag))); + } + processedListTag.add(compoundTag); + } + return processedListTag; + } + + /** + * Converts a json object entry to a tag entry. + * + * @param key key of the entry + * @param value value of the entry + * @param tag the resulting compound tag + */ + private static void convertObjectEntry(final String key, final JsonElement value, final CompoundTag tag) { + if ((key.equals("contents")) && value.isJsonObject()) { + // Store show_entity id as int array instead of uuid string + // Not really required, but we might as well make it more compact + final JsonObject hoverEvent = value.getAsJsonObject(); + final JsonElement id = hoverEvent.get("id"); + final UUID uuid; + if (id != null && id.isJsonPrimitive() && (uuid = parseUUID(id.getAsString())) != null) { + hoverEvent.remove("id"); + + final CompoundTag convertedTag = (CompoundTag) convertToTag(value); + convertedTag.put("id", new IntArrayTag(toIntArray(uuid))); + tag.put(key, convertedTag); + return; + } + } + + tag.put(key, convertToTag(value)); + } + + private static void addComponentType(final JsonObject object, final CompoundTag tag) { + if (object.has("type")) { + return; + } + + // Add the type to speed up deserialization and make DFU errors slightly more useful + for (final Pair pair : COMPONENT_TYPES) { + if (object.has(pair.value)) { + tag.put("type", new StringTag(pair.key)); + return; + } + } + } + + private static JsonElement convertToJson(final String key, final Tag tag) { + if (tag == null) { + return null; + } else if (tag instanceof CompoundTag) { + final JsonObject object = new JsonObject(); + if (!"value".equals(key)) { + removeComponentType(object); + } + + for (final Map.Entry> entry : ((CompoundTag) tag).entrySet()) { + convertCompoundTagEntry(entry.getKey(), entry.getValue(), object); + } + return object; + } else if (tag instanceof ListTag) { + final ListTag list = (ListTag) tag; + final JsonArray array = new JsonArray(); + for (final Tag listEntry : list) { + array.add(convertToJson(null, listEntry)); + } + return array; + } else if (tag instanceof NumberTag) { + if (key != null && BOOLEAN_TYPES.contains(key)) { + // Booleans don't have a direct representation in nbt + return new JsonPrimitive(((NumberTag) tag).asByte() != 0); + } + if (tag instanceof ByteTag) { + return new JsonPrimitive(((ByteTag) tag).asByte()); + } else if (tag instanceof ShortTag) { + return new JsonPrimitive(((ShortTag) tag).asShort()); + } else if (tag instanceof IntTag) { + return new JsonPrimitive(((IntTag) tag).asInt()); + } else if (tag instanceof LongTag) { + return new JsonPrimitive(((LongTag) tag).asLong()); + } else if (tag instanceof FloatTag) { + return new JsonPrimitive(((FloatTag) tag).asFloat()); + } else if (tag instanceof DoubleTag) { + return new JsonPrimitive(((DoubleTag) tag).asDouble()); + } + return new JsonPrimitive(((NumberTag) tag).asDouble()); + } else if (tag instanceof StringTag) { + return new JsonPrimitive(((StringTag) tag).getValue()); + } else if (tag instanceof ByteArrayTag) { + final ByteArrayTag arrayTag = (ByteArrayTag) tag; + final JsonArray array = new JsonArray(); + for (final byte num : arrayTag.getValue()) { + array.add(num); + } + return array; + } else if (tag instanceof IntArrayTag) { + final IntArrayTag arrayTag = (IntArrayTag) tag; + final JsonArray array = new JsonArray(); + for (final int num : arrayTag.getValue()) { + array.add(num); + } + return array; + } else if (tag instanceof LongArrayTag) { + final LongArrayTag arrayTag = (LongArrayTag) tag; + final JsonArray array = new JsonArray(); + for (final long num : arrayTag.getValue()) { + array.add(num); + } + return array; + } + throw new IllegalArgumentException("Unhandled tag type " + tag.getClass().getSimpleName()); + } + + private static void convertCompoundTagEntry(final String key, final Tag tag, final JsonObject object) { + if ((key.equals("contents")) && tag instanceof CompoundTag) { + // Back to a UUID string + final CompoundTag showEntity = (CompoundTag) tag; + final Tag idTag = showEntity.get("id"); + if (idTag instanceof IntArrayTag) { + showEntity.remove("id"); + + final JsonObject convertedElement = (JsonObject) convertToJson(key, tag); + final UUID uuid = fromIntArray(((IntArrayTag) idTag).getValue()); + convertedElement.addProperty("id", uuid.toString()); + object.add(key, convertedElement); + return; + } + } + + // "":1 is a valid tag, but not a valid json component + object.add(key.isEmpty() ? "text" : key, convertToJson(key, tag)); + } + + private static void removeComponentType(final JsonObject object) { + final JsonElement type = object.remove("type"); + if (type == null || !type.isJsonPrimitive()) { + return; + } + + // Remove the other fields + final String typeString = type.getAsString(); + for (final Pair pair : COMPONENT_TYPES) { + if (!pair.key.equals(typeString)) { + object.remove(pair.value); + } + } + } + + // Last adopted from https://github.com/ViaVersion/ViaVersion/blob/8e38e25cbad1798abb628b4994f4047eaf64640d/common/src/main/java/com/viaversion/viaversion/util/UUIDUtil.java + public static UUID fromIntArray(final int[] parts) { + if (parts.length != 4) { + return new UUID(0, 0); + } + return new UUID((long) parts[0] << 32 | (parts[1] & 0xFFFFFFFFL), (long) parts[2] << 32 | (parts[3] & 0xFFFFFFFFL)); + } + + public static int[] toIntArray(final UUID uuid) { + return toIntArray(uuid.getMostSignificantBits(), uuid.getLeastSignificantBits()); + } + + public static int[] toIntArray(final long msb, final long lsb) { + return new int[]{(int) (msb >> 32), (int) msb, (int) (lsb >> 32), (int) lsb}; + } + + public static UUID parseUUID(final String uuidString) { + try { + return UUID.fromString(uuidString); + } catch (final IllegalArgumentException e) { + return null; + } + } + + // Last adopted from https://github.com/ViaVersion/ViaNBT/commit/ad8ac024c48c2fc25e18dc689b3ca62602420ab9 + private static String stringValue(Tag tag) { + if (tag instanceof ByteArrayTag) { + return Arrays.toString(((ByteArrayTag) tag).getValue()); + } else if (tag instanceof ByteTag) { + return Byte.toString(((ByteTag) tag).asByte()); + } else if (tag instanceof DoubleTag) { + return Double.toString(((DoubleTag) tag).asDouble()); + } else if (tag instanceof FloatTag) { + return Float.toString(((FloatTag) tag).asFloat()); + } else if (tag instanceof IntArrayTag) { + return Arrays.toString(((IntArrayTag) tag).getValue()); + } else if (tag instanceof IntTag) { + return Integer.toString(((IntTag) tag).asInt()); + } else if (tag instanceof LongArrayTag) { + return Arrays.toString(((LongArrayTag) tag).getValue()); + } else if (tag instanceof LongTag) { + return Long.toString(((LongTag) tag).asLong()); + } else if (tag instanceof ShortTag) { + return Short.toString(((ShortTag) tag).asShort()); + } else if (tag instanceof StringTag) { + return ((StringTag) tag).getValue(); + } else { + return tag.valueToString(); + } + } + + private static class Pair { + + private final K key; + private final V value; + + private Pair(K key, V value) { + this.key = key; + this.value = value; + } + + public K getKey() { + return key; + } + + public V getValue() { + return value; + } + + } +} \ No newline at end of file diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json index ac619df..6df886b 100644 --- a/src/main/resources/blocks.json +++ b/src/main/resources/blocks.json @@ -3505,7 +3505,7 @@ }, "states": [ { - "id": 6218, + "id": 6217, "properties": { "facing": "north", "half": "top", @@ -3515,7 +3515,7 @@ } }, { - "id": 6219, + "id": 6218, "properties": { "facing": "north", "half": "top", @@ -3524,6 +3524,16 @@ "waterlogged": "false" } }, + { + "id": 6219, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6220, "properties": { @@ -3531,7 +3541,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3539,9 +3549,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -3551,7 +3561,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3560,8 +3570,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3571,17 +3581,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6225, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -3591,7 +3601,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3600,8 +3610,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3611,7 +3621,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3619,23 +3629,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6230, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6231, "properties": { "facing": "north", "half": "bottom", @@ -3645,7 +3645,7 @@ } }, { - "id": 6232, + "id": 6231, "properties": { "facing": "north", "half": "bottom", @@ -3656,7 +3656,7 @@ }, { "default": true, - "id": 6233, + "id": 6232, "properties": { "facing": "north", "half": "bottom", @@ -3666,7 +3666,7 @@ } }, { - "id": 6234, + "id": 6233, "properties": { "facing": "south", "half": "top", @@ -3676,7 +3676,7 @@ } }, { - "id": 6235, + "id": 6234, "properties": { "facing": "south", "half": "top", @@ -3685,6 +3685,16 @@ "waterlogged": "false" } }, + { + "id": 6235, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6236, "properties": { @@ -3692,7 +3702,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3700,9 +3710,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -3712,7 +3722,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3721,8 +3731,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3732,17 +3742,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6241, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -3752,7 +3762,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3761,8 +3771,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3772,7 +3782,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3780,9 +3790,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -3792,7 +3802,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3801,8 +3811,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3812,17 +3822,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6249, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -3832,7 +3842,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3841,8 +3851,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3852,7 +3862,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3860,9 +3870,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -3872,7 +3882,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3881,8 +3891,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3892,17 +3902,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6257, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -3912,7 +3922,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3921,8 +3931,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3932,7 +3942,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3940,9 +3950,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -3952,7 +3962,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -3961,8 +3971,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -3972,17 +3982,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6265, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -3992,7 +4002,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -4001,8 +4011,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -4012,7 +4022,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -4020,9 +4030,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -4032,7 +4042,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -4041,8 +4051,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -4052,17 +4062,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6273, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -4072,7 +4082,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -4081,8 +4091,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -4092,7 +4102,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -4100,23 +4110,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6278, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6279, "properties": { "facing": "east", "half": "bottom", @@ -4126,7 +4126,7 @@ } }, { - "id": 6280, + "id": 6279, "properties": { "facing": "east", "half": "bottom", @@ -4136,7 +4136,7 @@ } }, { - "id": 6281, + "id": 6280, "properties": { "facing": "east", "half": "bottom", @@ -9201,7 +9201,7 @@ "states": [ { "default": true, - "id": 22510 + "id": 24824 } ] }, @@ -13634,7 +13634,7 @@ }, "states": [ { - "id": 6474, + "id": 6473, "properties": { "facing": "north", "half": "top", @@ -13644,7 +13644,7 @@ } }, { - "id": 6475, + "id": 6474, "properties": { "facing": "north", "half": "top", @@ -13653,6 +13653,16 @@ "waterlogged": "false" } }, + { + "id": 6475, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6476, "properties": { @@ -13660,7 +13670,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13668,9 +13678,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -13680,7 +13690,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13689,8 +13699,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13700,17 +13710,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6481, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -13720,7 +13730,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13729,8 +13739,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13740,7 +13750,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13748,23 +13758,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6486, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6487, "properties": { "facing": "north", "half": "bottom", @@ -13774,7 +13774,7 @@ } }, { - "id": 6488, + "id": 6487, "properties": { "facing": "north", "half": "bottom", @@ -13785,7 +13785,7 @@ }, { "default": true, - "id": 6489, + "id": 6488, "properties": { "facing": "north", "half": "bottom", @@ -13795,7 +13795,7 @@ } }, { - "id": 6490, + "id": 6489, "properties": { "facing": "south", "half": "top", @@ -13805,7 +13805,7 @@ } }, { - "id": 6491, + "id": 6490, "properties": { "facing": "south", "half": "top", @@ -13814,6 +13814,16 @@ "waterlogged": "false" } }, + { + "id": 6491, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6492, "properties": { @@ -13821,7 +13831,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13829,9 +13839,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -13841,7 +13851,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13850,8 +13860,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13861,17 +13871,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6497, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -13881,7 +13891,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13890,8 +13900,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13901,7 +13911,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13909,9 +13919,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -13921,7 +13931,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13930,8 +13940,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13941,17 +13951,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6505, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -13961,7 +13971,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13970,8 +13980,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -13981,7 +13991,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -13989,9 +13999,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -14001,7 +14011,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14010,8 +14020,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14021,17 +14031,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6513, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -14041,7 +14051,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14050,8 +14060,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14061,7 +14071,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14069,9 +14079,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -14081,7 +14091,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14090,8 +14100,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14101,17 +14111,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6521, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -14121,7 +14131,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14130,8 +14140,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14141,7 +14151,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14149,9 +14159,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -14161,7 +14171,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14170,8 +14180,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14181,17 +14191,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6529, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -14201,7 +14211,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14210,8 +14220,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -14221,7 +14231,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -14229,23 +14239,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6534, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6535, "properties": { "facing": "east", "half": "bottom", @@ -14255,7 +14255,7 @@ } }, { - "id": 6536, + "id": 6535, "properties": { "facing": "east", "half": "bottom", @@ -14265,7 +14265,7 @@ } }, { - "id": 6537, + "id": 6536, "properties": { "facing": "east", "half": "bottom", @@ -14558,20 +14558,20 @@ }, "states": [ { - "id": 5853, + "id": 5852, "properties": { "axis": "x" } }, { "default": true, - "id": 5854, + "id": 5853, "properties": { "axis": "y" } }, { - "id": 5855, + "id": 5854, "properties": { "axis": "z" } @@ -15309,7 +15309,7 @@ }, "states": [ { - "id": 22530, + "id": 24844, "properties": { "facing": "north", "tilt": "none", @@ -15318,7 +15318,7 @@ }, { "default": true, - "id": 22531, + "id": 24845, "properties": { "facing": "north", "tilt": "none", @@ -15326,7 +15326,7 @@ } }, { - "id": 22532, + "id": 24846, "properties": { "facing": "north", "tilt": "unstable", @@ -15334,7 +15334,7 @@ } }, { - "id": 22533, + "id": 24847, "properties": { "facing": "north", "tilt": "unstable", @@ -15342,7 +15342,7 @@ } }, { - "id": 22534, + "id": 24848, "properties": { "facing": "north", "tilt": "partial", @@ -15350,7 +15350,7 @@ } }, { - "id": 22535, + "id": 24849, "properties": { "facing": "north", "tilt": "partial", @@ -15358,7 +15358,7 @@ } }, { - "id": 22536, + "id": 24850, "properties": { "facing": "north", "tilt": "full", @@ -15366,7 +15366,7 @@ } }, { - "id": 22537, + "id": 24851, "properties": { "facing": "north", "tilt": "full", @@ -15374,7 +15374,7 @@ } }, { - "id": 22538, + "id": 24852, "properties": { "facing": "south", "tilt": "none", @@ -15382,7 +15382,7 @@ } }, { - "id": 22539, + "id": 24853, "properties": { "facing": "south", "tilt": "none", @@ -15390,7 +15390,7 @@ } }, { - "id": 22540, + "id": 24854, "properties": { "facing": "south", "tilt": "unstable", @@ -15398,7 +15398,7 @@ } }, { - "id": 22541, + "id": 24855, "properties": { "facing": "south", "tilt": "unstable", @@ -15406,7 +15406,7 @@ } }, { - "id": 22542, + "id": 24856, "properties": { "facing": "south", "tilt": "partial", @@ -15414,7 +15414,7 @@ } }, { - "id": 22543, + "id": 24857, "properties": { "facing": "south", "tilt": "partial", @@ -15422,7 +15422,7 @@ } }, { - "id": 22544, + "id": 24858, "properties": { "facing": "south", "tilt": "full", @@ -15430,7 +15430,7 @@ } }, { - "id": 22545, + "id": 24859, "properties": { "facing": "south", "tilt": "full", @@ -15438,7 +15438,7 @@ } }, { - "id": 22546, + "id": 24860, "properties": { "facing": "west", "tilt": "none", @@ -15446,7 +15446,7 @@ } }, { - "id": 22547, + "id": 24861, "properties": { "facing": "west", "tilt": "none", @@ -15454,7 +15454,7 @@ } }, { - "id": 22548, + "id": 24862, "properties": { "facing": "west", "tilt": "unstable", @@ -15462,7 +15462,7 @@ } }, { - "id": 22549, + "id": 24863, "properties": { "facing": "west", "tilt": "unstable", @@ -15470,7 +15470,7 @@ } }, { - "id": 22550, + "id": 24864, "properties": { "facing": "west", "tilt": "partial", @@ -15478,7 +15478,7 @@ } }, { - "id": 22551, + "id": 24865, "properties": { "facing": "west", "tilt": "partial", @@ -15486,7 +15486,7 @@ } }, { - "id": 22552, + "id": 24866, "properties": { "facing": "west", "tilt": "full", @@ -15494,7 +15494,7 @@ } }, { - "id": 22553, + "id": 24867, "properties": { "facing": "west", "tilt": "full", @@ -15502,7 +15502,7 @@ } }, { - "id": 22554, + "id": 24868, "properties": { "facing": "east", "tilt": "none", @@ -15510,7 +15510,7 @@ } }, { - "id": 22555, + "id": 24869, "properties": { "facing": "east", "tilt": "none", @@ -15518,7 +15518,7 @@ } }, { - "id": 22556, + "id": 24870, "properties": { "facing": "east", "tilt": "unstable", @@ -15526,7 +15526,7 @@ } }, { - "id": 22557, + "id": 24871, "properties": { "facing": "east", "tilt": "unstable", @@ -15534,7 +15534,7 @@ } }, { - "id": 22558, + "id": 24872, "properties": { "facing": "east", "tilt": "partial", @@ -15542,7 +15542,7 @@ } }, { - "id": 22559, + "id": 24873, "properties": { "facing": "east", "tilt": "partial", @@ -15550,7 +15550,7 @@ } }, { - "id": 22560, + "id": 24874, "properties": { "facing": "east", "tilt": "full", @@ -15558,7 +15558,7 @@ } }, { - "id": 22561, + "id": 24875, "properties": { "facing": "east", "tilt": "full", @@ -15582,7 +15582,7 @@ }, "states": [ { - "id": 22562, + "id": 24876, "properties": { "facing": "north", "waterlogged": "true" @@ -15590,49 +15590,49 @@ }, { "default": true, - "id": 22563, + "id": 24877, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22564, + "id": 24878, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22565, + "id": 24879, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22566, + "id": 24880, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22567, + "id": 24881, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22568, + "id": 24882, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22569, + "id": 24883, "properties": { "facing": "east", "waterlogged": "false" @@ -19146,7 +19146,7 @@ }, "states": [ { - "id": 6090, + "id": 6089, "properties": { "facing": "north", "half": "top", @@ -19156,7 +19156,7 @@ } }, { - "id": 6091, + "id": 6090, "properties": { "facing": "north", "half": "top", @@ -19165,6 +19165,16 @@ "waterlogged": "false" } }, + { + "id": 6091, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6092, "properties": { @@ -19172,7 +19182,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19180,9 +19190,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19192,7 +19202,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19201,8 +19211,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19212,17 +19222,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6097, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19232,7 +19242,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19241,8 +19251,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19252,7 +19262,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19260,23 +19270,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6102, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6103, "properties": { "facing": "north", "half": "bottom", @@ -19286,7 +19286,7 @@ } }, { - "id": 6104, + "id": 6103, "properties": { "facing": "north", "half": "bottom", @@ -19297,7 +19297,7 @@ }, { "default": true, - "id": 6105, + "id": 6104, "properties": { "facing": "north", "half": "bottom", @@ -19307,7 +19307,7 @@ } }, { - "id": 6106, + "id": 6105, "properties": { "facing": "south", "half": "top", @@ -19317,7 +19317,7 @@ } }, { - "id": 6107, + "id": 6106, "properties": { "facing": "south", "half": "top", @@ -19326,6 +19326,16 @@ "waterlogged": "false" } }, + { + "id": 6107, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6108, "properties": { @@ -19333,7 +19343,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19341,9 +19351,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19353,7 +19363,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19362,8 +19372,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19373,17 +19383,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6113, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19393,7 +19403,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19402,8 +19412,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19413,7 +19423,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19421,9 +19431,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19433,7 +19443,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19442,8 +19452,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19453,17 +19463,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6121, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19473,7 +19483,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19482,8 +19492,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19493,7 +19503,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19501,9 +19511,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19513,7 +19523,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19522,8 +19532,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19533,17 +19543,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6129, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19553,7 +19563,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19562,8 +19572,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19573,7 +19583,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19581,9 +19591,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19593,7 +19603,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19602,8 +19612,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19613,17 +19623,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6137, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19633,7 +19643,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19642,8 +19652,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19653,7 +19663,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19661,9 +19671,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -19673,7 +19683,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19682,8 +19692,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19693,17 +19703,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6145, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -19713,7 +19723,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19722,8 +19732,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -19733,7 +19743,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -19741,23 +19751,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6150, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6151, "properties": { "facing": "east", "half": "bottom", @@ -19767,7 +19767,7 @@ } }, { - "id": 6152, + "id": 6151, "properties": { "facing": "east", "half": "bottom", @@ -19777,7 +19777,7 @@ } }, { - "id": 6153, + "id": 6152, "properties": { "facing": "east", "half": "bottom", @@ -20522,7 +20522,7 @@ "states": [ { "default": true, - "id": 5961 + "id": 5960 } ] }, @@ -25986,7 +25986,7 @@ "states": [ { "default": true, - "id": 5957 + "id": 5956 } ] }, @@ -31592,7 +31592,7 @@ "states": [ { "default": true, - "id": 6550, + "id": 6549, "properties": { "down": "true", "east": "true", @@ -31603,7 +31603,7 @@ } }, { - "id": 6551, + "id": 6550, "properties": { "down": "true", "east": "true", @@ -31613,6 +31613,17 @@ "west": "false" } }, + { + "id": 6551, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, { "id": 6552, "properties": { @@ -31621,7 +31632,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31630,9 +31641,9 @@ "down": "true", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -31643,7 +31654,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31653,8 +31664,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31665,7 +31676,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31673,10 +31684,10 @@ "properties": { "down": "true", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -31687,7 +31698,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31697,8 +31708,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31709,7 +31720,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31718,9 +31729,9 @@ "down": "true", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -31731,7 +31742,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31741,8 +31752,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31753,18 +31764,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6565, "properties": { "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -31775,7 +31786,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31785,8 +31796,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31797,7 +31808,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31806,9 +31817,9 @@ "down": "true", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -31819,7 +31830,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31829,8 +31840,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31841,7 +31852,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31849,10 +31860,10 @@ "properties": { "down": "true", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -31863,7 +31874,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31873,8 +31884,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31885,7 +31896,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31894,9 +31905,9 @@ "down": "true", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -31907,7 +31918,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31917,8 +31928,8 @@ "east": "false", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31929,18 +31940,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6581, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -31951,7 +31962,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -31961,8 +31972,8 @@ "east": "true", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -31973,7 +31984,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -31982,9 +31993,9 @@ "down": "false", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -31995,7 +32006,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32005,8 +32016,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32017,7 +32028,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -32025,10 +32036,10 @@ "properties": { "down": "false", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -32039,7 +32050,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32049,8 +32060,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32061,7 +32072,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -32070,9 +32081,9 @@ "down": "false", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -32083,7 +32094,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32093,8 +32104,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32105,18 +32116,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6597, "properties": { "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -32127,7 +32138,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32137,8 +32148,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32149,7 +32160,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -32158,9 +32169,9 @@ "down": "false", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -32171,7 +32182,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32181,8 +32192,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32193,7 +32204,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -32201,10 +32212,10 @@ "properties": { "down": "false", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -32215,7 +32226,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -32225,8 +32236,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -32237,7 +32248,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -32246,24 +32257,13 @@ "down": "false", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { "id": 6610, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6611, "properties": { "down": "false", "east": "false", @@ -32274,7 +32274,7 @@ } }, { - "id": 6612, + "id": 6611, "properties": { "down": "false", "east": "false", @@ -32285,7 +32285,7 @@ } }, { - "id": 6613, + "id": 6612, "properties": { "down": "false", "east": "false", @@ -32352,7 +32352,7 @@ "states": [ { "default": true, - "id": 5958 + "id": 5957 } ] }, @@ -33050,43 +33050,43 @@ "states": [ { "default": true, - "id": 5875, + "id": 5874, "properties": { "bites": "0" } }, { - "id": 5876, + "id": 5875, "properties": { "bites": "1" } }, { - "id": 5877, + "id": 5876, "properties": { "bites": "2" } }, { - "id": 5878, + "id": 5877, "properties": { "bites": "3" } }, { - "id": 5879, + "id": 5878, "properties": { "bites": "4" } }, { - "id": 5880, + "id": 5879, "properties": { "bites": "5" } }, { - "id": 5881, + "id": 5880, "properties": { "bites": "6" } @@ -33097,7 +33097,7 @@ "states": [ { "default": true, - "id": 21082 + "id": 22316 } ] }, @@ -33139,7 +33139,7 @@ }, "states": [ { - "id": 21181, + "id": 22415, "properties": { "facing": "north", "power": "0", @@ -33149,7 +33149,7 @@ }, { "default": true, - "id": 21182, + "id": 22416, "properties": { "facing": "north", "power": "0", @@ -33158,7 +33158,7 @@ } }, { - "id": 21183, + "id": 22417, "properties": { "facing": "north", "power": "0", @@ -33167,7 +33167,7 @@ } }, { - "id": 21184, + "id": 22418, "properties": { "facing": "north", "power": "0", @@ -33176,7 +33176,7 @@ } }, { - "id": 21185, + "id": 22419, "properties": { "facing": "north", "power": "0", @@ -33185,7 +33185,7 @@ } }, { - "id": 21186, + "id": 22420, "properties": { "facing": "north", "power": "0", @@ -33194,7 +33194,7 @@ } }, { - "id": 21187, + "id": 22421, "properties": { "facing": "north", "power": "1", @@ -33203,7 +33203,7 @@ } }, { - "id": 21188, + "id": 22422, "properties": { "facing": "north", "power": "1", @@ -33212,7 +33212,7 @@ } }, { - "id": 21189, + "id": 22423, "properties": { "facing": "north", "power": "1", @@ -33221,7 +33221,7 @@ } }, { - "id": 21190, + "id": 22424, "properties": { "facing": "north", "power": "1", @@ -33230,7 +33230,7 @@ } }, { - "id": 21191, + "id": 22425, "properties": { "facing": "north", "power": "1", @@ -33239,7 +33239,7 @@ } }, { - "id": 21192, + "id": 22426, "properties": { "facing": "north", "power": "1", @@ -33248,7 +33248,7 @@ } }, { - "id": 21193, + "id": 22427, "properties": { "facing": "north", "power": "2", @@ -33257,7 +33257,7 @@ } }, { - "id": 21194, + "id": 22428, "properties": { "facing": "north", "power": "2", @@ -33266,7 +33266,7 @@ } }, { - "id": 21195, + "id": 22429, "properties": { "facing": "north", "power": "2", @@ -33275,7 +33275,7 @@ } }, { - "id": 21196, + "id": 22430, "properties": { "facing": "north", "power": "2", @@ -33284,7 +33284,7 @@ } }, { - "id": 21197, + "id": 22431, "properties": { "facing": "north", "power": "2", @@ -33293,7 +33293,7 @@ } }, { - "id": 21198, + "id": 22432, "properties": { "facing": "north", "power": "2", @@ -33302,7 +33302,7 @@ } }, { - "id": 21199, + "id": 22433, "properties": { "facing": "north", "power": "3", @@ -33311,7 +33311,7 @@ } }, { - "id": 21200, + "id": 22434, "properties": { "facing": "north", "power": "3", @@ -33320,7 +33320,7 @@ } }, { - "id": 21201, + "id": 22435, "properties": { "facing": "north", "power": "3", @@ -33329,7 +33329,7 @@ } }, { - "id": 21202, + "id": 22436, "properties": { "facing": "north", "power": "3", @@ -33338,7 +33338,7 @@ } }, { - "id": 21203, + "id": 22437, "properties": { "facing": "north", "power": "3", @@ -33347,7 +33347,7 @@ } }, { - "id": 21204, + "id": 22438, "properties": { "facing": "north", "power": "3", @@ -33356,7 +33356,7 @@ } }, { - "id": 21205, + "id": 22439, "properties": { "facing": "north", "power": "4", @@ -33365,7 +33365,7 @@ } }, { - "id": 21206, + "id": 22440, "properties": { "facing": "north", "power": "4", @@ -33374,7 +33374,7 @@ } }, { - "id": 21207, + "id": 22441, "properties": { "facing": "north", "power": "4", @@ -33383,7 +33383,7 @@ } }, { - "id": 21208, + "id": 22442, "properties": { "facing": "north", "power": "4", @@ -33392,7 +33392,7 @@ } }, { - "id": 21209, + "id": 22443, "properties": { "facing": "north", "power": "4", @@ -33401,7 +33401,7 @@ } }, { - "id": 21210, + "id": 22444, "properties": { "facing": "north", "power": "4", @@ -33410,7 +33410,7 @@ } }, { - "id": 21211, + "id": 22445, "properties": { "facing": "north", "power": "5", @@ -33419,7 +33419,7 @@ } }, { - "id": 21212, + "id": 22446, "properties": { "facing": "north", "power": "5", @@ -33428,7 +33428,7 @@ } }, { - "id": 21213, + "id": 22447, "properties": { "facing": "north", "power": "5", @@ -33437,7 +33437,7 @@ } }, { - "id": 21214, + "id": 22448, "properties": { "facing": "north", "power": "5", @@ -33446,7 +33446,7 @@ } }, { - "id": 21215, + "id": 22449, "properties": { "facing": "north", "power": "5", @@ -33455,7 +33455,7 @@ } }, { - "id": 21216, + "id": 22450, "properties": { "facing": "north", "power": "5", @@ -33464,7 +33464,7 @@ } }, { - "id": 21217, + "id": 22451, "properties": { "facing": "north", "power": "6", @@ -33473,7 +33473,7 @@ } }, { - "id": 21218, + "id": 22452, "properties": { "facing": "north", "power": "6", @@ -33482,7 +33482,7 @@ } }, { - "id": 21219, + "id": 22453, "properties": { "facing": "north", "power": "6", @@ -33491,7 +33491,7 @@ } }, { - "id": 21220, + "id": 22454, "properties": { "facing": "north", "power": "6", @@ -33500,7 +33500,7 @@ } }, { - "id": 21221, + "id": 22455, "properties": { "facing": "north", "power": "6", @@ -33509,7 +33509,7 @@ } }, { - "id": 21222, + "id": 22456, "properties": { "facing": "north", "power": "6", @@ -33518,7 +33518,7 @@ } }, { - "id": 21223, + "id": 22457, "properties": { "facing": "north", "power": "7", @@ -33527,7 +33527,7 @@ } }, { - "id": 21224, + "id": 22458, "properties": { "facing": "north", "power": "7", @@ -33536,7 +33536,7 @@ } }, { - "id": 21225, + "id": 22459, "properties": { "facing": "north", "power": "7", @@ -33545,7 +33545,7 @@ } }, { - "id": 21226, + "id": 22460, "properties": { "facing": "north", "power": "7", @@ -33554,7 +33554,7 @@ } }, { - "id": 21227, + "id": 22461, "properties": { "facing": "north", "power": "7", @@ -33563,7 +33563,7 @@ } }, { - "id": 21228, + "id": 22462, "properties": { "facing": "north", "power": "7", @@ -33572,7 +33572,7 @@ } }, { - "id": 21229, + "id": 22463, "properties": { "facing": "north", "power": "8", @@ -33581,7 +33581,7 @@ } }, { - "id": 21230, + "id": 22464, "properties": { "facing": "north", "power": "8", @@ -33590,7 +33590,7 @@ } }, { - "id": 21231, + "id": 22465, "properties": { "facing": "north", "power": "8", @@ -33599,7 +33599,7 @@ } }, { - "id": 21232, + "id": 22466, "properties": { "facing": "north", "power": "8", @@ -33608,7 +33608,7 @@ } }, { - "id": 21233, + "id": 22467, "properties": { "facing": "north", "power": "8", @@ -33617,7 +33617,7 @@ } }, { - "id": 21234, + "id": 22468, "properties": { "facing": "north", "power": "8", @@ -33626,7 +33626,7 @@ } }, { - "id": 21235, + "id": 22469, "properties": { "facing": "north", "power": "9", @@ -33635,7 +33635,7 @@ } }, { - "id": 21236, + "id": 22470, "properties": { "facing": "north", "power": "9", @@ -33644,7 +33644,7 @@ } }, { - "id": 21237, + "id": 22471, "properties": { "facing": "north", "power": "9", @@ -33653,7 +33653,7 @@ } }, { - "id": 21238, + "id": 22472, "properties": { "facing": "north", "power": "9", @@ -33662,7 +33662,7 @@ } }, { - "id": 21239, + "id": 22473, "properties": { "facing": "north", "power": "9", @@ -33671,7 +33671,7 @@ } }, { - "id": 21240, + "id": 22474, "properties": { "facing": "north", "power": "9", @@ -33680,7 +33680,7 @@ } }, { - "id": 21241, + "id": 22475, "properties": { "facing": "north", "power": "10", @@ -33689,7 +33689,7 @@ } }, { - "id": 21242, + "id": 22476, "properties": { "facing": "north", "power": "10", @@ -33698,7 +33698,7 @@ } }, { - "id": 21243, + "id": 22477, "properties": { "facing": "north", "power": "10", @@ -33707,7 +33707,7 @@ } }, { - "id": 21244, + "id": 22478, "properties": { "facing": "north", "power": "10", @@ -33716,7 +33716,7 @@ } }, { - "id": 21245, + "id": 22479, "properties": { "facing": "north", "power": "10", @@ -33725,7 +33725,7 @@ } }, { - "id": 21246, + "id": 22480, "properties": { "facing": "north", "power": "10", @@ -33734,7 +33734,7 @@ } }, { - "id": 21247, + "id": 22481, "properties": { "facing": "north", "power": "11", @@ -33743,7 +33743,7 @@ } }, { - "id": 21248, + "id": 22482, "properties": { "facing": "north", "power": "11", @@ -33752,7 +33752,7 @@ } }, { - "id": 21249, + "id": 22483, "properties": { "facing": "north", "power": "11", @@ -33761,7 +33761,7 @@ } }, { - "id": 21250, + "id": 22484, "properties": { "facing": "north", "power": "11", @@ -33770,7 +33770,7 @@ } }, { - "id": 21251, + "id": 22485, "properties": { "facing": "north", "power": "11", @@ -33779,7 +33779,7 @@ } }, { - "id": 21252, + "id": 22486, "properties": { "facing": "north", "power": "11", @@ -33788,7 +33788,7 @@ } }, { - "id": 21253, + "id": 22487, "properties": { "facing": "north", "power": "12", @@ -33797,7 +33797,7 @@ } }, { - "id": 21254, + "id": 22488, "properties": { "facing": "north", "power": "12", @@ -33806,7 +33806,7 @@ } }, { - "id": 21255, + "id": 22489, "properties": { "facing": "north", "power": "12", @@ -33815,7 +33815,7 @@ } }, { - "id": 21256, + "id": 22490, "properties": { "facing": "north", "power": "12", @@ -33824,7 +33824,7 @@ } }, { - "id": 21257, + "id": 22491, "properties": { "facing": "north", "power": "12", @@ -33833,7 +33833,7 @@ } }, { - "id": 21258, + "id": 22492, "properties": { "facing": "north", "power": "12", @@ -33842,7 +33842,7 @@ } }, { - "id": 21259, + "id": 22493, "properties": { "facing": "north", "power": "13", @@ -33851,7 +33851,7 @@ } }, { - "id": 21260, + "id": 22494, "properties": { "facing": "north", "power": "13", @@ -33860,7 +33860,7 @@ } }, { - "id": 21261, + "id": 22495, "properties": { "facing": "north", "power": "13", @@ -33869,7 +33869,7 @@ } }, { - "id": 21262, + "id": 22496, "properties": { "facing": "north", "power": "13", @@ -33878,7 +33878,7 @@ } }, { - "id": 21263, + "id": 22497, "properties": { "facing": "north", "power": "13", @@ -33887,7 +33887,7 @@ } }, { - "id": 21264, + "id": 22498, "properties": { "facing": "north", "power": "13", @@ -33896,7 +33896,7 @@ } }, { - "id": 21265, + "id": 22499, "properties": { "facing": "north", "power": "14", @@ -33905,7 +33905,7 @@ } }, { - "id": 21266, + "id": 22500, "properties": { "facing": "north", "power": "14", @@ -33914,7 +33914,7 @@ } }, { - "id": 21267, + "id": 22501, "properties": { "facing": "north", "power": "14", @@ -33923,7 +33923,7 @@ } }, { - "id": 21268, + "id": 22502, "properties": { "facing": "north", "power": "14", @@ -33932,7 +33932,7 @@ } }, { - "id": 21269, + "id": 22503, "properties": { "facing": "north", "power": "14", @@ -33941,7 +33941,7 @@ } }, { - "id": 21270, + "id": 22504, "properties": { "facing": "north", "power": "14", @@ -33950,7 +33950,7 @@ } }, { - "id": 21271, + "id": 22505, "properties": { "facing": "north", "power": "15", @@ -33959,7 +33959,7 @@ } }, { - "id": 21272, + "id": 22506, "properties": { "facing": "north", "power": "15", @@ -33968,7 +33968,7 @@ } }, { - "id": 21273, + "id": 22507, "properties": { "facing": "north", "power": "15", @@ -33977,7 +33977,7 @@ } }, { - "id": 21274, + "id": 22508, "properties": { "facing": "north", "power": "15", @@ -33986,7 +33986,7 @@ } }, { - "id": 21275, + "id": 22509, "properties": { "facing": "north", "power": "15", @@ -33995,7 +33995,7 @@ } }, { - "id": 21276, + "id": 22510, "properties": { "facing": "north", "power": "15", @@ -34004,7 +34004,7 @@ } }, { - "id": 21277, + "id": 22511, "properties": { "facing": "south", "power": "0", @@ -34013,7 +34013,7 @@ } }, { - "id": 21278, + "id": 22512, "properties": { "facing": "south", "power": "0", @@ -34022,7 +34022,7 @@ } }, { - "id": 21279, + "id": 22513, "properties": { "facing": "south", "power": "0", @@ -34031,7 +34031,7 @@ } }, { - "id": 21280, + "id": 22514, "properties": { "facing": "south", "power": "0", @@ -34040,7 +34040,7 @@ } }, { - "id": 21281, + "id": 22515, "properties": { "facing": "south", "power": "0", @@ -34049,7 +34049,7 @@ } }, { - "id": 21282, + "id": 22516, "properties": { "facing": "south", "power": "0", @@ -34058,7 +34058,7 @@ } }, { - "id": 21283, + "id": 22517, "properties": { "facing": "south", "power": "1", @@ -34067,7 +34067,7 @@ } }, { - "id": 21284, + "id": 22518, "properties": { "facing": "south", "power": "1", @@ -34076,7 +34076,7 @@ } }, { - "id": 21285, + "id": 22519, "properties": { "facing": "south", "power": "1", @@ -34085,7 +34085,7 @@ } }, { - "id": 21286, + "id": 22520, "properties": { "facing": "south", "power": "1", @@ -34094,7 +34094,7 @@ } }, { - "id": 21287, + "id": 22521, "properties": { "facing": "south", "power": "1", @@ -34103,7 +34103,7 @@ } }, { - "id": 21288, + "id": 22522, "properties": { "facing": "south", "power": "1", @@ -34112,7 +34112,7 @@ } }, { - "id": 21289, + "id": 22523, "properties": { "facing": "south", "power": "2", @@ -34121,7 +34121,7 @@ } }, { - "id": 21290, + "id": 22524, "properties": { "facing": "south", "power": "2", @@ -34130,7 +34130,7 @@ } }, { - "id": 21291, + "id": 22525, "properties": { "facing": "south", "power": "2", @@ -34139,7 +34139,7 @@ } }, { - "id": 21292, + "id": 22526, "properties": { "facing": "south", "power": "2", @@ -34148,7 +34148,7 @@ } }, { - "id": 21293, + "id": 22527, "properties": { "facing": "south", "power": "2", @@ -34157,7 +34157,7 @@ } }, { - "id": 21294, + "id": 22528, "properties": { "facing": "south", "power": "2", @@ -34166,7 +34166,7 @@ } }, { - "id": 21295, + "id": 22529, "properties": { "facing": "south", "power": "3", @@ -34175,7 +34175,7 @@ } }, { - "id": 21296, + "id": 22530, "properties": { "facing": "south", "power": "3", @@ -34184,7 +34184,7 @@ } }, { - "id": 21297, + "id": 22531, "properties": { "facing": "south", "power": "3", @@ -34193,7 +34193,7 @@ } }, { - "id": 21298, + "id": 22532, "properties": { "facing": "south", "power": "3", @@ -34202,7 +34202,7 @@ } }, { - "id": 21299, + "id": 22533, "properties": { "facing": "south", "power": "3", @@ -34211,7 +34211,7 @@ } }, { - "id": 21300, + "id": 22534, "properties": { "facing": "south", "power": "3", @@ -34220,7 +34220,7 @@ } }, { - "id": 21301, + "id": 22535, "properties": { "facing": "south", "power": "4", @@ -34229,7 +34229,7 @@ } }, { - "id": 21302, + "id": 22536, "properties": { "facing": "south", "power": "4", @@ -34238,7 +34238,7 @@ } }, { - "id": 21303, + "id": 22537, "properties": { "facing": "south", "power": "4", @@ -34247,7 +34247,7 @@ } }, { - "id": 21304, + "id": 22538, "properties": { "facing": "south", "power": "4", @@ -34256,7 +34256,7 @@ } }, { - "id": 21305, + "id": 22539, "properties": { "facing": "south", "power": "4", @@ -34265,7 +34265,7 @@ } }, { - "id": 21306, + "id": 22540, "properties": { "facing": "south", "power": "4", @@ -34274,7 +34274,7 @@ } }, { - "id": 21307, + "id": 22541, "properties": { "facing": "south", "power": "5", @@ -34283,7 +34283,7 @@ } }, { - "id": 21308, + "id": 22542, "properties": { "facing": "south", "power": "5", @@ -34292,7 +34292,7 @@ } }, { - "id": 21309, + "id": 22543, "properties": { "facing": "south", "power": "5", @@ -34301,7 +34301,7 @@ } }, { - "id": 21310, + "id": 22544, "properties": { "facing": "south", "power": "5", @@ -34310,7 +34310,7 @@ } }, { - "id": 21311, + "id": 22545, "properties": { "facing": "south", "power": "5", @@ -34319,7 +34319,7 @@ } }, { - "id": 21312, + "id": 22546, "properties": { "facing": "south", "power": "5", @@ -34328,7 +34328,7 @@ } }, { - "id": 21313, + "id": 22547, "properties": { "facing": "south", "power": "6", @@ -34337,7 +34337,7 @@ } }, { - "id": 21314, + "id": 22548, "properties": { "facing": "south", "power": "6", @@ -34346,7 +34346,7 @@ } }, { - "id": 21315, + "id": 22549, "properties": { "facing": "south", "power": "6", @@ -34355,7 +34355,7 @@ } }, { - "id": 21316, + "id": 22550, "properties": { "facing": "south", "power": "6", @@ -34364,7 +34364,7 @@ } }, { - "id": 21317, + "id": 22551, "properties": { "facing": "south", "power": "6", @@ -34373,7 +34373,7 @@ } }, { - "id": 21318, + "id": 22552, "properties": { "facing": "south", "power": "6", @@ -34382,7 +34382,7 @@ } }, { - "id": 21319, + "id": 22553, "properties": { "facing": "south", "power": "7", @@ -34391,7 +34391,7 @@ } }, { - "id": 21320, + "id": 22554, "properties": { "facing": "south", "power": "7", @@ -34400,7 +34400,7 @@ } }, { - "id": 21321, + "id": 22555, "properties": { "facing": "south", "power": "7", @@ -34409,7 +34409,7 @@ } }, { - "id": 21322, + "id": 22556, "properties": { "facing": "south", "power": "7", @@ -34418,7 +34418,7 @@ } }, { - "id": 21323, + "id": 22557, "properties": { "facing": "south", "power": "7", @@ -34427,7 +34427,7 @@ } }, { - "id": 21324, + "id": 22558, "properties": { "facing": "south", "power": "7", @@ -34436,7 +34436,7 @@ } }, { - "id": 21325, + "id": 22559, "properties": { "facing": "south", "power": "8", @@ -34445,7 +34445,7 @@ } }, { - "id": 21326, + "id": 22560, "properties": { "facing": "south", "power": "8", @@ -34454,7 +34454,7 @@ } }, { - "id": 21327, + "id": 22561, "properties": { "facing": "south", "power": "8", @@ -34463,7 +34463,7 @@ } }, { - "id": 21328, + "id": 22562, "properties": { "facing": "south", "power": "8", @@ -34472,7 +34472,7 @@ } }, { - "id": 21329, + "id": 22563, "properties": { "facing": "south", "power": "8", @@ -34481,7 +34481,7 @@ } }, { - "id": 21330, + "id": 22564, "properties": { "facing": "south", "power": "8", @@ -34490,7 +34490,7 @@ } }, { - "id": 21331, + "id": 22565, "properties": { "facing": "south", "power": "9", @@ -34499,7 +34499,7 @@ } }, { - "id": 21332, + "id": 22566, "properties": { "facing": "south", "power": "9", @@ -34508,7 +34508,7 @@ } }, { - "id": 21333, + "id": 22567, "properties": { "facing": "south", "power": "9", @@ -34517,7 +34517,7 @@ } }, { - "id": 21334, + "id": 22568, "properties": { "facing": "south", "power": "9", @@ -34526,7 +34526,7 @@ } }, { - "id": 21335, + "id": 22569, "properties": { "facing": "south", "power": "9", @@ -34535,7 +34535,7 @@ } }, { - "id": 21336, + "id": 22570, "properties": { "facing": "south", "power": "9", @@ -34544,7 +34544,7 @@ } }, { - "id": 21337, + "id": 22571, "properties": { "facing": "south", "power": "10", @@ -34553,7 +34553,7 @@ } }, { - "id": 21338, + "id": 22572, "properties": { "facing": "south", "power": "10", @@ -34562,7 +34562,7 @@ } }, { - "id": 21339, + "id": 22573, "properties": { "facing": "south", "power": "10", @@ -34571,7 +34571,7 @@ } }, { - "id": 21340, + "id": 22574, "properties": { "facing": "south", "power": "10", @@ -34580,7 +34580,7 @@ } }, { - "id": 21341, + "id": 22575, "properties": { "facing": "south", "power": "10", @@ -34589,7 +34589,7 @@ } }, { - "id": 21342, + "id": 22576, "properties": { "facing": "south", "power": "10", @@ -34598,7 +34598,7 @@ } }, { - "id": 21343, + "id": 22577, "properties": { "facing": "south", "power": "11", @@ -34607,7 +34607,7 @@ } }, { - "id": 21344, + "id": 22578, "properties": { "facing": "south", "power": "11", @@ -34616,7 +34616,7 @@ } }, { - "id": 21345, + "id": 22579, "properties": { "facing": "south", "power": "11", @@ -34625,7 +34625,7 @@ } }, { - "id": 21346, + "id": 22580, "properties": { "facing": "south", "power": "11", @@ -34634,7 +34634,7 @@ } }, { - "id": 21347, + "id": 22581, "properties": { "facing": "south", "power": "11", @@ -34643,7 +34643,7 @@ } }, { - "id": 21348, + "id": 22582, "properties": { "facing": "south", "power": "11", @@ -34652,7 +34652,7 @@ } }, { - "id": 21349, + "id": 22583, "properties": { "facing": "south", "power": "12", @@ -34661,7 +34661,7 @@ } }, { - "id": 21350, + "id": 22584, "properties": { "facing": "south", "power": "12", @@ -34670,7 +34670,7 @@ } }, { - "id": 21351, + "id": 22585, "properties": { "facing": "south", "power": "12", @@ -34679,7 +34679,7 @@ } }, { - "id": 21352, + "id": 22586, "properties": { "facing": "south", "power": "12", @@ -34688,7 +34688,7 @@ } }, { - "id": 21353, + "id": 22587, "properties": { "facing": "south", "power": "12", @@ -34697,7 +34697,7 @@ } }, { - "id": 21354, + "id": 22588, "properties": { "facing": "south", "power": "12", @@ -34706,7 +34706,7 @@ } }, { - "id": 21355, + "id": 22589, "properties": { "facing": "south", "power": "13", @@ -34715,7 +34715,7 @@ } }, { - "id": 21356, + "id": 22590, "properties": { "facing": "south", "power": "13", @@ -34724,7 +34724,7 @@ } }, { - "id": 21357, + "id": 22591, "properties": { "facing": "south", "power": "13", @@ -34733,7 +34733,7 @@ } }, { - "id": 21358, + "id": 22592, "properties": { "facing": "south", "power": "13", @@ -34742,7 +34742,7 @@ } }, { - "id": 21359, + "id": 22593, "properties": { "facing": "south", "power": "13", @@ -34751,7 +34751,7 @@ } }, { - "id": 21360, + "id": 22594, "properties": { "facing": "south", "power": "13", @@ -34760,7 +34760,7 @@ } }, { - "id": 21361, + "id": 22595, "properties": { "facing": "south", "power": "14", @@ -34769,7 +34769,7 @@ } }, { - "id": 21362, + "id": 22596, "properties": { "facing": "south", "power": "14", @@ -34778,7 +34778,7 @@ } }, { - "id": 21363, + "id": 22597, "properties": { "facing": "south", "power": "14", @@ -34787,7 +34787,7 @@ } }, { - "id": 21364, + "id": 22598, "properties": { "facing": "south", "power": "14", @@ -34796,7 +34796,7 @@ } }, { - "id": 21365, + "id": 22599, "properties": { "facing": "south", "power": "14", @@ -34805,7 +34805,7 @@ } }, { - "id": 21366, + "id": 22600, "properties": { "facing": "south", "power": "14", @@ -34814,7 +34814,7 @@ } }, { - "id": 21367, + "id": 22601, "properties": { "facing": "south", "power": "15", @@ -34823,7 +34823,7 @@ } }, { - "id": 21368, + "id": 22602, "properties": { "facing": "south", "power": "15", @@ -34832,7 +34832,7 @@ } }, { - "id": 21369, + "id": 22603, "properties": { "facing": "south", "power": "15", @@ -34841,7 +34841,7 @@ } }, { - "id": 21370, + "id": 22604, "properties": { "facing": "south", "power": "15", @@ -34850,7 +34850,7 @@ } }, { - "id": 21371, + "id": 22605, "properties": { "facing": "south", "power": "15", @@ -34859,7 +34859,7 @@ } }, { - "id": 21372, + "id": 22606, "properties": { "facing": "south", "power": "15", @@ -34868,7 +34868,7 @@ } }, { - "id": 21373, + "id": 22607, "properties": { "facing": "west", "power": "0", @@ -34877,7 +34877,7 @@ } }, { - "id": 21374, + "id": 22608, "properties": { "facing": "west", "power": "0", @@ -34886,7 +34886,7 @@ } }, { - "id": 21375, + "id": 22609, "properties": { "facing": "west", "power": "0", @@ -34895,7 +34895,7 @@ } }, { - "id": 21376, + "id": 22610, "properties": { "facing": "west", "power": "0", @@ -34904,7 +34904,7 @@ } }, { - "id": 21377, + "id": 22611, "properties": { "facing": "west", "power": "0", @@ -34913,7 +34913,7 @@ } }, { - "id": 21378, + "id": 22612, "properties": { "facing": "west", "power": "0", @@ -34922,7 +34922,7 @@ } }, { - "id": 21379, + "id": 22613, "properties": { "facing": "west", "power": "1", @@ -34931,7 +34931,7 @@ } }, { - "id": 21380, + "id": 22614, "properties": { "facing": "west", "power": "1", @@ -34940,7 +34940,7 @@ } }, { - "id": 21381, + "id": 22615, "properties": { "facing": "west", "power": "1", @@ -34949,7 +34949,7 @@ } }, { - "id": 21382, + "id": 22616, "properties": { "facing": "west", "power": "1", @@ -34958,7 +34958,7 @@ } }, { - "id": 21383, + "id": 22617, "properties": { "facing": "west", "power": "1", @@ -34967,7 +34967,7 @@ } }, { - "id": 21384, + "id": 22618, "properties": { "facing": "west", "power": "1", @@ -34976,7 +34976,7 @@ } }, { - "id": 21385, + "id": 22619, "properties": { "facing": "west", "power": "2", @@ -34985,7 +34985,7 @@ } }, { - "id": 21386, + "id": 22620, "properties": { "facing": "west", "power": "2", @@ -34994,7 +34994,7 @@ } }, { - "id": 21387, + "id": 22621, "properties": { "facing": "west", "power": "2", @@ -35003,7 +35003,7 @@ } }, { - "id": 21388, + "id": 22622, "properties": { "facing": "west", "power": "2", @@ -35012,7 +35012,7 @@ } }, { - "id": 21389, + "id": 22623, "properties": { "facing": "west", "power": "2", @@ -35021,7 +35021,7 @@ } }, { - "id": 21390, + "id": 22624, "properties": { "facing": "west", "power": "2", @@ -35030,7 +35030,7 @@ } }, { - "id": 21391, + "id": 22625, "properties": { "facing": "west", "power": "3", @@ -35039,7 +35039,7 @@ } }, { - "id": 21392, + "id": 22626, "properties": { "facing": "west", "power": "3", @@ -35048,7 +35048,7 @@ } }, { - "id": 21393, + "id": 22627, "properties": { "facing": "west", "power": "3", @@ -35057,7 +35057,7 @@ } }, { - "id": 21394, + "id": 22628, "properties": { "facing": "west", "power": "3", @@ -35066,7 +35066,7 @@ } }, { - "id": 21395, + "id": 22629, "properties": { "facing": "west", "power": "3", @@ -35075,7 +35075,7 @@ } }, { - "id": 21396, + "id": 22630, "properties": { "facing": "west", "power": "3", @@ -35084,7 +35084,7 @@ } }, { - "id": 21397, + "id": 22631, "properties": { "facing": "west", "power": "4", @@ -35093,7 +35093,7 @@ } }, { - "id": 21398, + "id": 22632, "properties": { "facing": "west", "power": "4", @@ -35102,7 +35102,7 @@ } }, { - "id": 21399, + "id": 22633, "properties": { "facing": "west", "power": "4", @@ -35111,7 +35111,7 @@ } }, { - "id": 21400, + "id": 22634, "properties": { "facing": "west", "power": "4", @@ -35120,7 +35120,7 @@ } }, { - "id": 21401, + "id": 22635, "properties": { "facing": "west", "power": "4", @@ -35129,7 +35129,7 @@ } }, { - "id": 21402, + "id": 22636, "properties": { "facing": "west", "power": "4", @@ -35138,7 +35138,7 @@ } }, { - "id": 21403, + "id": 22637, "properties": { "facing": "west", "power": "5", @@ -35147,7 +35147,7 @@ } }, { - "id": 21404, + "id": 22638, "properties": { "facing": "west", "power": "5", @@ -35156,7 +35156,7 @@ } }, { - "id": 21405, + "id": 22639, "properties": { "facing": "west", "power": "5", @@ -35165,7 +35165,7 @@ } }, { - "id": 21406, + "id": 22640, "properties": { "facing": "west", "power": "5", @@ -35174,7 +35174,7 @@ } }, { - "id": 21407, + "id": 22641, "properties": { "facing": "west", "power": "5", @@ -35183,7 +35183,7 @@ } }, { - "id": 21408, + "id": 22642, "properties": { "facing": "west", "power": "5", @@ -35192,7 +35192,7 @@ } }, { - "id": 21409, + "id": 22643, "properties": { "facing": "west", "power": "6", @@ -35201,7 +35201,7 @@ } }, { - "id": 21410, + "id": 22644, "properties": { "facing": "west", "power": "6", @@ -35210,7 +35210,7 @@ } }, { - "id": 21411, + "id": 22645, "properties": { "facing": "west", "power": "6", @@ -35219,7 +35219,7 @@ } }, { - "id": 21412, + "id": 22646, "properties": { "facing": "west", "power": "6", @@ -35228,7 +35228,7 @@ } }, { - "id": 21413, + "id": 22647, "properties": { "facing": "west", "power": "6", @@ -35237,7 +35237,7 @@ } }, { - "id": 21414, + "id": 22648, "properties": { "facing": "west", "power": "6", @@ -35246,7 +35246,7 @@ } }, { - "id": 21415, + "id": 22649, "properties": { "facing": "west", "power": "7", @@ -35255,7 +35255,7 @@ } }, { - "id": 21416, + "id": 22650, "properties": { "facing": "west", "power": "7", @@ -35264,7 +35264,7 @@ } }, { - "id": 21417, + "id": 22651, "properties": { "facing": "west", "power": "7", @@ -35273,7 +35273,7 @@ } }, { - "id": 21418, + "id": 22652, "properties": { "facing": "west", "power": "7", @@ -35282,7 +35282,7 @@ } }, { - "id": 21419, + "id": 22653, "properties": { "facing": "west", "power": "7", @@ -35291,7 +35291,7 @@ } }, { - "id": 21420, + "id": 22654, "properties": { "facing": "west", "power": "7", @@ -35300,7 +35300,7 @@ } }, { - "id": 21421, + "id": 22655, "properties": { "facing": "west", "power": "8", @@ -35309,7 +35309,7 @@ } }, { - "id": 21422, + "id": 22656, "properties": { "facing": "west", "power": "8", @@ -35318,7 +35318,7 @@ } }, { - "id": 21423, + "id": 22657, "properties": { "facing": "west", "power": "8", @@ -35327,7 +35327,7 @@ } }, { - "id": 21424, + "id": 22658, "properties": { "facing": "west", "power": "8", @@ -35336,7 +35336,7 @@ } }, { - "id": 21425, + "id": 22659, "properties": { "facing": "west", "power": "8", @@ -35345,7 +35345,7 @@ } }, { - "id": 21426, + "id": 22660, "properties": { "facing": "west", "power": "8", @@ -35354,7 +35354,7 @@ } }, { - "id": 21427, + "id": 22661, "properties": { "facing": "west", "power": "9", @@ -35363,7 +35363,7 @@ } }, { - "id": 21428, + "id": 22662, "properties": { "facing": "west", "power": "9", @@ -35372,7 +35372,7 @@ } }, { - "id": 21429, + "id": 22663, "properties": { "facing": "west", "power": "9", @@ -35381,7 +35381,7 @@ } }, { - "id": 21430, + "id": 22664, "properties": { "facing": "west", "power": "9", @@ -35390,7 +35390,7 @@ } }, { - "id": 21431, + "id": 22665, "properties": { "facing": "west", "power": "9", @@ -35399,7 +35399,7 @@ } }, { - "id": 21432, + "id": 22666, "properties": { "facing": "west", "power": "9", @@ -35408,7 +35408,7 @@ } }, { - "id": 21433, + "id": 22667, "properties": { "facing": "west", "power": "10", @@ -35417,7 +35417,7 @@ } }, { - "id": 21434, + "id": 22668, "properties": { "facing": "west", "power": "10", @@ -35426,7 +35426,7 @@ } }, { - "id": 21435, + "id": 22669, "properties": { "facing": "west", "power": "10", @@ -35435,7 +35435,7 @@ } }, { - "id": 21436, + "id": 22670, "properties": { "facing": "west", "power": "10", @@ -35444,7 +35444,7 @@ } }, { - "id": 21437, + "id": 22671, "properties": { "facing": "west", "power": "10", @@ -35453,7 +35453,7 @@ } }, { - "id": 21438, + "id": 22672, "properties": { "facing": "west", "power": "10", @@ -35462,7 +35462,7 @@ } }, { - "id": 21439, + "id": 22673, "properties": { "facing": "west", "power": "11", @@ -35471,7 +35471,7 @@ } }, { - "id": 21440, + "id": 22674, "properties": { "facing": "west", "power": "11", @@ -35480,7 +35480,7 @@ } }, { - "id": 21441, + "id": 22675, "properties": { "facing": "west", "power": "11", @@ -35489,7 +35489,7 @@ } }, { - "id": 21442, + "id": 22676, "properties": { "facing": "west", "power": "11", @@ -35498,7 +35498,7 @@ } }, { - "id": 21443, + "id": 22677, "properties": { "facing": "west", "power": "11", @@ -35507,7 +35507,7 @@ } }, { - "id": 21444, + "id": 22678, "properties": { "facing": "west", "power": "11", @@ -35516,7 +35516,7 @@ } }, { - "id": 21445, + "id": 22679, "properties": { "facing": "west", "power": "12", @@ -35525,7 +35525,7 @@ } }, { - "id": 21446, + "id": 22680, "properties": { "facing": "west", "power": "12", @@ -35534,7 +35534,7 @@ } }, { - "id": 21447, + "id": 22681, "properties": { "facing": "west", "power": "12", @@ -35543,7 +35543,7 @@ } }, { - "id": 21448, + "id": 22682, "properties": { "facing": "west", "power": "12", @@ -35552,7 +35552,7 @@ } }, { - "id": 21449, + "id": 22683, "properties": { "facing": "west", "power": "12", @@ -35561,7 +35561,7 @@ } }, { - "id": 21450, + "id": 22684, "properties": { "facing": "west", "power": "12", @@ -35570,7 +35570,7 @@ } }, { - "id": 21451, + "id": 22685, "properties": { "facing": "west", "power": "13", @@ -35579,7 +35579,7 @@ } }, { - "id": 21452, + "id": 22686, "properties": { "facing": "west", "power": "13", @@ -35588,7 +35588,7 @@ } }, { - "id": 21453, + "id": 22687, "properties": { "facing": "west", "power": "13", @@ -35597,7 +35597,7 @@ } }, { - "id": 21454, + "id": 22688, "properties": { "facing": "west", "power": "13", @@ -35606,7 +35606,7 @@ } }, { - "id": 21455, + "id": 22689, "properties": { "facing": "west", "power": "13", @@ -35615,7 +35615,7 @@ } }, { - "id": 21456, + "id": 22690, "properties": { "facing": "west", "power": "13", @@ -35624,7 +35624,7 @@ } }, { - "id": 21457, + "id": 22691, "properties": { "facing": "west", "power": "14", @@ -35633,7 +35633,7 @@ } }, { - "id": 21458, + "id": 22692, "properties": { "facing": "west", "power": "14", @@ -35642,7 +35642,7 @@ } }, { - "id": 21459, + "id": 22693, "properties": { "facing": "west", "power": "14", @@ -35651,7 +35651,7 @@ } }, { - "id": 21460, + "id": 22694, "properties": { "facing": "west", "power": "14", @@ -35660,7 +35660,7 @@ } }, { - "id": 21461, + "id": 22695, "properties": { "facing": "west", "power": "14", @@ -35669,7 +35669,7 @@ } }, { - "id": 21462, + "id": 22696, "properties": { "facing": "west", "power": "14", @@ -35678,7 +35678,7 @@ } }, { - "id": 21463, + "id": 22697, "properties": { "facing": "west", "power": "15", @@ -35687,7 +35687,7 @@ } }, { - "id": 21464, + "id": 22698, "properties": { "facing": "west", "power": "15", @@ -35696,7 +35696,7 @@ } }, { - "id": 21465, + "id": 22699, "properties": { "facing": "west", "power": "15", @@ -35705,7 +35705,7 @@ } }, { - "id": 21466, + "id": 22700, "properties": { "facing": "west", "power": "15", @@ -35714,7 +35714,7 @@ } }, { - "id": 21467, + "id": 22701, "properties": { "facing": "west", "power": "15", @@ -35723,7 +35723,7 @@ } }, { - "id": 21468, + "id": 22702, "properties": { "facing": "west", "power": "15", @@ -35732,7 +35732,7 @@ } }, { - "id": 21469, + "id": 22703, "properties": { "facing": "east", "power": "0", @@ -35741,7 +35741,7 @@ } }, { - "id": 21470, + "id": 22704, "properties": { "facing": "east", "power": "0", @@ -35750,7 +35750,7 @@ } }, { - "id": 21471, + "id": 22705, "properties": { "facing": "east", "power": "0", @@ -35759,7 +35759,7 @@ } }, { - "id": 21472, + "id": 22706, "properties": { "facing": "east", "power": "0", @@ -35768,7 +35768,7 @@ } }, { - "id": 21473, + "id": 22707, "properties": { "facing": "east", "power": "0", @@ -35777,7 +35777,7 @@ } }, { - "id": 21474, + "id": 22708, "properties": { "facing": "east", "power": "0", @@ -35786,7 +35786,7 @@ } }, { - "id": 21475, + "id": 22709, "properties": { "facing": "east", "power": "1", @@ -35795,7 +35795,7 @@ } }, { - "id": 21476, + "id": 22710, "properties": { "facing": "east", "power": "1", @@ -35804,7 +35804,7 @@ } }, { - "id": 21477, + "id": 22711, "properties": { "facing": "east", "power": "1", @@ -35813,7 +35813,7 @@ } }, { - "id": 21478, + "id": 22712, "properties": { "facing": "east", "power": "1", @@ -35822,7 +35822,7 @@ } }, { - "id": 21479, + "id": 22713, "properties": { "facing": "east", "power": "1", @@ -35831,7 +35831,7 @@ } }, { - "id": 21480, + "id": 22714, "properties": { "facing": "east", "power": "1", @@ -35840,7 +35840,7 @@ } }, { - "id": 21481, + "id": 22715, "properties": { "facing": "east", "power": "2", @@ -35849,7 +35849,7 @@ } }, { - "id": 21482, + "id": 22716, "properties": { "facing": "east", "power": "2", @@ -35858,7 +35858,7 @@ } }, { - "id": 21483, + "id": 22717, "properties": { "facing": "east", "power": "2", @@ -35867,7 +35867,7 @@ } }, { - "id": 21484, + "id": 22718, "properties": { "facing": "east", "power": "2", @@ -35876,7 +35876,7 @@ } }, { - "id": 21485, + "id": 22719, "properties": { "facing": "east", "power": "2", @@ -35885,7 +35885,7 @@ } }, { - "id": 21486, + "id": 22720, "properties": { "facing": "east", "power": "2", @@ -35894,7 +35894,7 @@ } }, { - "id": 21487, + "id": 22721, "properties": { "facing": "east", "power": "3", @@ -35903,7 +35903,7 @@ } }, { - "id": 21488, + "id": 22722, "properties": { "facing": "east", "power": "3", @@ -35912,7 +35912,7 @@ } }, { - "id": 21489, + "id": 22723, "properties": { "facing": "east", "power": "3", @@ -35921,7 +35921,7 @@ } }, { - "id": 21490, + "id": 22724, "properties": { "facing": "east", "power": "3", @@ -35930,7 +35930,7 @@ } }, { - "id": 21491, + "id": 22725, "properties": { "facing": "east", "power": "3", @@ -35939,7 +35939,7 @@ } }, { - "id": 21492, + "id": 22726, "properties": { "facing": "east", "power": "3", @@ -35948,7 +35948,7 @@ } }, { - "id": 21493, + "id": 22727, "properties": { "facing": "east", "power": "4", @@ -35957,7 +35957,7 @@ } }, { - "id": 21494, + "id": 22728, "properties": { "facing": "east", "power": "4", @@ -35966,7 +35966,7 @@ } }, { - "id": 21495, + "id": 22729, "properties": { "facing": "east", "power": "4", @@ -35975,7 +35975,7 @@ } }, { - "id": 21496, + "id": 22730, "properties": { "facing": "east", "power": "4", @@ -35984,7 +35984,7 @@ } }, { - "id": 21497, + "id": 22731, "properties": { "facing": "east", "power": "4", @@ -35993,7 +35993,7 @@ } }, { - "id": 21498, + "id": 22732, "properties": { "facing": "east", "power": "4", @@ -36002,7 +36002,7 @@ } }, { - "id": 21499, + "id": 22733, "properties": { "facing": "east", "power": "5", @@ -36011,7 +36011,7 @@ } }, { - "id": 21500, + "id": 22734, "properties": { "facing": "east", "power": "5", @@ -36020,7 +36020,7 @@ } }, { - "id": 21501, + "id": 22735, "properties": { "facing": "east", "power": "5", @@ -36029,7 +36029,7 @@ } }, { - "id": 21502, + "id": 22736, "properties": { "facing": "east", "power": "5", @@ -36038,7 +36038,7 @@ } }, { - "id": 21503, + "id": 22737, "properties": { "facing": "east", "power": "5", @@ -36047,7 +36047,7 @@ } }, { - "id": 21504, + "id": 22738, "properties": { "facing": "east", "power": "5", @@ -36056,7 +36056,7 @@ } }, { - "id": 21505, + "id": 22739, "properties": { "facing": "east", "power": "6", @@ -36065,7 +36065,7 @@ } }, { - "id": 21506, + "id": 22740, "properties": { "facing": "east", "power": "6", @@ -36074,7 +36074,7 @@ } }, { - "id": 21507, + "id": 22741, "properties": { "facing": "east", "power": "6", @@ -36083,7 +36083,7 @@ } }, { - "id": 21508, + "id": 22742, "properties": { "facing": "east", "power": "6", @@ -36092,7 +36092,7 @@ } }, { - "id": 21509, + "id": 22743, "properties": { "facing": "east", "power": "6", @@ -36101,7 +36101,7 @@ } }, { - "id": 21510, + "id": 22744, "properties": { "facing": "east", "power": "6", @@ -36110,7 +36110,7 @@ } }, { - "id": 21511, + "id": 22745, "properties": { "facing": "east", "power": "7", @@ -36119,7 +36119,7 @@ } }, { - "id": 21512, + "id": 22746, "properties": { "facing": "east", "power": "7", @@ -36128,7 +36128,7 @@ } }, { - "id": 21513, + "id": 22747, "properties": { "facing": "east", "power": "7", @@ -36137,7 +36137,7 @@ } }, { - "id": 21514, + "id": 22748, "properties": { "facing": "east", "power": "7", @@ -36146,7 +36146,7 @@ } }, { - "id": 21515, + "id": 22749, "properties": { "facing": "east", "power": "7", @@ -36155,7 +36155,7 @@ } }, { - "id": 21516, + "id": 22750, "properties": { "facing": "east", "power": "7", @@ -36164,7 +36164,7 @@ } }, { - "id": 21517, + "id": 22751, "properties": { "facing": "east", "power": "8", @@ -36173,7 +36173,7 @@ } }, { - "id": 21518, + "id": 22752, "properties": { "facing": "east", "power": "8", @@ -36182,7 +36182,7 @@ } }, { - "id": 21519, + "id": 22753, "properties": { "facing": "east", "power": "8", @@ -36191,7 +36191,7 @@ } }, { - "id": 21520, + "id": 22754, "properties": { "facing": "east", "power": "8", @@ -36200,7 +36200,7 @@ } }, { - "id": 21521, + "id": 22755, "properties": { "facing": "east", "power": "8", @@ -36209,7 +36209,7 @@ } }, { - "id": 21522, + "id": 22756, "properties": { "facing": "east", "power": "8", @@ -36218,7 +36218,7 @@ } }, { - "id": 21523, + "id": 22757, "properties": { "facing": "east", "power": "9", @@ -36227,7 +36227,7 @@ } }, { - "id": 21524, + "id": 22758, "properties": { "facing": "east", "power": "9", @@ -36236,7 +36236,7 @@ } }, { - "id": 21525, + "id": 22759, "properties": { "facing": "east", "power": "9", @@ -36245,7 +36245,7 @@ } }, { - "id": 21526, + "id": 22760, "properties": { "facing": "east", "power": "9", @@ -36254,7 +36254,7 @@ } }, { - "id": 21527, + "id": 22761, "properties": { "facing": "east", "power": "9", @@ -36263,7 +36263,7 @@ } }, { - "id": 21528, + "id": 22762, "properties": { "facing": "east", "power": "9", @@ -36272,7 +36272,7 @@ } }, { - "id": 21529, + "id": 22763, "properties": { "facing": "east", "power": "10", @@ -36281,7 +36281,7 @@ } }, { - "id": 21530, + "id": 22764, "properties": { "facing": "east", "power": "10", @@ -36290,7 +36290,7 @@ } }, { - "id": 21531, + "id": 22765, "properties": { "facing": "east", "power": "10", @@ -36299,7 +36299,7 @@ } }, { - "id": 21532, + "id": 22766, "properties": { "facing": "east", "power": "10", @@ -36308,7 +36308,7 @@ } }, { - "id": 21533, + "id": 22767, "properties": { "facing": "east", "power": "10", @@ -36317,7 +36317,7 @@ } }, { - "id": 21534, + "id": 22768, "properties": { "facing": "east", "power": "10", @@ -36326,7 +36326,7 @@ } }, { - "id": 21535, + "id": 22769, "properties": { "facing": "east", "power": "11", @@ -36335,7 +36335,7 @@ } }, { - "id": 21536, + "id": 22770, "properties": { "facing": "east", "power": "11", @@ -36344,7 +36344,7 @@ } }, { - "id": 21537, + "id": 22771, "properties": { "facing": "east", "power": "11", @@ -36353,7 +36353,7 @@ } }, { - "id": 21538, + "id": 22772, "properties": { "facing": "east", "power": "11", @@ -36362,7 +36362,7 @@ } }, { - "id": 21539, + "id": 22773, "properties": { "facing": "east", "power": "11", @@ -36371,7 +36371,7 @@ } }, { - "id": 21540, + "id": 22774, "properties": { "facing": "east", "power": "11", @@ -36380,7 +36380,7 @@ } }, { - "id": 21541, + "id": 22775, "properties": { "facing": "east", "power": "12", @@ -36389,7 +36389,7 @@ } }, { - "id": 21542, + "id": 22776, "properties": { "facing": "east", "power": "12", @@ -36398,7 +36398,7 @@ } }, { - "id": 21543, + "id": 22777, "properties": { "facing": "east", "power": "12", @@ -36407,7 +36407,7 @@ } }, { - "id": 21544, + "id": 22778, "properties": { "facing": "east", "power": "12", @@ -36416,7 +36416,7 @@ } }, { - "id": 21545, + "id": 22779, "properties": { "facing": "east", "power": "12", @@ -36425,7 +36425,7 @@ } }, { - "id": 21546, + "id": 22780, "properties": { "facing": "east", "power": "12", @@ -36434,7 +36434,7 @@ } }, { - "id": 21547, + "id": 22781, "properties": { "facing": "east", "power": "13", @@ -36443,7 +36443,7 @@ } }, { - "id": 21548, + "id": 22782, "properties": { "facing": "east", "power": "13", @@ -36452,7 +36452,7 @@ } }, { - "id": 21549, + "id": 22783, "properties": { "facing": "east", "power": "13", @@ -36461,7 +36461,7 @@ } }, { - "id": 21550, + "id": 22784, "properties": { "facing": "east", "power": "13", @@ -36470,7 +36470,7 @@ } }, { - "id": 21551, + "id": 22785, "properties": { "facing": "east", "power": "13", @@ -36479,7 +36479,7 @@ } }, { - "id": 21552, + "id": 22786, "properties": { "facing": "east", "power": "13", @@ -36488,7 +36488,7 @@ } }, { - "id": 21553, + "id": 22787, "properties": { "facing": "east", "power": "14", @@ -36497,7 +36497,7 @@ } }, { - "id": 21554, + "id": 22788, "properties": { "facing": "east", "power": "14", @@ -36506,7 +36506,7 @@ } }, { - "id": 21555, + "id": 22789, "properties": { "facing": "east", "power": "14", @@ -36515,7 +36515,7 @@ } }, { - "id": 21556, + "id": 22790, "properties": { "facing": "east", "power": "14", @@ -36524,7 +36524,7 @@ } }, { - "id": 21557, + "id": 22791, "properties": { "facing": "east", "power": "14", @@ -36533,7 +36533,7 @@ } }, { - "id": 21558, + "id": 22792, "properties": { "facing": "east", "power": "14", @@ -36542,7 +36542,7 @@ } }, { - "id": 21559, + "id": 22793, "properties": { "facing": "east", "power": "15", @@ -36551,7 +36551,7 @@ } }, { - "id": 21560, + "id": 22794, "properties": { "facing": "east", "power": "15", @@ -36560,7 +36560,7 @@ } }, { - "id": 21561, + "id": 22795, "properties": { "facing": "east", "power": "15", @@ -36569,7 +36569,7 @@ } }, { - "id": 21562, + "id": 22796, "properties": { "facing": "east", "power": "15", @@ -36578,7 +36578,7 @@ } }, { - "id": 21563, + "id": 22797, "properties": { "facing": "east", "power": "15", @@ -36587,7 +36587,7 @@ } }, { - "id": 21564, + "id": 22798, "properties": { "facing": "east", "power": "15", @@ -37167,25 +37167,25 @@ "states": [ { "default": true, - "id": 5867, + "id": 5866, "properties": { "facing": "north" } }, { - "id": 5868, + "id": 5867, "properties": { "facing": "south" } }, { - "id": 5869, + "id": 5868, "properties": { "facing": "west" } }, { - "id": 5870, + "id": 5869, "properties": { "facing": "east" } @@ -37245,7 +37245,7 @@ }, "states": [ { - "id": 22455, + "id": 24769, "properties": { "age": "0", "berries": "true" @@ -37253,357 +37253,357 @@ }, { "default": true, - "id": 22456, + "id": 24770, "properties": { "age": "0", "berries": "false" } }, { - "id": 22457, + "id": 24771, "properties": { "age": "1", "berries": "true" } }, { - "id": 22458, + "id": 24772, "properties": { "age": "1", "berries": "false" } }, { - "id": 22459, + "id": 24773, "properties": { "age": "2", "berries": "true" } }, { - "id": 22460, + "id": 24774, "properties": { "age": "2", "berries": "false" } }, { - "id": 22461, + "id": 24775, "properties": { "age": "3", "berries": "true" } }, { - "id": 22462, + "id": 24776, "properties": { "age": "3", "berries": "false" } }, { - "id": 22463, + "id": 24777, "properties": { "age": "4", "berries": "true" } }, { - "id": 22464, + "id": 24778, "properties": { "age": "4", "berries": "false" } }, { - "id": 22465, + "id": 24779, "properties": { "age": "5", "berries": "true" } }, { - "id": 22466, + "id": 24780, "properties": { "age": "5", "berries": "false" } }, { - "id": 22467, + "id": 24781, "properties": { "age": "6", "berries": "true" } }, { - "id": 22468, + "id": 24782, "properties": { "age": "6", "berries": "false" } }, { - "id": 22469, + "id": 24783, "properties": { "age": "7", "berries": "true" } }, { - "id": 22470, + "id": 24784, "properties": { "age": "7", "berries": "false" } }, { - "id": 22471, + "id": 24785, "properties": { "age": "8", "berries": "true" } }, { - "id": 22472, + "id": 24786, "properties": { "age": "8", "berries": "false" } }, { - "id": 22473, + "id": 24787, "properties": { "age": "9", "berries": "true" } }, { - "id": 22474, + "id": 24788, "properties": { "age": "9", "berries": "false" } }, { - "id": 22475, + "id": 24789, "properties": { "age": "10", "berries": "true" } }, { - "id": 22476, + "id": 24790, "properties": { "age": "10", "berries": "false" } }, { - "id": 22477, + "id": 24791, "properties": { "age": "11", "berries": "true" } }, { - "id": 22478, + "id": 24792, "properties": { "age": "11", "berries": "false" } }, { - "id": 22479, + "id": 24793, "properties": { "age": "12", "berries": "true" } }, { - "id": 22480, + "id": 24794, "properties": { "age": "12", "berries": "false" } }, { - "id": 22481, + "id": 24795, "properties": { "age": "13", "berries": "true" } }, { - "id": 22482, + "id": 24796, "properties": { "age": "13", "berries": "false" } }, { - "id": 22483, + "id": 24797, "properties": { "age": "14", "berries": "true" } }, { - "id": 22484, + "id": 24798, "properties": { "age": "14", "berries": "false" } }, { - "id": 22485, + "id": 24799, "properties": { "age": "15", "berries": "true" } }, { - "id": 22486, + "id": 24800, "properties": { "age": "15", "berries": "false" } }, { - "id": 22487, + "id": 24801, "properties": { "age": "16", "berries": "true" } }, { - "id": 22488, + "id": 24802, "properties": { "age": "16", "berries": "false" } }, { - "id": 22489, + "id": 24803, "properties": { "age": "17", "berries": "true" } }, { - "id": 22490, + "id": 24804, "properties": { "age": "17", "berries": "false" } }, { - "id": 22491, + "id": 24805, "properties": { "age": "18", "berries": "true" } }, { - "id": 22492, + "id": 24806, "properties": { "age": "18", "berries": "false" } }, { - "id": 22493, + "id": 24807, "properties": { "age": "19", "berries": "true" } }, { - "id": 22494, + "id": 24808, "properties": { "age": "19", "berries": "false" } }, { - "id": 22495, + "id": 24809, "properties": { "age": "20", "berries": "true" } }, { - "id": 22496, + "id": 24810, "properties": { "age": "20", "berries": "false" } }, { - "id": 22497, + "id": 24811, "properties": { "age": "21", "berries": "true" } }, { - "id": 22498, + "id": 24812, "properties": { "age": "21", "berries": "false" } }, { - "id": 22499, + "id": 24813, "properties": { "age": "22", "berries": "true" } }, { - "id": 22500, + "id": 24814, "properties": { "age": "22", "berries": "false" } }, { - "id": 22501, + "id": 24815, "properties": { "age": "23", "berries": "true" } }, { - "id": 22502, + "id": 24816, "properties": { "age": "23", "berries": "false" } }, { - "id": 22503, + "id": 24817, "properties": { "age": "24", "berries": "true" } }, { - "id": 22504, + "id": 24818, "properties": { "age": "24", "berries": "false" } }, { - "id": 22505, + "id": 24819, "properties": { "age": "25", "berries": "true" } }, { - "id": 22506, + "id": 24820, "properties": { "age": "25", "berries": "false" @@ -37620,14 +37620,14 @@ }, "states": [ { - "id": 22507, + "id": 24821, "properties": { "berries": "true" } }, { "default": true, - "id": 22508, + "id": 24822, "properties": { "berries": "false" } @@ -37648,21 +37648,21 @@ }, "states": [ { - "id": 6774, + "id": 6773, "properties": { "axis": "x", "waterlogged": "true" } }, { - "id": 6775, + "id": 6774, "properties": { "axis": "x", "waterlogged": "false" } }, { - "id": 6776, + "id": 6775, "properties": { "axis": "y", "waterlogged": "true" @@ -37670,21 +37670,21 @@ }, { "default": true, - "id": 6777, + "id": 6776, "properties": { "axis": "y", "waterlogged": "false" } }, { - "id": 6778, + "id": 6777, "properties": { "axis": "z", "waterlogged": "true" } }, { - "id": 6779, + "id": 6778, "properties": { "axis": "z", "waterlogged": "false" @@ -41301,7 +41301,7 @@ }, "states": [ { - "id": 6282, + "id": 6281, "properties": { "facing": "north", "half": "top", @@ -41311,7 +41311,7 @@ } }, { - "id": 6283, + "id": 6282, "properties": { "facing": "north", "half": "top", @@ -41320,6 +41320,16 @@ "waterlogged": "false" } }, + { + "id": 6283, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6284, "properties": { @@ -41327,7 +41337,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41335,9 +41345,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41347,7 +41357,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41356,8 +41366,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41367,17 +41377,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6289, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41387,7 +41397,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41396,8 +41406,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41407,7 +41417,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41415,23 +41425,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6294, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6295, "properties": { "facing": "north", "half": "bottom", @@ -41441,7 +41441,7 @@ } }, { - "id": 6296, + "id": 6295, "properties": { "facing": "north", "half": "bottom", @@ -41452,7 +41452,7 @@ }, { "default": true, - "id": 6297, + "id": 6296, "properties": { "facing": "north", "half": "bottom", @@ -41462,7 +41462,7 @@ } }, { - "id": 6298, + "id": 6297, "properties": { "facing": "south", "half": "top", @@ -41472,7 +41472,7 @@ } }, { - "id": 6299, + "id": 6298, "properties": { "facing": "south", "half": "top", @@ -41481,6 +41481,16 @@ "waterlogged": "false" } }, + { + "id": 6299, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6300, "properties": { @@ -41488,7 +41498,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41496,9 +41506,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41508,7 +41518,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41517,8 +41527,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41528,17 +41538,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6305, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41548,7 +41558,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41557,8 +41567,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41568,7 +41578,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41576,9 +41586,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41588,7 +41598,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41597,8 +41607,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41608,17 +41618,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6313, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41628,7 +41638,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41637,8 +41647,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41648,7 +41658,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41656,9 +41666,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41668,7 +41678,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41677,8 +41687,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41688,17 +41698,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6321, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41708,7 +41718,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41717,8 +41727,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41728,7 +41738,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41736,9 +41746,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41748,7 +41758,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41757,8 +41767,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41768,17 +41778,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6329, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41788,7 +41798,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41797,8 +41807,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41808,7 +41818,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41816,9 +41826,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -41828,7 +41838,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41837,8 +41847,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41848,17 +41858,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6337, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -41868,7 +41878,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41877,8 +41887,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -41888,7 +41898,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -41896,23 +41906,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6342, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6343, "properties": { "facing": "east", "half": "bottom", @@ -41922,7 +41922,7 @@ } }, { - "id": 6344, + "id": 6343, "properties": { "facing": "east", "half": "bottom", @@ -41932,7 +41932,7 @@ } }, { - "id": 6345, + "id": 6344, "properties": { "facing": "east", "half": "bottom", @@ -45479,11 +45479,19 @@ } ] }, + "minecraft:chiseled_copper": { + "states": [ + { + "default": true, + "id": 22951 + } + ] + }, "minecraft:chiseled_deepslate": { "states": [ { "default": true, - "id": 24237 + "id": 26551 } ] }, @@ -45531,7 +45539,23 @@ "states": [ { "default": true, - "id": 6541 + "id": 6540 + } + ] + }, + "minecraft:chiseled_tuff": { + "states": [ + { + "default": true, + "id": 21903 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "states": [ + { + "default": true, + "id": 22315 } ] }, @@ -46357,7 +46381,7 @@ "states": [ { "default": true, - "id": 22593 + "id": 24907 } ] }, @@ -46375,21 +46399,21 @@ }, "states": [ { - "id": 22674, + "id": 24988, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22675, + "id": 24989, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22676, + "id": 24990, "properties": { "type": "bottom", "waterlogged": "true" @@ -46397,21 +46421,21 @@ }, { "default": true, - "id": 22677, + "id": 24991, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22678, + "id": 24992, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22679, + "id": 24993, "properties": { "type": "double", "waterlogged": "false" @@ -46445,7 +46469,7 @@ }, "states": [ { - "id": 22594, + "id": 24908, "properties": { "facing": "north", "half": "top", @@ -46454,7 +46478,7 @@ } }, { - "id": 22595, + "id": 24909, "properties": { "facing": "north", "half": "top", @@ -46463,7 +46487,7 @@ } }, { - "id": 22596, + "id": 24910, "properties": { "facing": "north", "half": "top", @@ -46472,7 +46496,7 @@ } }, { - "id": 22597, + "id": 24911, "properties": { "facing": "north", "half": "top", @@ -46481,7 +46505,7 @@ } }, { - "id": 22598, + "id": 24912, "properties": { "facing": "north", "half": "top", @@ -46490,7 +46514,7 @@ } }, { - "id": 22599, + "id": 24913, "properties": { "facing": "north", "half": "top", @@ -46499,7 +46523,7 @@ } }, { - "id": 22600, + "id": 24914, "properties": { "facing": "north", "half": "top", @@ -46508,7 +46532,7 @@ } }, { - "id": 22601, + "id": 24915, "properties": { "facing": "north", "half": "top", @@ -46517,7 +46541,7 @@ } }, { - "id": 22602, + "id": 24916, "properties": { "facing": "north", "half": "top", @@ -46526,7 +46550,7 @@ } }, { - "id": 22603, + "id": 24917, "properties": { "facing": "north", "half": "top", @@ -46535,7 +46559,7 @@ } }, { - "id": 22604, + "id": 24918, "properties": { "facing": "north", "half": "bottom", @@ -46545,7 +46569,7 @@ }, { "default": true, - "id": 22605, + "id": 24919, "properties": { "facing": "north", "half": "bottom", @@ -46554,7 +46578,7 @@ } }, { - "id": 22606, + "id": 24920, "properties": { "facing": "north", "half": "bottom", @@ -46563,7 +46587,7 @@ } }, { - "id": 22607, + "id": 24921, "properties": { "facing": "north", "half": "bottom", @@ -46572,7 +46596,7 @@ } }, { - "id": 22608, + "id": 24922, "properties": { "facing": "north", "half": "bottom", @@ -46581,7 +46605,7 @@ } }, { - "id": 22609, + "id": 24923, "properties": { "facing": "north", "half": "bottom", @@ -46590,7 +46614,7 @@ } }, { - "id": 22610, + "id": 24924, "properties": { "facing": "north", "half": "bottom", @@ -46599,7 +46623,7 @@ } }, { - "id": 22611, + "id": 24925, "properties": { "facing": "north", "half": "bottom", @@ -46608,7 +46632,7 @@ } }, { - "id": 22612, + "id": 24926, "properties": { "facing": "north", "half": "bottom", @@ -46617,7 +46641,7 @@ } }, { - "id": 22613, + "id": 24927, "properties": { "facing": "north", "half": "bottom", @@ -46626,7 +46650,7 @@ } }, { - "id": 22614, + "id": 24928, "properties": { "facing": "south", "half": "top", @@ -46635,7 +46659,7 @@ } }, { - "id": 22615, + "id": 24929, "properties": { "facing": "south", "half": "top", @@ -46644,7 +46668,7 @@ } }, { - "id": 22616, + "id": 24930, "properties": { "facing": "south", "half": "top", @@ -46653,7 +46677,7 @@ } }, { - "id": 22617, + "id": 24931, "properties": { "facing": "south", "half": "top", @@ -46662,7 +46686,7 @@ } }, { - "id": 22618, + "id": 24932, "properties": { "facing": "south", "half": "top", @@ -46671,7 +46695,7 @@ } }, { - "id": 22619, + "id": 24933, "properties": { "facing": "south", "half": "top", @@ -46680,7 +46704,7 @@ } }, { - "id": 22620, + "id": 24934, "properties": { "facing": "south", "half": "top", @@ -46689,7 +46713,7 @@ } }, { - "id": 22621, + "id": 24935, "properties": { "facing": "south", "half": "top", @@ -46698,7 +46722,7 @@ } }, { - "id": 22622, + "id": 24936, "properties": { "facing": "south", "half": "top", @@ -46707,7 +46731,7 @@ } }, { - "id": 22623, + "id": 24937, "properties": { "facing": "south", "half": "top", @@ -46716,7 +46740,7 @@ } }, { - "id": 22624, + "id": 24938, "properties": { "facing": "south", "half": "bottom", @@ -46725,7 +46749,7 @@ } }, { - "id": 22625, + "id": 24939, "properties": { "facing": "south", "half": "bottom", @@ -46734,7 +46758,7 @@ } }, { - "id": 22626, + "id": 24940, "properties": { "facing": "south", "half": "bottom", @@ -46743,7 +46767,7 @@ } }, { - "id": 22627, + "id": 24941, "properties": { "facing": "south", "half": "bottom", @@ -46752,7 +46776,7 @@ } }, { - "id": 22628, + "id": 24942, "properties": { "facing": "south", "half": "bottom", @@ -46761,7 +46785,7 @@ } }, { - "id": 22629, + "id": 24943, "properties": { "facing": "south", "half": "bottom", @@ -46770,7 +46794,7 @@ } }, { - "id": 22630, + "id": 24944, "properties": { "facing": "south", "half": "bottom", @@ -46779,7 +46803,7 @@ } }, { - "id": 22631, + "id": 24945, "properties": { "facing": "south", "half": "bottom", @@ -46788,7 +46812,7 @@ } }, { - "id": 22632, + "id": 24946, "properties": { "facing": "south", "half": "bottom", @@ -46797,7 +46821,7 @@ } }, { - "id": 22633, + "id": 24947, "properties": { "facing": "south", "half": "bottom", @@ -46806,7 +46830,7 @@ } }, { - "id": 22634, + "id": 24948, "properties": { "facing": "west", "half": "top", @@ -46815,7 +46839,7 @@ } }, { - "id": 22635, + "id": 24949, "properties": { "facing": "west", "half": "top", @@ -46824,7 +46848,7 @@ } }, { - "id": 22636, + "id": 24950, "properties": { "facing": "west", "half": "top", @@ -46833,7 +46857,7 @@ } }, { - "id": 22637, + "id": 24951, "properties": { "facing": "west", "half": "top", @@ -46842,7 +46866,7 @@ } }, { - "id": 22638, + "id": 24952, "properties": { "facing": "west", "half": "top", @@ -46851,7 +46875,7 @@ } }, { - "id": 22639, + "id": 24953, "properties": { "facing": "west", "half": "top", @@ -46860,7 +46884,7 @@ } }, { - "id": 22640, + "id": 24954, "properties": { "facing": "west", "half": "top", @@ -46869,7 +46893,7 @@ } }, { - "id": 22641, + "id": 24955, "properties": { "facing": "west", "half": "top", @@ -46878,7 +46902,7 @@ } }, { - "id": 22642, + "id": 24956, "properties": { "facing": "west", "half": "top", @@ -46887,7 +46911,7 @@ } }, { - "id": 22643, + "id": 24957, "properties": { "facing": "west", "half": "top", @@ -46896,7 +46920,7 @@ } }, { - "id": 22644, + "id": 24958, "properties": { "facing": "west", "half": "bottom", @@ -46905,7 +46929,7 @@ } }, { - "id": 22645, + "id": 24959, "properties": { "facing": "west", "half": "bottom", @@ -46914,7 +46938,7 @@ } }, { - "id": 22646, + "id": 24960, "properties": { "facing": "west", "half": "bottom", @@ -46923,7 +46947,7 @@ } }, { - "id": 22647, + "id": 24961, "properties": { "facing": "west", "half": "bottom", @@ -46932,7 +46956,7 @@ } }, { - "id": 22648, + "id": 24962, "properties": { "facing": "west", "half": "bottom", @@ -46941,7 +46965,7 @@ } }, { - "id": 22649, + "id": 24963, "properties": { "facing": "west", "half": "bottom", @@ -46950,7 +46974,7 @@ } }, { - "id": 22650, + "id": 24964, "properties": { "facing": "west", "half": "bottom", @@ -46959,7 +46983,7 @@ } }, { - "id": 22651, + "id": 24965, "properties": { "facing": "west", "half": "bottom", @@ -46968,7 +46992,7 @@ } }, { - "id": 22652, + "id": 24966, "properties": { "facing": "west", "half": "bottom", @@ -46977,7 +47001,7 @@ } }, { - "id": 22653, + "id": 24967, "properties": { "facing": "west", "half": "bottom", @@ -46986,7 +47010,7 @@ } }, { - "id": 22654, + "id": 24968, "properties": { "facing": "east", "half": "top", @@ -46995,7 +47019,7 @@ } }, { - "id": 22655, + "id": 24969, "properties": { "facing": "east", "half": "top", @@ -47004,7 +47028,7 @@ } }, { - "id": 22656, + "id": 24970, "properties": { "facing": "east", "half": "top", @@ -47013,7 +47037,7 @@ } }, { - "id": 22657, + "id": 24971, "properties": { "facing": "east", "half": "top", @@ -47022,7 +47046,7 @@ } }, { - "id": 22658, + "id": 24972, "properties": { "facing": "east", "half": "top", @@ -47031,7 +47055,7 @@ } }, { - "id": 22659, + "id": 24973, "properties": { "facing": "east", "half": "top", @@ -47040,7 +47064,7 @@ } }, { - "id": 22660, + "id": 24974, "properties": { "facing": "east", "half": "top", @@ -47049,7 +47073,7 @@ } }, { - "id": 22661, + "id": 24975, "properties": { "facing": "east", "half": "top", @@ -47058,7 +47082,7 @@ } }, { - "id": 22662, + "id": 24976, "properties": { "facing": "east", "half": "top", @@ -47067,7 +47091,7 @@ } }, { - "id": 22663, + "id": 24977, "properties": { "facing": "east", "half": "top", @@ -47076,7 +47100,7 @@ } }, { - "id": 22664, + "id": 24978, "properties": { "facing": "east", "half": "bottom", @@ -47085,7 +47109,7 @@ } }, { - "id": 22665, + "id": 24979, "properties": { "facing": "east", "half": "bottom", @@ -47094,7 +47118,7 @@ } }, { - "id": 22666, + "id": 24980, "properties": { "facing": "east", "half": "bottom", @@ -47103,7 +47127,7 @@ } }, { - "id": 22667, + "id": 24981, "properties": { "facing": "east", "half": "bottom", @@ -47112,7 +47136,7 @@ } }, { - "id": 22668, + "id": 24982, "properties": { "facing": "east", "half": "bottom", @@ -47121,7 +47145,7 @@ } }, { - "id": 22669, + "id": 24983, "properties": { "facing": "east", "half": "bottom", @@ -47130,7 +47154,7 @@ } }, { - "id": 22670, + "id": 24984, "properties": { "facing": "east", "half": "bottom", @@ -47139,7 +47163,7 @@ } }, { - "id": 22671, + "id": 24985, "properties": { "facing": "east", "half": "bottom", @@ -47148,7 +47172,7 @@ } }, { - "id": 22672, + "id": 24986, "properties": { "facing": "east", "half": "bottom", @@ -47157,7 +47181,7 @@ } }, { - "id": 22673, + "id": 24987, "properties": { "facing": "east", "half": "bottom", @@ -47200,7 +47224,7 @@ }, "states": [ { - "id": 22680, + "id": 24994, "properties": { "east": "none", "north": "none", @@ -47211,7 +47235,7 @@ } }, { - "id": 22681, + "id": 24995, "properties": { "east": "none", "north": "none", @@ -47222,7 +47246,7 @@ } }, { - "id": 22682, + "id": 24996, "properties": { "east": "none", "north": "none", @@ -47234,7 +47258,7 @@ }, { "default": true, - "id": 22683, + "id": 24997, "properties": { "east": "none", "north": "none", @@ -47245,7 +47269,7 @@ } }, { - "id": 22684, + "id": 24998, "properties": { "east": "none", "north": "none", @@ -47256,7 +47280,7 @@ } }, { - "id": 22685, + "id": 24999, "properties": { "east": "none", "north": "none", @@ -47267,7 +47291,7 @@ } }, { - "id": 22686, + "id": 25000, "properties": { "east": "none", "north": "none", @@ -47278,7 +47302,7 @@ } }, { - "id": 22687, + "id": 25001, "properties": { "east": "none", "north": "none", @@ -47289,7 +47313,7 @@ } }, { - "id": 22688, + "id": 25002, "properties": { "east": "none", "north": "none", @@ -47300,7 +47324,7 @@ } }, { - "id": 22689, + "id": 25003, "properties": { "east": "none", "north": "none", @@ -47311,7 +47335,7 @@ } }, { - "id": 22690, + "id": 25004, "properties": { "east": "none", "north": "none", @@ -47322,7 +47346,7 @@ } }, { - "id": 22691, + "id": 25005, "properties": { "east": "none", "north": "none", @@ -47333,7 +47357,7 @@ } }, { - "id": 22692, + "id": 25006, "properties": { "east": "none", "north": "none", @@ -47344,7 +47368,7 @@ } }, { - "id": 22693, + "id": 25007, "properties": { "east": "none", "north": "none", @@ -47355,7 +47379,7 @@ } }, { - "id": 22694, + "id": 25008, "properties": { "east": "none", "north": "none", @@ -47366,7 +47390,7 @@ } }, { - "id": 22695, + "id": 25009, "properties": { "east": "none", "north": "none", @@ -47377,7 +47401,7 @@ } }, { - "id": 22696, + "id": 25010, "properties": { "east": "none", "north": "none", @@ -47388,7 +47412,7 @@ } }, { - "id": 22697, + "id": 25011, "properties": { "east": "none", "north": "none", @@ -47399,7 +47423,7 @@ } }, { - "id": 22698, + "id": 25012, "properties": { "east": "none", "north": "none", @@ -47410,7 +47434,7 @@ } }, { - "id": 22699, + "id": 25013, "properties": { "east": "none", "north": "none", @@ -47421,7 +47445,7 @@ } }, { - "id": 22700, + "id": 25014, "properties": { "east": "none", "north": "none", @@ -47432,7 +47456,7 @@ } }, { - "id": 22701, + "id": 25015, "properties": { "east": "none", "north": "none", @@ -47443,7 +47467,7 @@ } }, { - "id": 22702, + "id": 25016, "properties": { "east": "none", "north": "none", @@ -47454,7 +47478,7 @@ } }, { - "id": 22703, + "id": 25017, "properties": { "east": "none", "north": "none", @@ -47465,7 +47489,7 @@ } }, { - "id": 22704, + "id": 25018, "properties": { "east": "none", "north": "none", @@ -47476,7 +47500,7 @@ } }, { - "id": 22705, + "id": 25019, "properties": { "east": "none", "north": "none", @@ -47487,7 +47511,7 @@ } }, { - "id": 22706, + "id": 25020, "properties": { "east": "none", "north": "none", @@ -47498,7 +47522,7 @@ } }, { - "id": 22707, + "id": 25021, "properties": { "east": "none", "north": "none", @@ -47509,7 +47533,7 @@ } }, { - "id": 22708, + "id": 25022, "properties": { "east": "none", "north": "none", @@ -47520,7 +47544,7 @@ } }, { - "id": 22709, + "id": 25023, "properties": { "east": "none", "north": "none", @@ -47531,7 +47555,7 @@ } }, { - "id": 22710, + "id": 25024, "properties": { "east": "none", "north": "none", @@ -47542,7 +47566,7 @@ } }, { - "id": 22711, + "id": 25025, "properties": { "east": "none", "north": "none", @@ -47553,7 +47577,7 @@ } }, { - "id": 22712, + "id": 25026, "properties": { "east": "none", "north": "none", @@ -47564,7 +47588,7 @@ } }, { - "id": 22713, + "id": 25027, "properties": { "east": "none", "north": "none", @@ -47575,7 +47599,7 @@ } }, { - "id": 22714, + "id": 25028, "properties": { "east": "none", "north": "none", @@ -47586,7 +47610,7 @@ } }, { - "id": 22715, + "id": 25029, "properties": { "east": "none", "north": "none", @@ -47597,7 +47621,7 @@ } }, { - "id": 22716, + "id": 25030, "properties": { "east": "none", "north": "low", @@ -47608,7 +47632,7 @@ } }, { - "id": 22717, + "id": 25031, "properties": { "east": "none", "north": "low", @@ -47619,7 +47643,7 @@ } }, { - "id": 22718, + "id": 25032, "properties": { "east": "none", "north": "low", @@ -47630,7 +47654,7 @@ } }, { - "id": 22719, + "id": 25033, "properties": { "east": "none", "north": "low", @@ -47641,7 +47665,7 @@ } }, { - "id": 22720, + "id": 25034, "properties": { "east": "none", "north": "low", @@ -47652,7 +47676,7 @@ } }, { - "id": 22721, + "id": 25035, "properties": { "east": "none", "north": "low", @@ -47663,7 +47687,7 @@ } }, { - "id": 22722, + "id": 25036, "properties": { "east": "none", "north": "low", @@ -47674,7 +47698,7 @@ } }, { - "id": 22723, + "id": 25037, "properties": { "east": "none", "north": "low", @@ -47685,7 +47709,7 @@ } }, { - "id": 22724, + "id": 25038, "properties": { "east": "none", "north": "low", @@ -47696,7 +47720,7 @@ } }, { - "id": 22725, + "id": 25039, "properties": { "east": "none", "north": "low", @@ -47707,7 +47731,7 @@ } }, { - "id": 22726, + "id": 25040, "properties": { "east": "none", "north": "low", @@ -47718,7 +47742,7 @@ } }, { - "id": 22727, + "id": 25041, "properties": { "east": "none", "north": "low", @@ -47729,7 +47753,7 @@ } }, { - "id": 22728, + "id": 25042, "properties": { "east": "none", "north": "low", @@ -47740,7 +47764,7 @@ } }, { - "id": 22729, + "id": 25043, "properties": { "east": "none", "north": "low", @@ -47751,7 +47775,7 @@ } }, { - "id": 22730, + "id": 25044, "properties": { "east": "none", "north": "low", @@ -47762,7 +47786,7 @@ } }, { - "id": 22731, + "id": 25045, "properties": { "east": "none", "north": "low", @@ -47773,7 +47797,7 @@ } }, { - "id": 22732, + "id": 25046, "properties": { "east": "none", "north": "low", @@ -47784,7 +47808,7 @@ } }, { - "id": 22733, + "id": 25047, "properties": { "east": "none", "north": "low", @@ -47795,7 +47819,7 @@ } }, { - "id": 22734, + "id": 25048, "properties": { "east": "none", "north": "low", @@ -47806,7 +47830,7 @@ } }, { - "id": 22735, + "id": 25049, "properties": { "east": "none", "north": "low", @@ -47817,7 +47841,7 @@ } }, { - "id": 22736, + "id": 25050, "properties": { "east": "none", "north": "low", @@ -47828,7 +47852,7 @@ } }, { - "id": 22737, + "id": 25051, "properties": { "east": "none", "north": "low", @@ -47839,7 +47863,7 @@ } }, { - "id": 22738, + "id": 25052, "properties": { "east": "none", "north": "low", @@ -47850,7 +47874,7 @@ } }, { - "id": 22739, + "id": 25053, "properties": { "east": "none", "north": "low", @@ -47861,7 +47885,7 @@ } }, { - "id": 22740, + "id": 25054, "properties": { "east": "none", "north": "low", @@ -47872,7 +47896,7 @@ } }, { - "id": 22741, + "id": 25055, "properties": { "east": "none", "north": "low", @@ -47883,7 +47907,7 @@ } }, { - "id": 22742, + "id": 25056, "properties": { "east": "none", "north": "low", @@ -47894,7 +47918,7 @@ } }, { - "id": 22743, + "id": 25057, "properties": { "east": "none", "north": "low", @@ -47905,7 +47929,7 @@ } }, { - "id": 22744, + "id": 25058, "properties": { "east": "none", "north": "low", @@ -47916,7 +47940,7 @@ } }, { - "id": 22745, + "id": 25059, "properties": { "east": "none", "north": "low", @@ -47927,7 +47951,7 @@ } }, { - "id": 22746, + "id": 25060, "properties": { "east": "none", "north": "low", @@ -47938,7 +47962,7 @@ } }, { - "id": 22747, + "id": 25061, "properties": { "east": "none", "north": "low", @@ -47949,7 +47973,7 @@ } }, { - "id": 22748, + "id": 25062, "properties": { "east": "none", "north": "low", @@ -47960,7 +47984,7 @@ } }, { - "id": 22749, + "id": 25063, "properties": { "east": "none", "north": "low", @@ -47971,7 +47995,7 @@ } }, { - "id": 22750, + "id": 25064, "properties": { "east": "none", "north": "low", @@ -47982,7 +48006,7 @@ } }, { - "id": 22751, + "id": 25065, "properties": { "east": "none", "north": "low", @@ -47993,7 +48017,7 @@ } }, { - "id": 22752, + "id": 25066, "properties": { "east": "none", "north": "tall", @@ -48004,7 +48028,7 @@ } }, { - "id": 22753, + "id": 25067, "properties": { "east": "none", "north": "tall", @@ -48015,7 +48039,7 @@ } }, { - "id": 22754, + "id": 25068, "properties": { "east": "none", "north": "tall", @@ -48026,7 +48050,7 @@ } }, { - "id": 22755, + "id": 25069, "properties": { "east": "none", "north": "tall", @@ -48037,7 +48061,7 @@ } }, { - "id": 22756, + "id": 25070, "properties": { "east": "none", "north": "tall", @@ -48048,7 +48072,7 @@ } }, { - "id": 22757, + "id": 25071, "properties": { "east": "none", "north": "tall", @@ -48059,7 +48083,7 @@ } }, { - "id": 22758, + "id": 25072, "properties": { "east": "none", "north": "tall", @@ -48070,7 +48094,7 @@ } }, { - "id": 22759, + "id": 25073, "properties": { "east": "none", "north": "tall", @@ -48081,7 +48105,7 @@ } }, { - "id": 22760, + "id": 25074, "properties": { "east": "none", "north": "tall", @@ -48092,7 +48116,7 @@ } }, { - "id": 22761, + "id": 25075, "properties": { "east": "none", "north": "tall", @@ -48103,7 +48127,7 @@ } }, { - "id": 22762, + "id": 25076, "properties": { "east": "none", "north": "tall", @@ -48114,7 +48138,7 @@ } }, { - "id": 22763, + "id": 25077, "properties": { "east": "none", "north": "tall", @@ -48125,7 +48149,7 @@ } }, { - "id": 22764, + "id": 25078, "properties": { "east": "none", "north": "tall", @@ -48136,7 +48160,7 @@ } }, { - "id": 22765, + "id": 25079, "properties": { "east": "none", "north": "tall", @@ -48147,7 +48171,7 @@ } }, { - "id": 22766, + "id": 25080, "properties": { "east": "none", "north": "tall", @@ -48158,7 +48182,7 @@ } }, { - "id": 22767, + "id": 25081, "properties": { "east": "none", "north": "tall", @@ -48169,7 +48193,7 @@ } }, { - "id": 22768, + "id": 25082, "properties": { "east": "none", "north": "tall", @@ -48180,7 +48204,7 @@ } }, { - "id": 22769, + "id": 25083, "properties": { "east": "none", "north": "tall", @@ -48191,7 +48215,7 @@ } }, { - "id": 22770, + "id": 25084, "properties": { "east": "none", "north": "tall", @@ -48202,7 +48226,7 @@ } }, { - "id": 22771, + "id": 25085, "properties": { "east": "none", "north": "tall", @@ -48213,7 +48237,7 @@ } }, { - "id": 22772, + "id": 25086, "properties": { "east": "none", "north": "tall", @@ -48224,7 +48248,7 @@ } }, { - "id": 22773, + "id": 25087, "properties": { "east": "none", "north": "tall", @@ -48235,7 +48259,7 @@ } }, { - "id": 22774, + "id": 25088, "properties": { "east": "none", "north": "tall", @@ -48246,7 +48270,7 @@ } }, { - "id": 22775, + "id": 25089, "properties": { "east": "none", "north": "tall", @@ -48257,7 +48281,7 @@ } }, { - "id": 22776, + "id": 25090, "properties": { "east": "none", "north": "tall", @@ -48268,7 +48292,7 @@ } }, { - "id": 22777, + "id": 25091, "properties": { "east": "none", "north": "tall", @@ -48279,7 +48303,7 @@ } }, { - "id": 22778, + "id": 25092, "properties": { "east": "none", "north": "tall", @@ -48290,7 +48314,7 @@ } }, { - "id": 22779, + "id": 25093, "properties": { "east": "none", "north": "tall", @@ -48301,7 +48325,7 @@ } }, { - "id": 22780, + "id": 25094, "properties": { "east": "none", "north": "tall", @@ -48312,7 +48336,7 @@ } }, { - "id": 22781, + "id": 25095, "properties": { "east": "none", "north": "tall", @@ -48323,7 +48347,7 @@ } }, { - "id": 22782, + "id": 25096, "properties": { "east": "none", "north": "tall", @@ -48334,7 +48358,7 @@ } }, { - "id": 22783, + "id": 25097, "properties": { "east": "none", "north": "tall", @@ -48345,7 +48369,7 @@ } }, { - "id": 22784, + "id": 25098, "properties": { "east": "none", "north": "tall", @@ -48356,7 +48380,7 @@ } }, { - "id": 22785, + "id": 25099, "properties": { "east": "none", "north": "tall", @@ -48367,7 +48391,7 @@ } }, { - "id": 22786, + "id": 25100, "properties": { "east": "none", "north": "tall", @@ -48378,7 +48402,7 @@ } }, { - "id": 22787, + "id": 25101, "properties": { "east": "none", "north": "tall", @@ -48389,7 +48413,7 @@ } }, { - "id": 22788, + "id": 25102, "properties": { "east": "low", "north": "none", @@ -48400,7 +48424,7 @@ } }, { - "id": 22789, + "id": 25103, "properties": { "east": "low", "north": "none", @@ -48411,7 +48435,7 @@ } }, { - "id": 22790, + "id": 25104, "properties": { "east": "low", "north": "none", @@ -48422,7 +48446,7 @@ } }, { - "id": 22791, + "id": 25105, "properties": { "east": "low", "north": "none", @@ -48433,7 +48457,7 @@ } }, { - "id": 22792, + "id": 25106, "properties": { "east": "low", "north": "none", @@ -48444,7 +48468,7 @@ } }, { - "id": 22793, + "id": 25107, "properties": { "east": "low", "north": "none", @@ -48455,7 +48479,7 @@ } }, { - "id": 22794, + "id": 25108, "properties": { "east": "low", "north": "none", @@ -48466,7 +48490,7 @@ } }, { - "id": 22795, + "id": 25109, "properties": { "east": "low", "north": "none", @@ -48477,7 +48501,7 @@ } }, { - "id": 22796, + "id": 25110, "properties": { "east": "low", "north": "none", @@ -48488,7 +48512,7 @@ } }, { - "id": 22797, + "id": 25111, "properties": { "east": "low", "north": "none", @@ -48499,7 +48523,7 @@ } }, { - "id": 22798, + "id": 25112, "properties": { "east": "low", "north": "none", @@ -48510,7 +48534,7 @@ } }, { - "id": 22799, + "id": 25113, "properties": { "east": "low", "north": "none", @@ -48521,7 +48545,7 @@ } }, { - "id": 22800, + "id": 25114, "properties": { "east": "low", "north": "none", @@ -48532,7 +48556,7 @@ } }, { - "id": 22801, + "id": 25115, "properties": { "east": "low", "north": "none", @@ -48543,7 +48567,7 @@ } }, { - "id": 22802, + "id": 25116, "properties": { "east": "low", "north": "none", @@ -48554,7 +48578,7 @@ } }, { - "id": 22803, + "id": 25117, "properties": { "east": "low", "north": "none", @@ -48565,7 +48589,7 @@ } }, { - "id": 22804, + "id": 25118, "properties": { "east": "low", "north": "none", @@ -48576,7 +48600,7 @@ } }, { - "id": 22805, + "id": 25119, "properties": { "east": "low", "north": "none", @@ -48587,7 +48611,7 @@ } }, { - "id": 22806, + "id": 25120, "properties": { "east": "low", "north": "none", @@ -48598,7 +48622,7 @@ } }, { - "id": 22807, + "id": 25121, "properties": { "east": "low", "north": "none", @@ -48609,7 +48633,7 @@ } }, { - "id": 22808, + "id": 25122, "properties": { "east": "low", "north": "none", @@ -48620,7 +48644,7 @@ } }, { - "id": 22809, + "id": 25123, "properties": { "east": "low", "north": "none", @@ -48631,7 +48655,7 @@ } }, { - "id": 22810, + "id": 25124, "properties": { "east": "low", "north": "none", @@ -48642,7 +48666,7 @@ } }, { - "id": 22811, + "id": 25125, "properties": { "east": "low", "north": "none", @@ -48653,7 +48677,7 @@ } }, { - "id": 22812, + "id": 25126, "properties": { "east": "low", "north": "none", @@ -48664,7 +48688,7 @@ } }, { - "id": 22813, + "id": 25127, "properties": { "east": "low", "north": "none", @@ -48675,7 +48699,7 @@ } }, { - "id": 22814, + "id": 25128, "properties": { "east": "low", "north": "none", @@ -48686,7 +48710,7 @@ } }, { - "id": 22815, + "id": 25129, "properties": { "east": "low", "north": "none", @@ -48697,7 +48721,7 @@ } }, { - "id": 22816, + "id": 25130, "properties": { "east": "low", "north": "none", @@ -48708,7 +48732,7 @@ } }, { - "id": 22817, + "id": 25131, "properties": { "east": "low", "north": "none", @@ -48719,7 +48743,7 @@ } }, { - "id": 22818, + "id": 25132, "properties": { "east": "low", "north": "none", @@ -48730,7 +48754,7 @@ } }, { - "id": 22819, + "id": 25133, "properties": { "east": "low", "north": "none", @@ -48741,7 +48765,7 @@ } }, { - "id": 22820, + "id": 25134, "properties": { "east": "low", "north": "none", @@ -48752,7 +48776,7 @@ } }, { - "id": 22821, + "id": 25135, "properties": { "east": "low", "north": "none", @@ -48763,7 +48787,7 @@ } }, { - "id": 22822, + "id": 25136, "properties": { "east": "low", "north": "none", @@ -48774,7 +48798,7 @@ } }, { - "id": 22823, + "id": 25137, "properties": { "east": "low", "north": "none", @@ -48785,7 +48809,7 @@ } }, { - "id": 22824, + "id": 25138, "properties": { "east": "low", "north": "low", @@ -48796,7 +48820,7 @@ } }, { - "id": 22825, + "id": 25139, "properties": { "east": "low", "north": "low", @@ -48807,7 +48831,7 @@ } }, { - "id": 22826, + "id": 25140, "properties": { "east": "low", "north": "low", @@ -48818,7 +48842,7 @@ } }, { - "id": 22827, + "id": 25141, "properties": { "east": "low", "north": "low", @@ -48829,7 +48853,7 @@ } }, { - "id": 22828, + "id": 25142, "properties": { "east": "low", "north": "low", @@ -48840,7 +48864,7 @@ } }, { - "id": 22829, + "id": 25143, "properties": { "east": "low", "north": "low", @@ -48851,7 +48875,7 @@ } }, { - "id": 22830, + "id": 25144, "properties": { "east": "low", "north": "low", @@ -48862,7 +48886,7 @@ } }, { - "id": 22831, + "id": 25145, "properties": { "east": "low", "north": "low", @@ -48873,7 +48897,7 @@ } }, { - "id": 22832, + "id": 25146, "properties": { "east": "low", "north": "low", @@ -48884,7 +48908,7 @@ } }, { - "id": 22833, + "id": 25147, "properties": { "east": "low", "north": "low", @@ -48895,7 +48919,7 @@ } }, { - "id": 22834, + "id": 25148, "properties": { "east": "low", "north": "low", @@ -48906,7 +48930,7 @@ } }, { - "id": 22835, + "id": 25149, "properties": { "east": "low", "north": "low", @@ -48917,7 +48941,7 @@ } }, { - "id": 22836, + "id": 25150, "properties": { "east": "low", "north": "low", @@ -48928,7 +48952,7 @@ } }, { - "id": 22837, + "id": 25151, "properties": { "east": "low", "north": "low", @@ -48939,7 +48963,7 @@ } }, { - "id": 22838, + "id": 25152, "properties": { "east": "low", "north": "low", @@ -48950,7 +48974,7 @@ } }, { - "id": 22839, + "id": 25153, "properties": { "east": "low", "north": "low", @@ -48961,7 +48985,7 @@ } }, { - "id": 22840, + "id": 25154, "properties": { "east": "low", "north": "low", @@ -48972,7 +48996,7 @@ } }, { - "id": 22841, + "id": 25155, "properties": { "east": "low", "north": "low", @@ -48983,7 +49007,7 @@ } }, { - "id": 22842, + "id": 25156, "properties": { "east": "low", "north": "low", @@ -48994,7 +49018,7 @@ } }, { - "id": 22843, + "id": 25157, "properties": { "east": "low", "north": "low", @@ -49005,7 +49029,7 @@ } }, { - "id": 22844, + "id": 25158, "properties": { "east": "low", "north": "low", @@ -49016,7 +49040,7 @@ } }, { - "id": 22845, + "id": 25159, "properties": { "east": "low", "north": "low", @@ -49027,7 +49051,7 @@ } }, { - "id": 22846, + "id": 25160, "properties": { "east": "low", "north": "low", @@ -49038,7 +49062,7 @@ } }, { - "id": 22847, + "id": 25161, "properties": { "east": "low", "north": "low", @@ -49049,7 +49073,7 @@ } }, { - "id": 22848, + "id": 25162, "properties": { "east": "low", "north": "low", @@ -49060,7 +49084,7 @@ } }, { - "id": 22849, + "id": 25163, "properties": { "east": "low", "north": "low", @@ -49071,7 +49095,7 @@ } }, { - "id": 22850, + "id": 25164, "properties": { "east": "low", "north": "low", @@ -49082,7 +49106,7 @@ } }, { - "id": 22851, + "id": 25165, "properties": { "east": "low", "north": "low", @@ -49093,7 +49117,7 @@ } }, { - "id": 22852, + "id": 25166, "properties": { "east": "low", "north": "low", @@ -49104,7 +49128,7 @@ } }, { - "id": 22853, + "id": 25167, "properties": { "east": "low", "north": "low", @@ -49115,7 +49139,7 @@ } }, { - "id": 22854, + "id": 25168, "properties": { "east": "low", "north": "low", @@ -49126,7 +49150,7 @@ } }, { - "id": 22855, + "id": 25169, "properties": { "east": "low", "north": "low", @@ -49137,7 +49161,7 @@ } }, { - "id": 22856, + "id": 25170, "properties": { "east": "low", "north": "low", @@ -49148,7 +49172,7 @@ } }, { - "id": 22857, + "id": 25171, "properties": { "east": "low", "north": "low", @@ -49159,7 +49183,7 @@ } }, { - "id": 22858, + "id": 25172, "properties": { "east": "low", "north": "low", @@ -49170,7 +49194,7 @@ } }, { - "id": 22859, + "id": 25173, "properties": { "east": "low", "north": "low", @@ -49181,7 +49205,7 @@ } }, { - "id": 22860, + "id": 25174, "properties": { "east": "low", "north": "tall", @@ -49192,7 +49216,7 @@ } }, { - "id": 22861, + "id": 25175, "properties": { "east": "low", "north": "tall", @@ -49203,7 +49227,7 @@ } }, { - "id": 22862, + "id": 25176, "properties": { "east": "low", "north": "tall", @@ -49214,7 +49238,7 @@ } }, { - "id": 22863, + "id": 25177, "properties": { "east": "low", "north": "tall", @@ -49225,7 +49249,7 @@ } }, { - "id": 22864, + "id": 25178, "properties": { "east": "low", "north": "tall", @@ -49236,7 +49260,7 @@ } }, { - "id": 22865, + "id": 25179, "properties": { "east": "low", "north": "tall", @@ -49247,7 +49271,7 @@ } }, { - "id": 22866, + "id": 25180, "properties": { "east": "low", "north": "tall", @@ -49258,7 +49282,7 @@ } }, { - "id": 22867, + "id": 25181, "properties": { "east": "low", "north": "tall", @@ -49269,7 +49293,7 @@ } }, { - "id": 22868, + "id": 25182, "properties": { "east": "low", "north": "tall", @@ -49280,7 +49304,7 @@ } }, { - "id": 22869, + "id": 25183, "properties": { "east": "low", "north": "tall", @@ -49291,7 +49315,7 @@ } }, { - "id": 22870, + "id": 25184, "properties": { "east": "low", "north": "tall", @@ -49302,7 +49326,7 @@ } }, { - "id": 22871, + "id": 25185, "properties": { "east": "low", "north": "tall", @@ -49313,7 +49337,7 @@ } }, { - "id": 22872, + "id": 25186, "properties": { "east": "low", "north": "tall", @@ -49324,7 +49348,7 @@ } }, { - "id": 22873, + "id": 25187, "properties": { "east": "low", "north": "tall", @@ -49335,7 +49359,7 @@ } }, { - "id": 22874, + "id": 25188, "properties": { "east": "low", "north": "tall", @@ -49346,7 +49370,7 @@ } }, { - "id": 22875, + "id": 25189, "properties": { "east": "low", "north": "tall", @@ -49357,7 +49381,7 @@ } }, { - "id": 22876, + "id": 25190, "properties": { "east": "low", "north": "tall", @@ -49368,7 +49392,7 @@ } }, { - "id": 22877, + "id": 25191, "properties": { "east": "low", "north": "tall", @@ -49379,7 +49403,7 @@ } }, { - "id": 22878, + "id": 25192, "properties": { "east": "low", "north": "tall", @@ -49390,7 +49414,7 @@ } }, { - "id": 22879, + "id": 25193, "properties": { "east": "low", "north": "tall", @@ -49401,7 +49425,7 @@ } }, { - "id": 22880, + "id": 25194, "properties": { "east": "low", "north": "tall", @@ -49412,7 +49436,7 @@ } }, { - "id": 22881, + "id": 25195, "properties": { "east": "low", "north": "tall", @@ -49423,7 +49447,7 @@ } }, { - "id": 22882, + "id": 25196, "properties": { "east": "low", "north": "tall", @@ -49434,7 +49458,7 @@ } }, { - "id": 22883, + "id": 25197, "properties": { "east": "low", "north": "tall", @@ -49445,7 +49469,7 @@ } }, { - "id": 22884, + "id": 25198, "properties": { "east": "low", "north": "tall", @@ -49456,7 +49480,7 @@ } }, { - "id": 22885, + "id": 25199, "properties": { "east": "low", "north": "tall", @@ -49467,7 +49491,7 @@ } }, { - "id": 22886, + "id": 25200, "properties": { "east": "low", "north": "tall", @@ -49478,7 +49502,7 @@ } }, { - "id": 22887, + "id": 25201, "properties": { "east": "low", "north": "tall", @@ -49489,7 +49513,7 @@ } }, { - "id": 22888, + "id": 25202, "properties": { "east": "low", "north": "tall", @@ -49500,7 +49524,7 @@ } }, { - "id": 22889, + "id": 25203, "properties": { "east": "low", "north": "tall", @@ -49511,7 +49535,7 @@ } }, { - "id": 22890, + "id": 25204, "properties": { "east": "low", "north": "tall", @@ -49522,7 +49546,7 @@ } }, { - "id": 22891, + "id": 25205, "properties": { "east": "low", "north": "tall", @@ -49533,7 +49557,7 @@ } }, { - "id": 22892, + "id": 25206, "properties": { "east": "low", "north": "tall", @@ -49544,7 +49568,7 @@ } }, { - "id": 22893, + "id": 25207, "properties": { "east": "low", "north": "tall", @@ -49555,7 +49579,7 @@ } }, { - "id": 22894, + "id": 25208, "properties": { "east": "low", "north": "tall", @@ -49566,7 +49590,7 @@ } }, { - "id": 22895, + "id": 25209, "properties": { "east": "low", "north": "tall", @@ -49577,7 +49601,7 @@ } }, { - "id": 22896, + "id": 25210, "properties": { "east": "tall", "north": "none", @@ -49588,7 +49612,7 @@ } }, { - "id": 22897, + "id": 25211, "properties": { "east": "tall", "north": "none", @@ -49599,7 +49623,7 @@ } }, { - "id": 22898, + "id": 25212, "properties": { "east": "tall", "north": "none", @@ -49610,7 +49634,7 @@ } }, { - "id": 22899, + "id": 25213, "properties": { "east": "tall", "north": "none", @@ -49621,7 +49645,7 @@ } }, { - "id": 22900, + "id": 25214, "properties": { "east": "tall", "north": "none", @@ -49632,7 +49656,7 @@ } }, { - "id": 22901, + "id": 25215, "properties": { "east": "tall", "north": "none", @@ -49643,7 +49667,7 @@ } }, { - "id": 22902, + "id": 25216, "properties": { "east": "tall", "north": "none", @@ -49654,7 +49678,7 @@ } }, { - "id": 22903, + "id": 25217, "properties": { "east": "tall", "north": "none", @@ -49665,7 +49689,7 @@ } }, { - "id": 22904, + "id": 25218, "properties": { "east": "tall", "north": "none", @@ -49676,7 +49700,7 @@ } }, { - "id": 22905, + "id": 25219, "properties": { "east": "tall", "north": "none", @@ -49687,7 +49711,7 @@ } }, { - "id": 22906, + "id": 25220, "properties": { "east": "tall", "north": "none", @@ -49698,7 +49722,7 @@ } }, { - "id": 22907, + "id": 25221, "properties": { "east": "tall", "north": "none", @@ -49709,7 +49733,7 @@ } }, { - "id": 22908, + "id": 25222, "properties": { "east": "tall", "north": "none", @@ -49720,7 +49744,7 @@ } }, { - "id": 22909, + "id": 25223, "properties": { "east": "tall", "north": "none", @@ -49731,7 +49755,7 @@ } }, { - "id": 22910, + "id": 25224, "properties": { "east": "tall", "north": "none", @@ -49742,7 +49766,7 @@ } }, { - "id": 22911, + "id": 25225, "properties": { "east": "tall", "north": "none", @@ -49753,7 +49777,7 @@ } }, { - "id": 22912, + "id": 25226, "properties": { "east": "tall", "north": "none", @@ -49764,7 +49788,7 @@ } }, { - "id": 22913, + "id": 25227, "properties": { "east": "tall", "north": "none", @@ -49775,7 +49799,7 @@ } }, { - "id": 22914, + "id": 25228, "properties": { "east": "tall", "north": "none", @@ -49786,7 +49810,7 @@ } }, { - "id": 22915, + "id": 25229, "properties": { "east": "tall", "north": "none", @@ -49797,7 +49821,7 @@ } }, { - "id": 22916, + "id": 25230, "properties": { "east": "tall", "north": "none", @@ -49808,7 +49832,7 @@ } }, { - "id": 22917, + "id": 25231, "properties": { "east": "tall", "north": "none", @@ -49819,7 +49843,7 @@ } }, { - "id": 22918, + "id": 25232, "properties": { "east": "tall", "north": "none", @@ -49830,7 +49854,7 @@ } }, { - "id": 22919, + "id": 25233, "properties": { "east": "tall", "north": "none", @@ -49841,7 +49865,7 @@ } }, { - "id": 22920, + "id": 25234, "properties": { "east": "tall", "north": "none", @@ -49852,7 +49876,7 @@ } }, { - "id": 22921, + "id": 25235, "properties": { "east": "tall", "north": "none", @@ -49863,7 +49887,7 @@ } }, { - "id": 22922, + "id": 25236, "properties": { "east": "tall", "north": "none", @@ -49874,7 +49898,7 @@ } }, { - "id": 22923, + "id": 25237, "properties": { "east": "tall", "north": "none", @@ -49885,7 +49909,7 @@ } }, { - "id": 22924, + "id": 25238, "properties": { "east": "tall", "north": "none", @@ -49896,7 +49920,7 @@ } }, { - "id": 22925, + "id": 25239, "properties": { "east": "tall", "north": "none", @@ -49907,7 +49931,7 @@ } }, { - "id": 22926, + "id": 25240, "properties": { "east": "tall", "north": "none", @@ -49918,7 +49942,7 @@ } }, { - "id": 22927, + "id": 25241, "properties": { "east": "tall", "north": "none", @@ -49929,7 +49953,7 @@ } }, { - "id": 22928, + "id": 25242, "properties": { "east": "tall", "north": "none", @@ -49940,7 +49964,7 @@ } }, { - "id": 22929, + "id": 25243, "properties": { "east": "tall", "north": "none", @@ -49951,7 +49975,7 @@ } }, { - "id": 22930, + "id": 25244, "properties": { "east": "tall", "north": "none", @@ -49962,7 +49986,7 @@ } }, { - "id": 22931, + "id": 25245, "properties": { "east": "tall", "north": "none", @@ -49973,7 +49997,7 @@ } }, { - "id": 22932, + "id": 25246, "properties": { "east": "tall", "north": "low", @@ -49984,7 +50008,7 @@ } }, { - "id": 22933, + "id": 25247, "properties": { "east": "tall", "north": "low", @@ -49995,7 +50019,7 @@ } }, { - "id": 22934, + "id": 25248, "properties": { "east": "tall", "north": "low", @@ -50006,7 +50030,7 @@ } }, { - "id": 22935, + "id": 25249, "properties": { "east": "tall", "north": "low", @@ -50017,7 +50041,7 @@ } }, { - "id": 22936, + "id": 25250, "properties": { "east": "tall", "north": "low", @@ -50028,7 +50052,7 @@ } }, { - "id": 22937, + "id": 25251, "properties": { "east": "tall", "north": "low", @@ -50039,7 +50063,7 @@ } }, { - "id": 22938, + "id": 25252, "properties": { "east": "tall", "north": "low", @@ -50050,7 +50074,7 @@ } }, { - "id": 22939, + "id": 25253, "properties": { "east": "tall", "north": "low", @@ -50061,7 +50085,7 @@ } }, { - "id": 22940, + "id": 25254, "properties": { "east": "tall", "north": "low", @@ -50072,7 +50096,7 @@ } }, { - "id": 22941, + "id": 25255, "properties": { "east": "tall", "north": "low", @@ -50083,7 +50107,7 @@ } }, { - "id": 22942, + "id": 25256, "properties": { "east": "tall", "north": "low", @@ -50094,7 +50118,7 @@ } }, { - "id": 22943, + "id": 25257, "properties": { "east": "tall", "north": "low", @@ -50105,7 +50129,7 @@ } }, { - "id": 22944, + "id": 25258, "properties": { "east": "tall", "north": "low", @@ -50116,7 +50140,7 @@ } }, { - "id": 22945, + "id": 25259, "properties": { "east": "tall", "north": "low", @@ -50127,7 +50151,7 @@ } }, { - "id": 22946, + "id": 25260, "properties": { "east": "tall", "north": "low", @@ -50138,7 +50162,7 @@ } }, { - "id": 22947, + "id": 25261, "properties": { "east": "tall", "north": "low", @@ -50149,7 +50173,7 @@ } }, { - "id": 22948, + "id": 25262, "properties": { "east": "tall", "north": "low", @@ -50160,7 +50184,7 @@ } }, { - "id": 22949, + "id": 25263, "properties": { "east": "tall", "north": "low", @@ -50171,7 +50195,7 @@ } }, { - "id": 22950, + "id": 25264, "properties": { "east": "tall", "north": "low", @@ -50182,7 +50206,7 @@ } }, { - "id": 22951, + "id": 25265, "properties": { "east": "tall", "north": "low", @@ -50193,7 +50217,7 @@ } }, { - "id": 22952, + "id": 25266, "properties": { "east": "tall", "north": "low", @@ -50204,7 +50228,7 @@ } }, { - "id": 22953, + "id": 25267, "properties": { "east": "tall", "north": "low", @@ -50215,7 +50239,7 @@ } }, { - "id": 22954, + "id": 25268, "properties": { "east": "tall", "north": "low", @@ -50226,7 +50250,7 @@ } }, { - "id": 22955, + "id": 25269, "properties": { "east": "tall", "north": "low", @@ -50237,7 +50261,7 @@ } }, { - "id": 22956, + "id": 25270, "properties": { "east": "tall", "north": "low", @@ -50248,7 +50272,7 @@ } }, { - "id": 22957, + "id": 25271, "properties": { "east": "tall", "north": "low", @@ -50259,7 +50283,7 @@ } }, { - "id": 22958, + "id": 25272, "properties": { "east": "tall", "north": "low", @@ -50270,7 +50294,7 @@ } }, { - "id": 22959, + "id": 25273, "properties": { "east": "tall", "north": "low", @@ -50281,7 +50305,7 @@ } }, { - "id": 22960, + "id": 25274, "properties": { "east": "tall", "north": "low", @@ -50292,7 +50316,7 @@ } }, { - "id": 22961, + "id": 25275, "properties": { "east": "tall", "north": "low", @@ -50303,7 +50327,7 @@ } }, { - "id": 22962, + "id": 25276, "properties": { "east": "tall", "north": "low", @@ -50314,7 +50338,7 @@ } }, { - "id": 22963, + "id": 25277, "properties": { "east": "tall", "north": "low", @@ -50325,7 +50349,7 @@ } }, { - "id": 22964, + "id": 25278, "properties": { "east": "tall", "north": "low", @@ -50336,7 +50360,7 @@ } }, { - "id": 22965, + "id": 25279, "properties": { "east": "tall", "north": "low", @@ -50347,7 +50371,7 @@ } }, { - "id": 22966, + "id": 25280, "properties": { "east": "tall", "north": "low", @@ -50358,7 +50382,7 @@ } }, { - "id": 22967, + "id": 25281, "properties": { "east": "tall", "north": "low", @@ -50369,7 +50393,7 @@ } }, { - "id": 22968, + "id": 25282, "properties": { "east": "tall", "north": "tall", @@ -50380,7 +50404,7 @@ } }, { - "id": 22969, + "id": 25283, "properties": { "east": "tall", "north": "tall", @@ -50391,7 +50415,7 @@ } }, { - "id": 22970, + "id": 25284, "properties": { "east": "tall", "north": "tall", @@ -50402,7 +50426,7 @@ } }, { - "id": 22971, + "id": 25285, "properties": { "east": "tall", "north": "tall", @@ -50413,7 +50437,7 @@ } }, { - "id": 22972, + "id": 25286, "properties": { "east": "tall", "north": "tall", @@ -50424,7 +50448,7 @@ } }, { - "id": 22973, + "id": 25287, "properties": { "east": "tall", "north": "tall", @@ -50435,7 +50459,7 @@ } }, { - "id": 22974, + "id": 25288, "properties": { "east": "tall", "north": "tall", @@ -50446,7 +50470,7 @@ } }, { - "id": 22975, + "id": 25289, "properties": { "east": "tall", "north": "tall", @@ -50457,7 +50481,7 @@ } }, { - "id": 22976, + "id": 25290, "properties": { "east": "tall", "north": "tall", @@ -50468,7 +50492,7 @@ } }, { - "id": 22977, + "id": 25291, "properties": { "east": "tall", "north": "tall", @@ -50479,7 +50503,7 @@ } }, { - "id": 22978, + "id": 25292, "properties": { "east": "tall", "north": "tall", @@ -50490,7 +50514,7 @@ } }, { - "id": 22979, + "id": 25293, "properties": { "east": "tall", "north": "tall", @@ -50501,7 +50525,7 @@ } }, { - "id": 22980, + "id": 25294, "properties": { "east": "tall", "north": "tall", @@ -50512,7 +50536,7 @@ } }, { - "id": 22981, + "id": 25295, "properties": { "east": "tall", "north": "tall", @@ -50523,7 +50547,7 @@ } }, { - "id": 22982, + "id": 25296, "properties": { "east": "tall", "north": "tall", @@ -50534,7 +50558,7 @@ } }, { - "id": 22983, + "id": 25297, "properties": { "east": "tall", "north": "tall", @@ -50545,7 +50569,7 @@ } }, { - "id": 22984, + "id": 25298, "properties": { "east": "tall", "north": "tall", @@ -50556,7 +50580,7 @@ } }, { - "id": 22985, + "id": 25299, "properties": { "east": "tall", "north": "tall", @@ -50567,7 +50591,7 @@ } }, { - "id": 22986, + "id": 25300, "properties": { "east": "tall", "north": "tall", @@ -50578,7 +50602,7 @@ } }, { - "id": 22987, + "id": 25301, "properties": { "east": "tall", "north": "tall", @@ -50589,7 +50613,7 @@ } }, { - "id": 22988, + "id": 25302, "properties": { "east": "tall", "north": "tall", @@ -50600,7 +50624,7 @@ } }, { - "id": 22989, + "id": 25303, "properties": { "east": "tall", "north": "tall", @@ -50611,7 +50635,7 @@ } }, { - "id": 22990, + "id": 25304, "properties": { "east": "tall", "north": "tall", @@ -50622,7 +50646,7 @@ } }, { - "id": 22991, + "id": 25305, "properties": { "east": "tall", "north": "tall", @@ -50633,7 +50657,7 @@ } }, { - "id": 22992, + "id": 25306, "properties": { "east": "tall", "north": "tall", @@ -50644,7 +50668,7 @@ } }, { - "id": 22993, + "id": 25307, "properties": { "east": "tall", "north": "tall", @@ -50655,7 +50679,7 @@ } }, { - "id": 22994, + "id": 25308, "properties": { "east": "tall", "north": "tall", @@ -50666,7 +50690,7 @@ } }, { - "id": 22995, + "id": 25309, "properties": { "east": "tall", "north": "tall", @@ -50677,7 +50701,7 @@ } }, { - "id": 22996, + "id": 25310, "properties": { "east": "tall", "north": "tall", @@ -50688,7 +50712,7 @@ } }, { - "id": 22997, + "id": 25311, "properties": { "east": "tall", "north": "tall", @@ -50699,7 +50723,7 @@ } }, { - "id": 22998, + "id": 25312, "properties": { "east": "tall", "north": "tall", @@ -50710,7 +50734,7 @@ } }, { - "id": 22999, + "id": 25313, "properties": { "east": "tall", "north": "tall", @@ -50721,7 +50745,7 @@ } }, { - "id": 23000, + "id": 25314, "properties": { "east": "tall", "north": "tall", @@ -50732,7 +50756,7 @@ } }, { - "id": 23001, + "id": 25315, "properties": { "east": "tall", "north": "tall", @@ -50743,7 +50767,7 @@ } }, { - "id": 23002, + "id": 25316, "properties": { "east": "tall", "north": "tall", @@ -50754,7 +50778,7 @@ } }, { - "id": 23003, + "id": 25317, "properties": { "east": "tall", "north": "tall", @@ -55640,7 +55664,742 @@ "states": [ { "default": true, - "id": 21707 + "id": 22938 + } + ] + }, + "minecraft:copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24692, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24693, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24694, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24695, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23652, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23653, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23654, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23660, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23661, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23662, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23668, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23669, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23670, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23676, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23677, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23678, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23684, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23685, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23686, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23692, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23693, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23694, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23700, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23701, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23702, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23708, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23709, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23710, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24676, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24677, + "properties": { + "waterlogged": "false" + } } ] }, @@ -55648,7 +56407,676 @@ "states": [ { "default": true, - "id": 21708 + "id": 22942 + } + ] + }, + "minecraft:copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24164, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24165, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24166, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24167, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24168, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24169, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24170, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24171, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24172, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24173, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24174, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24175, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24176, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24177, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24178, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24179, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24180, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24181, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24182, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24183, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24184, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24185, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24186, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24187, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24188, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24189, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24190, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24191, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24192, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24193, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24194, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24195, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24196, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24197, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24198, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24199, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24200, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24201, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24202, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24203, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24204, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24205, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24206, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24207, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24208, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24209, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24210, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24211, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24212, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24213, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24214, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24215, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24216, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24217, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24218, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24219, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24220, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24221, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24222, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24223, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24224, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24225, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24226, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24227, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -55664,7 +57092,7 @@ "states": [ { "default": true, - "id": 24238 + "id": 26552 } ] }, @@ -55672,7 +57100,7 @@ "states": [ { "default": true, - "id": 24239 + "id": 26553 } ] }, @@ -55696,7 +57124,420 @@ "states": [ { "default": true, - "id": 6540 + "id": 6539 + } + ] + }, + "minecraft:crafter": { + "properties": { + "crafting": [ + "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" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26590, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26591, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26592, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26593, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26594, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26595, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26596, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26597, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26598, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26599, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26600, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26601, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26602, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26603, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26604, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26605, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26606, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26607, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26608, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26609, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26610, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "id": 26611, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26612, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26613, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "false" + } + }, + { + "id": 26614, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26615, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26616, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26617, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26618, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26619, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26620, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26621, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26622, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26623, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26624, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26625, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26626, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26627, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26628, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26629, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26630, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26631, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26632, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26633, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26634, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "default": true, + "id": 26635, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26636, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26637, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "false" + } } ] }, @@ -60123,7 +61964,7 @@ "states": [ { "default": true, - "id": 21713 + "id": 22947 } ] }, @@ -60141,21 +61982,21 @@ }, "states": [ { - "id": 22052, + "id": 23294, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22053, + "id": 23295, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22054, + "id": 23296, "properties": { "type": "bottom", "waterlogged": "true" @@ -60163,21 +62004,21 @@ }, { "default": true, - "id": 22055, + "id": 23297, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22056, + "id": 23298, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22057, + "id": 23299, "properties": { "type": "double", "waterlogged": "false" @@ -60211,7 +62052,7 @@ }, "states": [ { - "id": 21954, + "id": 23196, "properties": { "facing": "north", "half": "top", @@ -60220,7 +62061,7 @@ } }, { - "id": 21955, + "id": 23197, "properties": { "facing": "north", "half": "top", @@ -60229,7 +62070,7 @@ } }, { - "id": 21956, + "id": 23198, "properties": { "facing": "north", "half": "top", @@ -60238,7 +62079,7 @@ } }, { - "id": 21957, + "id": 23199, "properties": { "facing": "north", "half": "top", @@ -60247,7 +62088,7 @@ } }, { - "id": 21958, + "id": 23200, "properties": { "facing": "north", "half": "top", @@ -60256,7 +62097,7 @@ } }, { - "id": 21959, + "id": 23201, "properties": { "facing": "north", "half": "top", @@ -60265,7 +62106,7 @@ } }, { - "id": 21960, + "id": 23202, "properties": { "facing": "north", "half": "top", @@ -60274,7 +62115,7 @@ } }, { - "id": 21961, + "id": 23203, "properties": { "facing": "north", "half": "top", @@ -60283,7 +62124,7 @@ } }, { - "id": 21962, + "id": 23204, "properties": { "facing": "north", "half": "top", @@ -60292,7 +62133,7 @@ } }, { - "id": 21963, + "id": 23205, "properties": { "facing": "north", "half": "top", @@ -60301,7 +62142,7 @@ } }, { - "id": 21964, + "id": 23206, "properties": { "facing": "north", "half": "bottom", @@ -60311,7 +62152,7 @@ }, { "default": true, - "id": 21965, + "id": 23207, "properties": { "facing": "north", "half": "bottom", @@ -60320,7 +62161,7 @@ } }, { - "id": 21966, + "id": 23208, "properties": { "facing": "north", "half": "bottom", @@ -60329,7 +62170,7 @@ } }, { - "id": 21967, + "id": 23209, "properties": { "facing": "north", "half": "bottom", @@ -60338,7 +62179,7 @@ } }, { - "id": 21968, + "id": 23210, "properties": { "facing": "north", "half": "bottom", @@ -60347,7 +62188,7 @@ } }, { - "id": 21969, + "id": 23211, "properties": { "facing": "north", "half": "bottom", @@ -60356,7 +62197,7 @@ } }, { - "id": 21970, + "id": 23212, "properties": { "facing": "north", "half": "bottom", @@ -60365,7 +62206,7 @@ } }, { - "id": 21971, + "id": 23213, "properties": { "facing": "north", "half": "bottom", @@ -60374,7 +62215,7 @@ } }, { - "id": 21972, + "id": 23214, "properties": { "facing": "north", "half": "bottom", @@ -60383,7 +62224,7 @@ } }, { - "id": 21973, + "id": 23215, "properties": { "facing": "north", "half": "bottom", @@ -60392,7 +62233,7 @@ } }, { - "id": 21974, + "id": 23216, "properties": { "facing": "south", "half": "top", @@ -60401,7 +62242,7 @@ } }, { - "id": 21975, + "id": 23217, "properties": { "facing": "south", "half": "top", @@ -60410,7 +62251,7 @@ } }, { - "id": 21976, + "id": 23218, "properties": { "facing": "south", "half": "top", @@ -60419,7 +62260,7 @@ } }, { - "id": 21977, + "id": 23219, "properties": { "facing": "south", "half": "top", @@ -60428,7 +62269,7 @@ } }, { - "id": 21978, + "id": 23220, "properties": { "facing": "south", "half": "top", @@ -60437,7 +62278,7 @@ } }, { - "id": 21979, + "id": 23221, "properties": { "facing": "south", "half": "top", @@ -60446,7 +62287,7 @@ } }, { - "id": 21980, + "id": 23222, "properties": { "facing": "south", "half": "top", @@ -60455,7 +62296,7 @@ } }, { - "id": 21981, + "id": 23223, "properties": { "facing": "south", "half": "top", @@ -60464,7 +62305,7 @@ } }, { - "id": 21982, + "id": 23224, "properties": { "facing": "south", "half": "top", @@ -60473,7 +62314,7 @@ } }, { - "id": 21983, + "id": 23225, "properties": { "facing": "south", "half": "top", @@ -60482,7 +62323,7 @@ } }, { - "id": 21984, + "id": 23226, "properties": { "facing": "south", "half": "bottom", @@ -60491,7 +62332,7 @@ } }, { - "id": 21985, + "id": 23227, "properties": { "facing": "south", "half": "bottom", @@ -60500,7 +62341,7 @@ } }, { - "id": 21986, + "id": 23228, "properties": { "facing": "south", "half": "bottom", @@ -60509,7 +62350,7 @@ } }, { - "id": 21987, + "id": 23229, "properties": { "facing": "south", "half": "bottom", @@ -60518,7 +62359,7 @@ } }, { - "id": 21988, + "id": 23230, "properties": { "facing": "south", "half": "bottom", @@ -60527,7 +62368,7 @@ } }, { - "id": 21989, + "id": 23231, "properties": { "facing": "south", "half": "bottom", @@ -60536,7 +62377,7 @@ } }, { - "id": 21990, + "id": 23232, "properties": { "facing": "south", "half": "bottom", @@ -60545,7 +62386,7 @@ } }, { - "id": 21991, + "id": 23233, "properties": { "facing": "south", "half": "bottom", @@ -60554,7 +62395,7 @@ } }, { - "id": 21992, + "id": 23234, "properties": { "facing": "south", "half": "bottom", @@ -60563,7 +62404,7 @@ } }, { - "id": 21993, + "id": 23235, "properties": { "facing": "south", "half": "bottom", @@ -60572,7 +62413,7 @@ } }, { - "id": 21994, + "id": 23236, "properties": { "facing": "west", "half": "top", @@ -60581,7 +62422,7 @@ } }, { - "id": 21995, + "id": 23237, "properties": { "facing": "west", "half": "top", @@ -60590,7 +62431,7 @@ } }, { - "id": 21996, + "id": 23238, "properties": { "facing": "west", "half": "top", @@ -60599,7 +62440,7 @@ } }, { - "id": 21997, + "id": 23239, "properties": { "facing": "west", "half": "top", @@ -60608,7 +62449,7 @@ } }, { - "id": 21998, + "id": 23240, "properties": { "facing": "west", "half": "top", @@ -60617,7 +62458,7 @@ } }, { - "id": 21999, + "id": 23241, "properties": { "facing": "west", "half": "top", @@ -60626,7 +62467,7 @@ } }, { - "id": 22000, + "id": 23242, "properties": { "facing": "west", "half": "top", @@ -60635,7 +62476,7 @@ } }, { - "id": 22001, + "id": 23243, "properties": { "facing": "west", "half": "top", @@ -60644,7 +62485,7 @@ } }, { - "id": 22002, + "id": 23244, "properties": { "facing": "west", "half": "top", @@ -60653,7 +62494,7 @@ } }, { - "id": 22003, + "id": 23245, "properties": { "facing": "west", "half": "top", @@ -60662,7 +62503,7 @@ } }, { - "id": 22004, + "id": 23246, "properties": { "facing": "west", "half": "bottom", @@ -60671,7 +62512,7 @@ } }, { - "id": 22005, + "id": 23247, "properties": { "facing": "west", "half": "bottom", @@ -60680,7 +62521,7 @@ } }, { - "id": 22006, + "id": 23248, "properties": { "facing": "west", "half": "bottom", @@ -60689,7 +62530,7 @@ } }, { - "id": 22007, + "id": 23249, "properties": { "facing": "west", "half": "bottom", @@ -60698,7 +62539,7 @@ } }, { - "id": 22008, + "id": 23250, "properties": { "facing": "west", "half": "bottom", @@ -60707,7 +62548,7 @@ } }, { - "id": 22009, + "id": 23251, "properties": { "facing": "west", "half": "bottom", @@ -60716,7 +62557,7 @@ } }, { - "id": 22010, + "id": 23252, "properties": { "facing": "west", "half": "bottom", @@ -60725,7 +62566,7 @@ } }, { - "id": 22011, + "id": 23253, "properties": { "facing": "west", "half": "bottom", @@ -60734,7 +62575,7 @@ } }, { - "id": 22012, + "id": 23254, "properties": { "facing": "west", "half": "bottom", @@ -60743,7 +62584,7 @@ } }, { - "id": 22013, + "id": 23255, "properties": { "facing": "west", "half": "bottom", @@ -60752,7 +62593,7 @@ } }, { - "id": 22014, + "id": 23256, "properties": { "facing": "east", "half": "top", @@ -60761,7 +62602,7 @@ } }, { - "id": 22015, + "id": 23257, "properties": { "facing": "east", "half": "top", @@ -60770,7 +62611,7 @@ } }, { - "id": 22016, + "id": 23258, "properties": { "facing": "east", "half": "top", @@ -60779,7 +62620,7 @@ } }, { - "id": 22017, + "id": 23259, "properties": { "facing": "east", "half": "top", @@ -60788,7 +62629,7 @@ } }, { - "id": 22018, + "id": 23260, "properties": { "facing": "east", "half": "top", @@ -60797,7 +62638,7 @@ } }, { - "id": 22019, + "id": 23261, "properties": { "facing": "east", "half": "top", @@ -60806,7 +62647,7 @@ } }, { - "id": 22020, + "id": 23262, "properties": { "facing": "east", "half": "top", @@ -60815,7 +62656,7 @@ } }, { - "id": 22021, + "id": 23263, "properties": { "facing": "east", "half": "top", @@ -60824,7 +62665,7 @@ } }, { - "id": 22022, + "id": 23264, "properties": { "facing": "east", "half": "top", @@ -60833,7 +62674,7 @@ } }, { - "id": 22023, + "id": 23265, "properties": { "facing": "east", "half": "top", @@ -60842,7 +62683,7 @@ } }, { - "id": 22024, + "id": 23266, "properties": { "facing": "east", "half": "bottom", @@ -60851,7 +62692,7 @@ } }, { - "id": 22025, + "id": 23267, "properties": { "facing": "east", "half": "bottom", @@ -60860,7 +62701,7 @@ } }, { - "id": 22026, + "id": 23268, "properties": { "facing": "east", "half": "bottom", @@ -60869,7 +62710,7 @@ } }, { - "id": 22027, + "id": 23269, "properties": { "facing": "east", "half": "bottom", @@ -60878,7 +62719,7 @@ } }, { - "id": 22028, + "id": 23270, "properties": { "facing": "east", "half": "bottom", @@ -60887,7 +62728,7 @@ } }, { - "id": 22029, + "id": 23271, "properties": { "facing": "east", "half": "bottom", @@ -60896,7 +62737,7 @@ } }, { - "id": 22030, + "id": 23272, "properties": { "facing": "east", "half": "bottom", @@ -60905,7 +62746,7 @@ } }, { - "id": 22031, + "id": 23273, "properties": { "facing": "east", "half": "bottom", @@ -60914,7 +62755,7 @@ } }, { - "id": 22032, + "id": 23274, "properties": { "facing": "east", "half": "bottom", @@ -60923,7 +62764,7 @@ } }, { - "id": 22033, + "id": 23275, "properties": { "facing": "east", "half": "bottom", @@ -61623,7 +63464,7 @@ "states": [ { "default": true, - "id": 5955 + "id": 5954 } ] }, @@ -65578,7 +67419,7 @@ }, "states": [ { - "id": 6346, + "id": 6345, "properties": { "facing": "north", "half": "top", @@ -65588,7 +67429,7 @@ } }, { - "id": 6347, + "id": 6346, "properties": { "facing": "north", "half": "top", @@ -65597,6 +67438,16 @@ "waterlogged": "false" } }, + { + "id": 6347, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6348, "properties": { @@ -65604,7 +67455,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65612,9 +67463,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -65624,7 +67475,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65633,8 +67484,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65644,17 +67495,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6353, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -65664,7 +67515,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65673,8 +67524,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65684,7 +67535,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65692,23 +67543,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6358, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6359, "properties": { "facing": "north", "half": "bottom", @@ -65718,7 +67559,7 @@ } }, { - "id": 6360, + "id": 6359, "properties": { "facing": "north", "half": "bottom", @@ -65729,7 +67570,7 @@ }, { "default": true, - "id": 6361, + "id": 6360, "properties": { "facing": "north", "half": "bottom", @@ -65739,7 +67580,7 @@ } }, { - "id": 6362, + "id": 6361, "properties": { "facing": "south", "half": "top", @@ -65749,7 +67590,7 @@ } }, { - "id": 6363, + "id": 6362, "properties": { "facing": "south", "half": "top", @@ -65758,6 +67599,16 @@ "waterlogged": "false" } }, + { + "id": 6363, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6364, "properties": { @@ -65765,7 +67616,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65773,9 +67624,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -65785,7 +67636,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65794,8 +67645,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65805,17 +67656,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6369, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -65825,7 +67676,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65834,8 +67685,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65845,7 +67696,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65853,9 +67704,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -65865,7 +67716,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65874,8 +67725,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65885,17 +67736,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6377, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -65905,7 +67756,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65914,8 +67765,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65925,7 +67776,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65933,9 +67784,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -65945,7 +67796,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65954,8 +67805,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -65965,17 +67816,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6385, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -65985,7 +67836,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -65994,8 +67845,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -66005,7 +67856,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66013,9 +67864,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -66025,7 +67876,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66034,8 +67885,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -66045,17 +67896,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6393, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -66065,7 +67916,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66074,8 +67925,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -66085,7 +67936,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66093,9 +67944,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -66105,7 +67956,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66114,8 +67965,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -66125,17 +67976,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6401, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -66145,7 +67996,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66154,8 +68005,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -66165,7 +68016,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -66173,23 +68024,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6406, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6407, "properties": { "facing": "east", "half": "bottom", @@ -66199,7 +68040,7 @@ } }, { - "id": 6408, + "id": 6407, "properties": { "facing": "east", "half": "bottom", @@ -66209,7 +68050,7 @@ } }, { - "id": 6409, + "id": 6408, "properties": { "facing": "east", "half": "bottom", @@ -68125,7 +69966,7 @@ }, "states": [ { - "id": 24260, + "id": 26574, "properties": { "cracked": "true", "facing": "north", @@ -68133,7 +69974,7 @@ } }, { - "id": 24261, + "id": 26575, "properties": { "cracked": "true", "facing": "north", @@ -68141,7 +69982,7 @@ } }, { - "id": 24262, + "id": 26576, "properties": { "cracked": "true", "facing": "south", @@ -68149,7 +69990,7 @@ } }, { - "id": 24263, + "id": 26577, "properties": { "cracked": "true", "facing": "south", @@ -68157,7 +69998,7 @@ } }, { - "id": 24264, + "id": 26578, "properties": { "cracked": "true", "facing": "west", @@ -68165,7 +70006,7 @@ } }, { - "id": 24265, + "id": 26579, "properties": { "cracked": "true", "facing": "west", @@ -68173,7 +70014,7 @@ } }, { - "id": 24266, + "id": 26580, "properties": { "cracked": "true", "facing": "east", @@ -68181,7 +70022,7 @@ } }, { - "id": 24267, + "id": 26581, "properties": { "cracked": "true", "facing": "east", @@ -68189,7 +70030,7 @@ } }, { - "id": 24268, + "id": 26582, "properties": { "cracked": "false", "facing": "north", @@ -68198,7 +70039,7 @@ }, { "default": true, - "id": 24269, + "id": 26583, "properties": { "cracked": "false", "facing": "north", @@ -68206,7 +70047,7 @@ } }, { - "id": 24270, + "id": 26584, "properties": { "cracked": "false", "facing": "south", @@ -68214,7 +70055,7 @@ } }, { - "id": 24271, + "id": 26585, "properties": { "cracked": "false", "facing": "south", @@ -68222,7 +70063,7 @@ } }, { - "id": 24272, + "id": 26586, "properties": { "cracked": "false", "facing": "west", @@ -68230,7 +70071,7 @@ } }, { - "id": 24273, + "id": 26587, "properties": { "cracked": "false", "facing": "west", @@ -68238,7 +70079,7 @@ } }, { - "id": 24274, + "id": 26588, "properties": { "cracked": "false", "facing": "east", @@ -68246,7 +70087,7 @@ } }, { - "id": 24275, + "id": 26589, "properties": { "cracked": "false", "facing": "east", @@ -68265,20 +70106,20 @@ }, "states": [ { - "id": 22590, + "id": 24904, "properties": { "axis": "x" } }, { "default": true, - "id": 22591, + "id": 24905, "properties": { "axis": "y" } }, { - "id": 22592, + "id": 24906, "properties": { "axis": "z" } @@ -68299,21 +70140,21 @@ }, "states": [ { - "id": 23907, + "id": 26221, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23908, + "id": 26222, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23909, + "id": 26223, "properties": { "type": "bottom", "waterlogged": "true" @@ -68321,21 +70162,21 @@ }, { "default": true, - "id": 23910, + "id": 26224, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23911, + "id": 26225, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23912, + "id": 26226, "properties": { "type": "double", "waterlogged": "false" @@ -68369,7 +70210,7 @@ }, "states": [ { - "id": 23827, + "id": 26141, "properties": { "facing": "north", "half": "top", @@ -68378,7 +70219,7 @@ } }, { - "id": 23828, + "id": 26142, "properties": { "facing": "north", "half": "top", @@ -68387,7 +70228,7 @@ } }, { - "id": 23829, + "id": 26143, "properties": { "facing": "north", "half": "top", @@ -68396,7 +70237,7 @@ } }, { - "id": 23830, + "id": 26144, "properties": { "facing": "north", "half": "top", @@ -68405,7 +70246,7 @@ } }, { - "id": 23831, + "id": 26145, "properties": { "facing": "north", "half": "top", @@ -68414,7 +70255,7 @@ } }, { - "id": 23832, + "id": 26146, "properties": { "facing": "north", "half": "top", @@ -68423,7 +70264,7 @@ } }, { - "id": 23833, + "id": 26147, "properties": { "facing": "north", "half": "top", @@ -68432,7 +70273,7 @@ } }, { - "id": 23834, + "id": 26148, "properties": { "facing": "north", "half": "top", @@ -68441,7 +70282,7 @@ } }, { - "id": 23835, + "id": 26149, "properties": { "facing": "north", "half": "top", @@ -68450,7 +70291,7 @@ } }, { - "id": 23836, + "id": 26150, "properties": { "facing": "north", "half": "top", @@ -68459,7 +70300,7 @@ } }, { - "id": 23837, + "id": 26151, "properties": { "facing": "north", "half": "bottom", @@ -68469,7 +70310,7 @@ }, { "default": true, - "id": 23838, + "id": 26152, "properties": { "facing": "north", "half": "bottom", @@ -68478,7 +70319,7 @@ } }, { - "id": 23839, + "id": 26153, "properties": { "facing": "north", "half": "bottom", @@ -68487,7 +70328,7 @@ } }, { - "id": 23840, + "id": 26154, "properties": { "facing": "north", "half": "bottom", @@ -68496,7 +70337,7 @@ } }, { - "id": 23841, + "id": 26155, "properties": { "facing": "north", "half": "bottom", @@ -68505,7 +70346,7 @@ } }, { - "id": 23842, + "id": 26156, "properties": { "facing": "north", "half": "bottom", @@ -68514,7 +70355,7 @@ } }, { - "id": 23843, + "id": 26157, "properties": { "facing": "north", "half": "bottom", @@ -68523,7 +70364,7 @@ } }, { - "id": 23844, + "id": 26158, "properties": { "facing": "north", "half": "bottom", @@ -68532,7 +70373,7 @@ } }, { - "id": 23845, + "id": 26159, "properties": { "facing": "north", "half": "bottom", @@ -68541,7 +70382,7 @@ } }, { - "id": 23846, + "id": 26160, "properties": { "facing": "north", "half": "bottom", @@ -68550,7 +70391,7 @@ } }, { - "id": 23847, + "id": 26161, "properties": { "facing": "south", "half": "top", @@ -68559,7 +70400,7 @@ } }, { - "id": 23848, + "id": 26162, "properties": { "facing": "south", "half": "top", @@ -68568,7 +70409,7 @@ } }, { - "id": 23849, + "id": 26163, "properties": { "facing": "south", "half": "top", @@ -68577,7 +70418,7 @@ } }, { - "id": 23850, + "id": 26164, "properties": { "facing": "south", "half": "top", @@ -68586,7 +70427,7 @@ } }, { - "id": 23851, + "id": 26165, "properties": { "facing": "south", "half": "top", @@ -68595,7 +70436,7 @@ } }, { - "id": 23852, + "id": 26166, "properties": { "facing": "south", "half": "top", @@ -68604,7 +70445,7 @@ } }, { - "id": 23853, + "id": 26167, "properties": { "facing": "south", "half": "top", @@ -68613,7 +70454,7 @@ } }, { - "id": 23854, + "id": 26168, "properties": { "facing": "south", "half": "top", @@ -68622,7 +70463,7 @@ } }, { - "id": 23855, + "id": 26169, "properties": { "facing": "south", "half": "top", @@ -68631,7 +70472,7 @@ } }, { - "id": 23856, + "id": 26170, "properties": { "facing": "south", "half": "top", @@ -68640,7 +70481,7 @@ } }, { - "id": 23857, + "id": 26171, "properties": { "facing": "south", "half": "bottom", @@ -68649,7 +70490,7 @@ } }, { - "id": 23858, + "id": 26172, "properties": { "facing": "south", "half": "bottom", @@ -68658,7 +70499,7 @@ } }, { - "id": 23859, + "id": 26173, "properties": { "facing": "south", "half": "bottom", @@ -68667,7 +70508,7 @@ } }, { - "id": 23860, + "id": 26174, "properties": { "facing": "south", "half": "bottom", @@ -68676,7 +70517,7 @@ } }, { - "id": 23861, + "id": 26175, "properties": { "facing": "south", "half": "bottom", @@ -68685,7 +70526,7 @@ } }, { - "id": 23862, + "id": 26176, "properties": { "facing": "south", "half": "bottom", @@ -68694,7 +70535,7 @@ } }, { - "id": 23863, + "id": 26177, "properties": { "facing": "south", "half": "bottom", @@ -68703,7 +70544,7 @@ } }, { - "id": 23864, + "id": 26178, "properties": { "facing": "south", "half": "bottom", @@ -68712,7 +70553,7 @@ } }, { - "id": 23865, + "id": 26179, "properties": { "facing": "south", "half": "bottom", @@ -68721,7 +70562,7 @@ } }, { - "id": 23866, + "id": 26180, "properties": { "facing": "south", "half": "bottom", @@ -68730,7 +70571,7 @@ } }, { - "id": 23867, + "id": 26181, "properties": { "facing": "west", "half": "top", @@ -68739,7 +70580,7 @@ } }, { - "id": 23868, + "id": 26182, "properties": { "facing": "west", "half": "top", @@ -68748,7 +70589,7 @@ } }, { - "id": 23869, + "id": 26183, "properties": { "facing": "west", "half": "top", @@ -68757,7 +70598,7 @@ } }, { - "id": 23870, + "id": 26184, "properties": { "facing": "west", "half": "top", @@ -68766,7 +70607,7 @@ } }, { - "id": 23871, + "id": 26185, "properties": { "facing": "west", "half": "top", @@ -68775,7 +70616,7 @@ } }, { - "id": 23872, + "id": 26186, "properties": { "facing": "west", "half": "top", @@ -68784,7 +70625,7 @@ } }, { - "id": 23873, + "id": 26187, "properties": { "facing": "west", "half": "top", @@ -68793,7 +70634,7 @@ } }, { - "id": 23874, + "id": 26188, "properties": { "facing": "west", "half": "top", @@ -68802,7 +70643,7 @@ } }, { - "id": 23875, + "id": 26189, "properties": { "facing": "west", "half": "top", @@ -68811,7 +70652,7 @@ } }, { - "id": 23876, + "id": 26190, "properties": { "facing": "west", "half": "top", @@ -68820,7 +70661,7 @@ } }, { - "id": 23877, + "id": 26191, "properties": { "facing": "west", "half": "bottom", @@ -68829,7 +70670,7 @@ } }, { - "id": 23878, + "id": 26192, "properties": { "facing": "west", "half": "bottom", @@ -68838,7 +70679,7 @@ } }, { - "id": 23879, + "id": 26193, "properties": { "facing": "west", "half": "bottom", @@ -68847,7 +70688,7 @@ } }, { - "id": 23880, + "id": 26194, "properties": { "facing": "west", "half": "bottom", @@ -68856,7 +70697,7 @@ } }, { - "id": 23881, + "id": 26195, "properties": { "facing": "west", "half": "bottom", @@ -68865,7 +70706,7 @@ } }, { - "id": 23882, + "id": 26196, "properties": { "facing": "west", "half": "bottom", @@ -68874,7 +70715,7 @@ } }, { - "id": 23883, + "id": 26197, "properties": { "facing": "west", "half": "bottom", @@ -68883,7 +70724,7 @@ } }, { - "id": 23884, + "id": 26198, "properties": { "facing": "west", "half": "bottom", @@ -68892,7 +70733,7 @@ } }, { - "id": 23885, + "id": 26199, "properties": { "facing": "west", "half": "bottom", @@ -68901,7 +70742,7 @@ } }, { - "id": 23886, + "id": 26200, "properties": { "facing": "west", "half": "bottom", @@ -68910,7 +70751,7 @@ } }, { - "id": 23887, + "id": 26201, "properties": { "facing": "east", "half": "top", @@ -68919,7 +70760,7 @@ } }, { - "id": 23888, + "id": 26202, "properties": { "facing": "east", "half": "top", @@ -68928,7 +70769,7 @@ } }, { - "id": 23889, + "id": 26203, "properties": { "facing": "east", "half": "top", @@ -68937,7 +70778,7 @@ } }, { - "id": 23890, + "id": 26204, "properties": { "facing": "east", "half": "top", @@ -68946,7 +70787,7 @@ } }, { - "id": 23891, + "id": 26205, "properties": { "facing": "east", "half": "top", @@ -68955,7 +70796,7 @@ } }, { - "id": 23892, + "id": 26206, "properties": { "facing": "east", "half": "top", @@ -68964,7 +70805,7 @@ } }, { - "id": 23893, + "id": 26207, "properties": { "facing": "east", "half": "top", @@ -68973,7 +70814,7 @@ } }, { - "id": 23894, + "id": 26208, "properties": { "facing": "east", "half": "top", @@ -68982,7 +70823,7 @@ } }, { - "id": 23895, + "id": 26209, "properties": { "facing": "east", "half": "top", @@ -68991,7 +70832,7 @@ } }, { - "id": 23896, + "id": 26210, "properties": { "facing": "east", "half": "top", @@ -69000,7 +70841,7 @@ } }, { - "id": 23897, + "id": 26211, "properties": { "facing": "east", "half": "bottom", @@ -69009,7 +70850,7 @@ } }, { - "id": 23898, + "id": 26212, "properties": { "facing": "east", "half": "bottom", @@ -69018,7 +70859,7 @@ } }, { - "id": 23899, + "id": 26213, "properties": { "facing": "east", "half": "bottom", @@ -69027,7 +70868,7 @@ } }, { - "id": 23900, + "id": 26214, "properties": { "facing": "east", "half": "bottom", @@ -69036,7 +70877,7 @@ } }, { - "id": 23901, + "id": 26215, "properties": { "facing": "east", "half": "bottom", @@ -69045,7 +70886,7 @@ } }, { - "id": 23902, + "id": 26216, "properties": { "facing": "east", "half": "bottom", @@ -69054,7 +70895,7 @@ } }, { - "id": 23903, + "id": 26217, "properties": { "facing": "east", "half": "bottom", @@ -69063,7 +70904,7 @@ } }, { - "id": 23904, + "id": 26218, "properties": { "facing": "east", "half": "bottom", @@ -69072,7 +70913,7 @@ } }, { - "id": 23905, + "id": 26219, "properties": { "facing": "east", "half": "bottom", @@ -69081,7 +70922,7 @@ } }, { - "id": 23906, + "id": 26220, "properties": { "facing": "east", "half": "bottom", @@ -69124,7 +70965,7 @@ }, "states": [ { - "id": 23913, + "id": 26227, "properties": { "east": "none", "north": "none", @@ -69135,7 +70976,7 @@ } }, { - "id": 23914, + "id": 26228, "properties": { "east": "none", "north": "none", @@ -69146,7 +70987,7 @@ } }, { - "id": 23915, + "id": 26229, "properties": { "east": "none", "north": "none", @@ -69158,7 +70999,7 @@ }, { "default": true, - "id": 23916, + "id": 26230, "properties": { "east": "none", "north": "none", @@ -69169,7 +71010,7 @@ } }, { - "id": 23917, + "id": 26231, "properties": { "east": "none", "north": "none", @@ -69180,7 +71021,7 @@ } }, { - "id": 23918, + "id": 26232, "properties": { "east": "none", "north": "none", @@ -69191,7 +71032,7 @@ } }, { - "id": 23919, + "id": 26233, "properties": { "east": "none", "north": "none", @@ -69202,7 +71043,7 @@ } }, { - "id": 23920, + "id": 26234, "properties": { "east": "none", "north": "none", @@ -69213,7 +71054,7 @@ } }, { - "id": 23921, + "id": 26235, "properties": { "east": "none", "north": "none", @@ -69224,7 +71065,7 @@ } }, { - "id": 23922, + "id": 26236, "properties": { "east": "none", "north": "none", @@ -69235,7 +71076,7 @@ } }, { - "id": 23923, + "id": 26237, "properties": { "east": "none", "north": "none", @@ -69246,7 +71087,7 @@ } }, { - "id": 23924, + "id": 26238, "properties": { "east": "none", "north": "none", @@ -69257,7 +71098,7 @@ } }, { - "id": 23925, + "id": 26239, "properties": { "east": "none", "north": "none", @@ -69268,7 +71109,7 @@ } }, { - "id": 23926, + "id": 26240, "properties": { "east": "none", "north": "none", @@ -69279,7 +71120,7 @@ } }, { - "id": 23927, + "id": 26241, "properties": { "east": "none", "north": "none", @@ -69290,7 +71131,7 @@ } }, { - "id": 23928, + "id": 26242, "properties": { "east": "none", "north": "none", @@ -69301,7 +71142,7 @@ } }, { - "id": 23929, + "id": 26243, "properties": { "east": "none", "north": "none", @@ -69312,7 +71153,7 @@ } }, { - "id": 23930, + "id": 26244, "properties": { "east": "none", "north": "none", @@ -69323,7 +71164,7 @@ } }, { - "id": 23931, + "id": 26245, "properties": { "east": "none", "north": "none", @@ -69334,7 +71175,7 @@ } }, { - "id": 23932, + "id": 26246, "properties": { "east": "none", "north": "none", @@ -69345,7 +71186,7 @@ } }, { - "id": 23933, + "id": 26247, "properties": { "east": "none", "north": "none", @@ -69356,7 +71197,7 @@ } }, { - "id": 23934, + "id": 26248, "properties": { "east": "none", "north": "none", @@ -69367,7 +71208,7 @@ } }, { - "id": 23935, + "id": 26249, "properties": { "east": "none", "north": "none", @@ -69378,7 +71219,7 @@ } }, { - "id": 23936, + "id": 26250, "properties": { "east": "none", "north": "none", @@ -69389,7 +71230,7 @@ } }, { - "id": 23937, + "id": 26251, "properties": { "east": "none", "north": "none", @@ -69400,7 +71241,7 @@ } }, { - "id": 23938, + "id": 26252, "properties": { "east": "none", "north": "none", @@ -69411,7 +71252,7 @@ } }, { - "id": 23939, + "id": 26253, "properties": { "east": "none", "north": "none", @@ -69422,7 +71263,7 @@ } }, { - "id": 23940, + "id": 26254, "properties": { "east": "none", "north": "none", @@ -69433,7 +71274,7 @@ } }, { - "id": 23941, + "id": 26255, "properties": { "east": "none", "north": "none", @@ -69444,7 +71285,7 @@ } }, { - "id": 23942, + "id": 26256, "properties": { "east": "none", "north": "none", @@ -69455,7 +71296,7 @@ } }, { - "id": 23943, + "id": 26257, "properties": { "east": "none", "north": "none", @@ -69466,7 +71307,7 @@ } }, { - "id": 23944, + "id": 26258, "properties": { "east": "none", "north": "none", @@ -69477,7 +71318,7 @@ } }, { - "id": 23945, + "id": 26259, "properties": { "east": "none", "north": "none", @@ -69488,7 +71329,7 @@ } }, { - "id": 23946, + "id": 26260, "properties": { "east": "none", "north": "none", @@ -69499,7 +71340,7 @@ } }, { - "id": 23947, + "id": 26261, "properties": { "east": "none", "north": "none", @@ -69510,7 +71351,7 @@ } }, { - "id": 23948, + "id": 26262, "properties": { "east": "none", "north": "none", @@ -69521,7 +71362,7 @@ } }, { - "id": 23949, + "id": 26263, "properties": { "east": "none", "north": "low", @@ -69532,7 +71373,7 @@ } }, { - "id": 23950, + "id": 26264, "properties": { "east": "none", "north": "low", @@ -69543,7 +71384,7 @@ } }, { - "id": 23951, + "id": 26265, "properties": { "east": "none", "north": "low", @@ -69554,7 +71395,7 @@ } }, { - "id": 23952, + "id": 26266, "properties": { "east": "none", "north": "low", @@ -69565,7 +71406,7 @@ } }, { - "id": 23953, + "id": 26267, "properties": { "east": "none", "north": "low", @@ -69576,7 +71417,7 @@ } }, { - "id": 23954, + "id": 26268, "properties": { "east": "none", "north": "low", @@ -69587,7 +71428,7 @@ } }, { - "id": 23955, + "id": 26269, "properties": { "east": "none", "north": "low", @@ -69598,7 +71439,7 @@ } }, { - "id": 23956, + "id": 26270, "properties": { "east": "none", "north": "low", @@ -69609,7 +71450,7 @@ } }, { - "id": 23957, + "id": 26271, "properties": { "east": "none", "north": "low", @@ -69620,7 +71461,7 @@ } }, { - "id": 23958, + "id": 26272, "properties": { "east": "none", "north": "low", @@ -69631,7 +71472,7 @@ } }, { - "id": 23959, + "id": 26273, "properties": { "east": "none", "north": "low", @@ -69642,7 +71483,7 @@ } }, { - "id": 23960, + "id": 26274, "properties": { "east": "none", "north": "low", @@ -69653,7 +71494,7 @@ } }, { - "id": 23961, + "id": 26275, "properties": { "east": "none", "north": "low", @@ -69664,7 +71505,7 @@ } }, { - "id": 23962, + "id": 26276, "properties": { "east": "none", "north": "low", @@ -69675,7 +71516,7 @@ } }, { - "id": 23963, + "id": 26277, "properties": { "east": "none", "north": "low", @@ -69686,7 +71527,7 @@ } }, { - "id": 23964, + "id": 26278, "properties": { "east": "none", "north": "low", @@ -69697,7 +71538,7 @@ } }, { - "id": 23965, + "id": 26279, "properties": { "east": "none", "north": "low", @@ -69708,7 +71549,7 @@ } }, { - "id": 23966, + "id": 26280, "properties": { "east": "none", "north": "low", @@ -69719,7 +71560,7 @@ } }, { - "id": 23967, + "id": 26281, "properties": { "east": "none", "north": "low", @@ -69730,7 +71571,7 @@ } }, { - "id": 23968, + "id": 26282, "properties": { "east": "none", "north": "low", @@ -69741,7 +71582,7 @@ } }, { - "id": 23969, + "id": 26283, "properties": { "east": "none", "north": "low", @@ -69752,7 +71593,7 @@ } }, { - "id": 23970, + "id": 26284, "properties": { "east": "none", "north": "low", @@ -69763,7 +71604,7 @@ } }, { - "id": 23971, + "id": 26285, "properties": { "east": "none", "north": "low", @@ -69774,7 +71615,7 @@ } }, { - "id": 23972, + "id": 26286, "properties": { "east": "none", "north": "low", @@ -69785,7 +71626,7 @@ } }, { - "id": 23973, + "id": 26287, "properties": { "east": "none", "north": "low", @@ -69796,7 +71637,7 @@ } }, { - "id": 23974, + "id": 26288, "properties": { "east": "none", "north": "low", @@ -69807,7 +71648,7 @@ } }, { - "id": 23975, + "id": 26289, "properties": { "east": "none", "north": "low", @@ -69818,7 +71659,7 @@ } }, { - "id": 23976, + "id": 26290, "properties": { "east": "none", "north": "low", @@ -69829,7 +71670,7 @@ } }, { - "id": 23977, + "id": 26291, "properties": { "east": "none", "north": "low", @@ -69840,7 +71681,7 @@ } }, { - "id": 23978, + "id": 26292, "properties": { "east": "none", "north": "low", @@ -69851,7 +71692,7 @@ } }, { - "id": 23979, + "id": 26293, "properties": { "east": "none", "north": "low", @@ -69862,7 +71703,7 @@ } }, { - "id": 23980, + "id": 26294, "properties": { "east": "none", "north": "low", @@ -69873,7 +71714,7 @@ } }, { - "id": 23981, + "id": 26295, "properties": { "east": "none", "north": "low", @@ -69884,7 +71725,7 @@ } }, { - "id": 23982, + "id": 26296, "properties": { "east": "none", "north": "low", @@ -69895,7 +71736,7 @@ } }, { - "id": 23983, + "id": 26297, "properties": { "east": "none", "north": "low", @@ -69906,7 +71747,7 @@ } }, { - "id": 23984, + "id": 26298, "properties": { "east": "none", "north": "low", @@ -69917,7 +71758,7 @@ } }, { - "id": 23985, + "id": 26299, "properties": { "east": "none", "north": "tall", @@ -69928,7 +71769,7 @@ } }, { - "id": 23986, + "id": 26300, "properties": { "east": "none", "north": "tall", @@ -69939,7 +71780,7 @@ } }, { - "id": 23987, + "id": 26301, "properties": { "east": "none", "north": "tall", @@ -69950,7 +71791,7 @@ } }, { - "id": 23988, + "id": 26302, "properties": { "east": "none", "north": "tall", @@ -69961,7 +71802,7 @@ } }, { - "id": 23989, + "id": 26303, "properties": { "east": "none", "north": "tall", @@ -69972,7 +71813,7 @@ } }, { - "id": 23990, + "id": 26304, "properties": { "east": "none", "north": "tall", @@ -69983,7 +71824,7 @@ } }, { - "id": 23991, + "id": 26305, "properties": { "east": "none", "north": "tall", @@ -69994,7 +71835,7 @@ } }, { - "id": 23992, + "id": 26306, "properties": { "east": "none", "north": "tall", @@ -70005,7 +71846,7 @@ } }, { - "id": 23993, + "id": 26307, "properties": { "east": "none", "north": "tall", @@ -70016,7 +71857,7 @@ } }, { - "id": 23994, + "id": 26308, "properties": { "east": "none", "north": "tall", @@ -70027,7 +71868,7 @@ } }, { - "id": 23995, + "id": 26309, "properties": { "east": "none", "north": "tall", @@ -70038,7 +71879,7 @@ } }, { - "id": 23996, + "id": 26310, "properties": { "east": "none", "north": "tall", @@ -70049,7 +71890,7 @@ } }, { - "id": 23997, + "id": 26311, "properties": { "east": "none", "north": "tall", @@ -70060,7 +71901,7 @@ } }, { - "id": 23998, + "id": 26312, "properties": { "east": "none", "north": "tall", @@ -70071,7 +71912,7 @@ } }, { - "id": 23999, + "id": 26313, "properties": { "east": "none", "north": "tall", @@ -70082,7 +71923,7 @@ } }, { - "id": 24000, + "id": 26314, "properties": { "east": "none", "north": "tall", @@ -70093,7 +71934,7 @@ } }, { - "id": 24001, + "id": 26315, "properties": { "east": "none", "north": "tall", @@ -70104,7 +71945,7 @@ } }, { - "id": 24002, + "id": 26316, "properties": { "east": "none", "north": "tall", @@ -70115,7 +71956,7 @@ } }, { - "id": 24003, + "id": 26317, "properties": { "east": "none", "north": "tall", @@ -70126,7 +71967,7 @@ } }, { - "id": 24004, + "id": 26318, "properties": { "east": "none", "north": "tall", @@ -70137,7 +71978,7 @@ } }, { - "id": 24005, + "id": 26319, "properties": { "east": "none", "north": "tall", @@ -70148,7 +71989,7 @@ } }, { - "id": 24006, + "id": 26320, "properties": { "east": "none", "north": "tall", @@ -70159,7 +72000,7 @@ } }, { - "id": 24007, + "id": 26321, "properties": { "east": "none", "north": "tall", @@ -70170,7 +72011,7 @@ } }, { - "id": 24008, + "id": 26322, "properties": { "east": "none", "north": "tall", @@ -70181,7 +72022,7 @@ } }, { - "id": 24009, + "id": 26323, "properties": { "east": "none", "north": "tall", @@ -70192,7 +72033,7 @@ } }, { - "id": 24010, + "id": 26324, "properties": { "east": "none", "north": "tall", @@ -70203,7 +72044,7 @@ } }, { - "id": 24011, + "id": 26325, "properties": { "east": "none", "north": "tall", @@ -70214,7 +72055,7 @@ } }, { - "id": 24012, + "id": 26326, "properties": { "east": "none", "north": "tall", @@ -70225,7 +72066,7 @@ } }, { - "id": 24013, + "id": 26327, "properties": { "east": "none", "north": "tall", @@ -70236,7 +72077,7 @@ } }, { - "id": 24014, + "id": 26328, "properties": { "east": "none", "north": "tall", @@ -70247,7 +72088,7 @@ } }, { - "id": 24015, + "id": 26329, "properties": { "east": "none", "north": "tall", @@ -70258,7 +72099,7 @@ } }, { - "id": 24016, + "id": 26330, "properties": { "east": "none", "north": "tall", @@ -70269,7 +72110,7 @@ } }, { - "id": 24017, + "id": 26331, "properties": { "east": "none", "north": "tall", @@ -70280,7 +72121,7 @@ } }, { - "id": 24018, + "id": 26332, "properties": { "east": "none", "north": "tall", @@ -70291,7 +72132,7 @@ } }, { - "id": 24019, + "id": 26333, "properties": { "east": "none", "north": "tall", @@ -70302,7 +72143,7 @@ } }, { - "id": 24020, + "id": 26334, "properties": { "east": "none", "north": "tall", @@ -70313,7 +72154,7 @@ } }, { - "id": 24021, + "id": 26335, "properties": { "east": "low", "north": "none", @@ -70324,7 +72165,7 @@ } }, { - "id": 24022, + "id": 26336, "properties": { "east": "low", "north": "none", @@ -70335,7 +72176,7 @@ } }, { - "id": 24023, + "id": 26337, "properties": { "east": "low", "north": "none", @@ -70346,7 +72187,7 @@ } }, { - "id": 24024, + "id": 26338, "properties": { "east": "low", "north": "none", @@ -70357,7 +72198,7 @@ } }, { - "id": 24025, + "id": 26339, "properties": { "east": "low", "north": "none", @@ -70368,7 +72209,7 @@ } }, { - "id": 24026, + "id": 26340, "properties": { "east": "low", "north": "none", @@ -70379,7 +72220,7 @@ } }, { - "id": 24027, + "id": 26341, "properties": { "east": "low", "north": "none", @@ -70390,7 +72231,7 @@ } }, { - "id": 24028, + "id": 26342, "properties": { "east": "low", "north": "none", @@ -70401,7 +72242,7 @@ } }, { - "id": 24029, + "id": 26343, "properties": { "east": "low", "north": "none", @@ -70412,7 +72253,7 @@ } }, { - "id": 24030, + "id": 26344, "properties": { "east": "low", "north": "none", @@ -70423,7 +72264,7 @@ } }, { - "id": 24031, + "id": 26345, "properties": { "east": "low", "north": "none", @@ -70434,7 +72275,7 @@ } }, { - "id": 24032, + "id": 26346, "properties": { "east": "low", "north": "none", @@ -70445,7 +72286,7 @@ } }, { - "id": 24033, + "id": 26347, "properties": { "east": "low", "north": "none", @@ -70456,7 +72297,7 @@ } }, { - "id": 24034, + "id": 26348, "properties": { "east": "low", "north": "none", @@ -70467,7 +72308,7 @@ } }, { - "id": 24035, + "id": 26349, "properties": { "east": "low", "north": "none", @@ -70478,7 +72319,7 @@ } }, { - "id": 24036, + "id": 26350, "properties": { "east": "low", "north": "none", @@ -70489,7 +72330,7 @@ } }, { - "id": 24037, + "id": 26351, "properties": { "east": "low", "north": "none", @@ -70500,7 +72341,7 @@ } }, { - "id": 24038, + "id": 26352, "properties": { "east": "low", "north": "none", @@ -70511,7 +72352,7 @@ } }, { - "id": 24039, + "id": 26353, "properties": { "east": "low", "north": "none", @@ -70522,7 +72363,7 @@ } }, { - "id": 24040, + "id": 26354, "properties": { "east": "low", "north": "none", @@ -70533,7 +72374,7 @@ } }, { - "id": 24041, + "id": 26355, "properties": { "east": "low", "north": "none", @@ -70544,7 +72385,7 @@ } }, { - "id": 24042, + "id": 26356, "properties": { "east": "low", "north": "none", @@ -70555,7 +72396,7 @@ } }, { - "id": 24043, + "id": 26357, "properties": { "east": "low", "north": "none", @@ -70566,7 +72407,7 @@ } }, { - "id": 24044, + "id": 26358, "properties": { "east": "low", "north": "none", @@ -70577,7 +72418,7 @@ } }, { - "id": 24045, + "id": 26359, "properties": { "east": "low", "north": "none", @@ -70588,7 +72429,7 @@ } }, { - "id": 24046, + "id": 26360, "properties": { "east": "low", "north": "none", @@ -70599,7 +72440,7 @@ } }, { - "id": 24047, + "id": 26361, "properties": { "east": "low", "north": "none", @@ -70610,7 +72451,7 @@ } }, { - "id": 24048, + "id": 26362, "properties": { "east": "low", "north": "none", @@ -70621,7 +72462,7 @@ } }, { - "id": 24049, + "id": 26363, "properties": { "east": "low", "north": "none", @@ -70632,7 +72473,7 @@ } }, { - "id": 24050, + "id": 26364, "properties": { "east": "low", "north": "none", @@ -70643,7 +72484,7 @@ } }, { - "id": 24051, + "id": 26365, "properties": { "east": "low", "north": "none", @@ -70654,7 +72495,7 @@ } }, { - "id": 24052, + "id": 26366, "properties": { "east": "low", "north": "none", @@ -70665,7 +72506,7 @@ } }, { - "id": 24053, + "id": 26367, "properties": { "east": "low", "north": "none", @@ -70676,7 +72517,7 @@ } }, { - "id": 24054, + "id": 26368, "properties": { "east": "low", "north": "none", @@ -70687,7 +72528,7 @@ } }, { - "id": 24055, + "id": 26369, "properties": { "east": "low", "north": "none", @@ -70698,7 +72539,7 @@ } }, { - "id": 24056, + "id": 26370, "properties": { "east": "low", "north": "none", @@ -70709,7 +72550,7 @@ } }, { - "id": 24057, + "id": 26371, "properties": { "east": "low", "north": "low", @@ -70720,7 +72561,7 @@ } }, { - "id": 24058, + "id": 26372, "properties": { "east": "low", "north": "low", @@ -70731,7 +72572,7 @@ } }, { - "id": 24059, + "id": 26373, "properties": { "east": "low", "north": "low", @@ -70742,7 +72583,7 @@ } }, { - "id": 24060, + "id": 26374, "properties": { "east": "low", "north": "low", @@ -70753,7 +72594,7 @@ } }, { - "id": 24061, + "id": 26375, "properties": { "east": "low", "north": "low", @@ -70764,7 +72605,7 @@ } }, { - "id": 24062, + "id": 26376, "properties": { "east": "low", "north": "low", @@ -70775,7 +72616,7 @@ } }, { - "id": 24063, + "id": 26377, "properties": { "east": "low", "north": "low", @@ -70786,7 +72627,7 @@ } }, { - "id": 24064, + "id": 26378, "properties": { "east": "low", "north": "low", @@ -70797,7 +72638,7 @@ } }, { - "id": 24065, + "id": 26379, "properties": { "east": "low", "north": "low", @@ -70808,7 +72649,7 @@ } }, { - "id": 24066, + "id": 26380, "properties": { "east": "low", "north": "low", @@ -70819,7 +72660,7 @@ } }, { - "id": 24067, + "id": 26381, "properties": { "east": "low", "north": "low", @@ -70830,7 +72671,7 @@ } }, { - "id": 24068, + "id": 26382, "properties": { "east": "low", "north": "low", @@ -70841,7 +72682,7 @@ } }, { - "id": 24069, + "id": 26383, "properties": { "east": "low", "north": "low", @@ -70852,7 +72693,7 @@ } }, { - "id": 24070, + "id": 26384, "properties": { "east": "low", "north": "low", @@ -70863,7 +72704,7 @@ } }, { - "id": 24071, + "id": 26385, "properties": { "east": "low", "north": "low", @@ -70874,7 +72715,7 @@ } }, { - "id": 24072, + "id": 26386, "properties": { "east": "low", "north": "low", @@ -70885,7 +72726,7 @@ } }, { - "id": 24073, + "id": 26387, "properties": { "east": "low", "north": "low", @@ -70896,7 +72737,7 @@ } }, { - "id": 24074, + "id": 26388, "properties": { "east": "low", "north": "low", @@ -70907,7 +72748,7 @@ } }, { - "id": 24075, + "id": 26389, "properties": { "east": "low", "north": "low", @@ -70918,7 +72759,7 @@ } }, { - "id": 24076, + "id": 26390, "properties": { "east": "low", "north": "low", @@ -70929,7 +72770,7 @@ } }, { - "id": 24077, + "id": 26391, "properties": { "east": "low", "north": "low", @@ -70940,7 +72781,7 @@ } }, { - "id": 24078, + "id": 26392, "properties": { "east": "low", "north": "low", @@ -70951,7 +72792,7 @@ } }, { - "id": 24079, + "id": 26393, "properties": { "east": "low", "north": "low", @@ -70962,7 +72803,7 @@ } }, { - "id": 24080, + "id": 26394, "properties": { "east": "low", "north": "low", @@ -70973,7 +72814,7 @@ } }, { - "id": 24081, + "id": 26395, "properties": { "east": "low", "north": "low", @@ -70984,7 +72825,7 @@ } }, { - "id": 24082, + "id": 26396, "properties": { "east": "low", "north": "low", @@ -70995,7 +72836,7 @@ } }, { - "id": 24083, + "id": 26397, "properties": { "east": "low", "north": "low", @@ -71006,7 +72847,7 @@ } }, { - "id": 24084, + "id": 26398, "properties": { "east": "low", "north": "low", @@ -71017,7 +72858,7 @@ } }, { - "id": 24085, + "id": 26399, "properties": { "east": "low", "north": "low", @@ -71028,7 +72869,7 @@ } }, { - "id": 24086, + "id": 26400, "properties": { "east": "low", "north": "low", @@ -71039,7 +72880,7 @@ } }, { - "id": 24087, + "id": 26401, "properties": { "east": "low", "north": "low", @@ -71050,7 +72891,7 @@ } }, { - "id": 24088, + "id": 26402, "properties": { "east": "low", "north": "low", @@ -71061,7 +72902,7 @@ } }, { - "id": 24089, + "id": 26403, "properties": { "east": "low", "north": "low", @@ -71072,7 +72913,7 @@ } }, { - "id": 24090, + "id": 26404, "properties": { "east": "low", "north": "low", @@ -71083,7 +72924,7 @@ } }, { - "id": 24091, + "id": 26405, "properties": { "east": "low", "north": "low", @@ -71094,7 +72935,7 @@ } }, { - "id": 24092, + "id": 26406, "properties": { "east": "low", "north": "low", @@ -71105,7 +72946,7 @@ } }, { - "id": 24093, + "id": 26407, "properties": { "east": "low", "north": "tall", @@ -71116,7 +72957,7 @@ } }, { - "id": 24094, + "id": 26408, "properties": { "east": "low", "north": "tall", @@ -71127,7 +72968,7 @@ } }, { - "id": 24095, + "id": 26409, "properties": { "east": "low", "north": "tall", @@ -71138,7 +72979,7 @@ } }, { - "id": 24096, + "id": 26410, "properties": { "east": "low", "north": "tall", @@ -71149,7 +72990,7 @@ } }, { - "id": 24097, + "id": 26411, "properties": { "east": "low", "north": "tall", @@ -71160,7 +73001,7 @@ } }, { - "id": 24098, + "id": 26412, "properties": { "east": "low", "north": "tall", @@ -71171,7 +73012,7 @@ } }, { - "id": 24099, + "id": 26413, "properties": { "east": "low", "north": "tall", @@ -71182,7 +73023,7 @@ } }, { - "id": 24100, + "id": 26414, "properties": { "east": "low", "north": "tall", @@ -71193,7 +73034,7 @@ } }, { - "id": 24101, + "id": 26415, "properties": { "east": "low", "north": "tall", @@ -71204,7 +73045,7 @@ } }, { - "id": 24102, + "id": 26416, "properties": { "east": "low", "north": "tall", @@ -71215,7 +73056,7 @@ } }, { - "id": 24103, + "id": 26417, "properties": { "east": "low", "north": "tall", @@ -71226,7 +73067,7 @@ } }, { - "id": 24104, + "id": 26418, "properties": { "east": "low", "north": "tall", @@ -71237,7 +73078,7 @@ } }, { - "id": 24105, + "id": 26419, "properties": { "east": "low", "north": "tall", @@ -71248,7 +73089,7 @@ } }, { - "id": 24106, + "id": 26420, "properties": { "east": "low", "north": "tall", @@ -71259,7 +73100,7 @@ } }, { - "id": 24107, + "id": 26421, "properties": { "east": "low", "north": "tall", @@ -71270,7 +73111,7 @@ } }, { - "id": 24108, + "id": 26422, "properties": { "east": "low", "north": "tall", @@ -71281,7 +73122,7 @@ } }, { - "id": 24109, + "id": 26423, "properties": { "east": "low", "north": "tall", @@ -71292,7 +73133,7 @@ } }, { - "id": 24110, + "id": 26424, "properties": { "east": "low", "north": "tall", @@ -71303,7 +73144,7 @@ } }, { - "id": 24111, + "id": 26425, "properties": { "east": "low", "north": "tall", @@ -71314,7 +73155,7 @@ } }, { - "id": 24112, + "id": 26426, "properties": { "east": "low", "north": "tall", @@ -71325,7 +73166,7 @@ } }, { - "id": 24113, + "id": 26427, "properties": { "east": "low", "north": "tall", @@ -71336,7 +73177,7 @@ } }, { - "id": 24114, + "id": 26428, "properties": { "east": "low", "north": "tall", @@ -71347,7 +73188,7 @@ } }, { - "id": 24115, + "id": 26429, "properties": { "east": "low", "north": "tall", @@ -71358,7 +73199,7 @@ } }, { - "id": 24116, + "id": 26430, "properties": { "east": "low", "north": "tall", @@ -71369,7 +73210,7 @@ } }, { - "id": 24117, + "id": 26431, "properties": { "east": "low", "north": "tall", @@ -71380,7 +73221,7 @@ } }, { - "id": 24118, + "id": 26432, "properties": { "east": "low", "north": "tall", @@ -71391,7 +73232,7 @@ } }, { - "id": 24119, + "id": 26433, "properties": { "east": "low", "north": "tall", @@ -71402,7 +73243,7 @@ } }, { - "id": 24120, + "id": 26434, "properties": { "east": "low", "north": "tall", @@ -71413,7 +73254,7 @@ } }, { - "id": 24121, + "id": 26435, "properties": { "east": "low", "north": "tall", @@ -71424,7 +73265,7 @@ } }, { - "id": 24122, + "id": 26436, "properties": { "east": "low", "north": "tall", @@ -71435,7 +73276,7 @@ } }, { - "id": 24123, + "id": 26437, "properties": { "east": "low", "north": "tall", @@ -71446,7 +73287,7 @@ } }, { - "id": 24124, + "id": 26438, "properties": { "east": "low", "north": "tall", @@ -71457,7 +73298,7 @@ } }, { - "id": 24125, + "id": 26439, "properties": { "east": "low", "north": "tall", @@ -71468,7 +73309,7 @@ } }, { - "id": 24126, + "id": 26440, "properties": { "east": "low", "north": "tall", @@ -71479,7 +73320,7 @@ } }, { - "id": 24127, + "id": 26441, "properties": { "east": "low", "north": "tall", @@ -71490,7 +73331,7 @@ } }, { - "id": 24128, + "id": 26442, "properties": { "east": "low", "north": "tall", @@ -71501,7 +73342,7 @@ } }, { - "id": 24129, + "id": 26443, "properties": { "east": "tall", "north": "none", @@ -71512,7 +73353,7 @@ } }, { - "id": 24130, + "id": 26444, "properties": { "east": "tall", "north": "none", @@ -71523,7 +73364,7 @@ } }, { - "id": 24131, + "id": 26445, "properties": { "east": "tall", "north": "none", @@ -71534,7 +73375,7 @@ } }, { - "id": 24132, + "id": 26446, "properties": { "east": "tall", "north": "none", @@ -71545,7 +73386,7 @@ } }, { - "id": 24133, + "id": 26447, "properties": { "east": "tall", "north": "none", @@ -71556,7 +73397,7 @@ } }, { - "id": 24134, + "id": 26448, "properties": { "east": "tall", "north": "none", @@ -71567,7 +73408,7 @@ } }, { - "id": 24135, + "id": 26449, "properties": { "east": "tall", "north": "none", @@ -71578,7 +73419,7 @@ } }, { - "id": 24136, + "id": 26450, "properties": { "east": "tall", "north": "none", @@ -71589,7 +73430,7 @@ } }, { - "id": 24137, + "id": 26451, "properties": { "east": "tall", "north": "none", @@ -71600,7 +73441,7 @@ } }, { - "id": 24138, + "id": 26452, "properties": { "east": "tall", "north": "none", @@ -71611,7 +73452,7 @@ } }, { - "id": 24139, + "id": 26453, "properties": { "east": "tall", "north": "none", @@ -71622,7 +73463,7 @@ } }, { - "id": 24140, + "id": 26454, "properties": { "east": "tall", "north": "none", @@ -71633,7 +73474,7 @@ } }, { - "id": 24141, + "id": 26455, "properties": { "east": "tall", "north": "none", @@ -71644,7 +73485,7 @@ } }, { - "id": 24142, + "id": 26456, "properties": { "east": "tall", "north": "none", @@ -71655,7 +73496,7 @@ } }, { - "id": 24143, + "id": 26457, "properties": { "east": "tall", "north": "none", @@ -71666,7 +73507,7 @@ } }, { - "id": 24144, + "id": 26458, "properties": { "east": "tall", "north": "none", @@ -71677,7 +73518,7 @@ } }, { - "id": 24145, + "id": 26459, "properties": { "east": "tall", "north": "none", @@ -71688,7 +73529,7 @@ } }, { - "id": 24146, + "id": 26460, "properties": { "east": "tall", "north": "none", @@ -71699,7 +73540,7 @@ } }, { - "id": 24147, + "id": 26461, "properties": { "east": "tall", "north": "none", @@ -71710,7 +73551,7 @@ } }, { - "id": 24148, + "id": 26462, "properties": { "east": "tall", "north": "none", @@ -71721,7 +73562,7 @@ } }, { - "id": 24149, + "id": 26463, "properties": { "east": "tall", "north": "none", @@ -71732,7 +73573,7 @@ } }, { - "id": 24150, + "id": 26464, "properties": { "east": "tall", "north": "none", @@ -71743,7 +73584,7 @@ } }, { - "id": 24151, + "id": 26465, "properties": { "east": "tall", "north": "none", @@ -71754,7 +73595,7 @@ } }, { - "id": 24152, + "id": 26466, "properties": { "east": "tall", "north": "none", @@ -71765,7 +73606,7 @@ } }, { - "id": 24153, + "id": 26467, "properties": { "east": "tall", "north": "none", @@ -71776,7 +73617,7 @@ } }, { - "id": 24154, + "id": 26468, "properties": { "east": "tall", "north": "none", @@ -71787,7 +73628,7 @@ } }, { - "id": 24155, + "id": 26469, "properties": { "east": "tall", "north": "none", @@ -71798,7 +73639,7 @@ } }, { - "id": 24156, + "id": 26470, "properties": { "east": "tall", "north": "none", @@ -71809,7 +73650,7 @@ } }, { - "id": 24157, + "id": 26471, "properties": { "east": "tall", "north": "none", @@ -71820,7 +73661,7 @@ } }, { - "id": 24158, + "id": 26472, "properties": { "east": "tall", "north": "none", @@ -71831,7 +73672,7 @@ } }, { - "id": 24159, + "id": 26473, "properties": { "east": "tall", "north": "none", @@ -71842,7 +73683,7 @@ } }, { - "id": 24160, + "id": 26474, "properties": { "east": "tall", "north": "none", @@ -71853,7 +73694,7 @@ } }, { - "id": 24161, + "id": 26475, "properties": { "east": "tall", "north": "none", @@ -71864,7 +73705,7 @@ } }, { - "id": 24162, + "id": 26476, "properties": { "east": "tall", "north": "none", @@ -71875,7 +73716,7 @@ } }, { - "id": 24163, + "id": 26477, "properties": { "east": "tall", "north": "none", @@ -71886,7 +73727,7 @@ } }, { - "id": 24164, + "id": 26478, "properties": { "east": "tall", "north": "none", @@ -71897,7 +73738,7 @@ } }, { - "id": 24165, + "id": 26479, "properties": { "east": "tall", "north": "low", @@ -71908,7 +73749,7 @@ } }, { - "id": 24166, + "id": 26480, "properties": { "east": "tall", "north": "low", @@ -71919,7 +73760,7 @@ } }, { - "id": 24167, + "id": 26481, "properties": { "east": "tall", "north": "low", @@ -71930,7 +73771,7 @@ } }, { - "id": 24168, + "id": 26482, "properties": { "east": "tall", "north": "low", @@ -71941,7 +73782,7 @@ } }, { - "id": 24169, + "id": 26483, "properties": { "east": "tall", "north": "low", @@ -71952,7 +73793,7 @@ } }, { - "id": 24170, + "id": 26484, "properties": { "east": "tall", "north": "low", @@ -71963,7 +73804,7 @@ } }, { - "id": 24171, + "id": 26485, "properties": { "east": "tall", "north": "low", @@ -71974,7 +73815,7 @@ } }, { - "id": 24172, + "id": 26486, "properties": { "east": "tall", "north": "low", @@ -71985,7 +73826,7 @@ } }, { - "id": 24173, + "id": 26487, "properties": { "east": "tall", "north": "low", @@ -71996,7 +73837,7 @@ } }, { - "id": 24174, + "id": 26488, "properties": { "east": "tall", "north": "low", @@ -72007,7 +73848,7 @@ } }, { - "id": 24175, + "id": 26489, "properties": { "east": "tall", "north": "low", @@ -72018,7 +73859,7 @@ } }, { - "id": 24176, + "id": 26490, "properties": { "east": "tall", "north": "low", @@ -72029,7 +73870,7 @@ } }, { - "id": 24177, + "id": 26491, "properties": { "east": "tall", "north": "low", @@ -72040,7 +73881,7 @@ } }, { - "id": 24178, + "id": 26492, "properties": { "east": "tall", "north": "low", @@ -72051,7 +73892,7 @@ } }, { - "id": 24179, + "id": 26493, "properties": { "east": "tall", "north": "low", @@ -72062,7 +73903,7 @@ } }, { - "id": 24180, + "id": 26494, "properties": { "east": "tall", "north": "low", @@ -72073,7 +73914,7 @@ } }, { - "id": 24181, + "id": 26495, "properties": { "east": "tall", "north": "low", @@ -72084,7 +73925,7 @@ } }, { - "id": 24182, + "id": 26496, "properties": { "east": "tall", "north": "low", @@ -72095,7 +73936,7 @@ } }, { - "id": 24183, + "id": 26497, "properties": { "east": "tall", "north": "low", @@ -72106,7 +73947,7 @@ } }, { - "id": 24184, + "id": 26498, "properties": { "east": "tall", "north": "low", @@ -72117,7 +73958,7 @@ } }, { - "id": 24185, + "id": 26499, "properties": { "east": "tall", "north": "low", @@ -72128,7 +73969,7 @@ } }, { - "id": 24186, + "id": 26500, "properties": { "east": "tall", "north": "low", @@ -72139,7 +73980,7 @@ } }, { - "id": 24187, + "id": 26501, "properties": { "east": "tall", "north": "low", @@ -72150,7 +73991,7 @@ } }, { - "id": 24188, + "id": 26502, "properties": { "east": "tall", "north": "low", @@ -72161,7 +74002,7 @@ } }, { - "id": 24189, + "id": 26503, "properties": { "east": "tall", "north": "low", @@ -72172,7 +74013,7 @@ } }, { - "id": 24190, + "id": 26504, "properties": { "east": "tall", "north": "low", @@ -72183,7 +74024,7 @@ } }, { - "id": 24191, + "id": 26505, "properties": { "east": "tall", "north": "low", @@ -72194,7 +74035,7 @@ } }, { - "id": 24192, + "id": 26506, "properties": { "east": "tall", "north": "low", @@ -72205,7 +74046,7 @@ } }, { - "id": 24193, + "id": 26507, "properties": { "east": "tall", "north": "low", @@ -72216,7 +74057,7 @@ } }, { - "id": 24194, + "id": 26508, "properties": { "east": "tall", "north": "low", @@ -72227,7 +74068,7 @@ } }, { - "id": 24195, + "id": 26509, "properties": { "east": "tall", "north": "low", @@ -72238,7 +74079,7 @@ } }, { - "id": 24196, + "id": 26510, "properties": { "east": "tall", "north": "low", @@ -72249,7 +74090,7 @@ } }, { - "id": 24197, + "id": 26511, "properties": { "east": "tall", "north": "low", @@ -72260,7 +74101,7 @@ } }, { - "id": 24198, + "id": 26512, "properties": { "east": "tall", "north": "low", @@ -72271,7 +74112,7 @@ } }, { - "id": 24199, + "id": 26513, "properties": { "east": "tall", "north": "low", @@ -72282,7 +74123,7 @@ } }, { - "id": 24200, + "id": 26514, "properties": { "east": "tall", "north": "low", @@ -72293,7 +74134,7 @@ } }, { - "id": 24201, + "id": 26515, "properties": { "east": "tall", "north": "tall", @@ -72304,7 +74145,7 @@ } }, { - "id": 24202, + "id": 26516, "properties": { "east": "tall", "north": "tall", @@ -72315,7 +74156,7 @@ } }, { - "id": 24203, + "id": 26517, "properties": { "east": "tall", "north": "tall", @@ -72326,7 +74167,7 @@ } }, { - "id": 24204, + "id": 26518, "properties": { "east": "tall", "north": "tall", @@ -72337,7 +74178,7 @@ } }, { - "id": 24205, + "id": 26519, "properties": { "east": "tall", "north": "tall", @@ -72348,7 +74189,7 @@ } }, { - "id": 24206, + "id": 26520, "properties": { "east": "tall", "north": "tall", @@ -72359,7 +74200,7 @@ } }, { - "id": 24207, + "id": 26521, "properties": { "east": "tall", "north": "tall", @@ -72370,7 +74211,7 @@ } }, { - "id": 24208, + "id": 26522, "properties": { "east": "tall", "north": "tall", @@ -72381,7 +74222,7 @@ } }, { - "id": 24209, + "id": 26523, "properties": { "east": "tall", "north": "tall", @@ -72392,7 +74233,7 @@ } }, { - "id": 24210, + "id": 26524, "properties": { "east": "tall", "north": "tall", @@ -72403,7 +74244,7 @@ } }, { - "id": 24211, + "id": 26525, "properties": { "east": "tall", "north": "tall", @@ -72414,7 +74255,7 @@ } }, { - "id": 24212, + "id": 26526, "properties": { "east": "tall", "north": "tall", @@ -72425,7 +74266,7 @@ } }, { - "id": 24213, + "id": 26527, "properties": { "east": "tall", "north": "tall", @@ -72436,7 +74277,7 @@ } }, { - "id": 24214, + "id": 26528, "properties": { "east": "tall", "north": "tall", @@ -72447,7 +74288,7 @@ } }, { - "id": 24215, + "id": 26529, "properties": { "east": "tall", "north": "tall", @@ -72458,7 +74299,7 @@ } }, { - "id": 24216, + "id": 26530, "properties": { "east": "tall", "north": "tall", @@ -72469,7 +74310,7 @@ } }, { - "id": 24217, + "id": 26531, "properties": { "east": "tall", "north": "tall", @@ -72480,7 +74321,7 @@ } }, { - "id": 24218, + "id": 26532, "properties": { "east": "tall", "north": "tall", @@ -72491,7 +74332,7 @@ } }, { - "id": 24219, + "id": 26533, "properties": { "east": "tall", "north": "tall", @@ -72502,7 +74343,7 @@ } }, { - "id": 24220, + "id": 26534, "properties": { "east": "tall", "north": "tall", @@ -72513,7 +74354,7 @@ } }, { - "id": 24221, + "id": 26535, "properties": { "east": "tall", "north": "tall", @@ -72524,7 +74365,7 @@ } }, { - "id": 24222, + "id": 26536, "properties": { "east": "tall", "north": "tall", @@ -72535,7 +74376,7 @@ } }, { - "id": 24223, + "id": 26537, "properties": { "east": "tall", "north": "tall", @@ -72546,7 +74387,7 @@ } }, { - "id": 24224, + "id": 26538, "properties": { "east": "tall", "north": "tall", @@ -72557,7 +74398,7 @@ } }, { - "id": 24225, + "id": 26539, "properties": { "east": "tall", "north": "tall", @@ -72568,7 +74409,7 @@ } }, { - "id": 24226, + "id": 26540, "properties": { "east": "tall", "north": "tall", @@ -72579,7 +74420,7 @@ } }, { - "id": 24227, + "id": 26541, "properties": { "east": "tall", "north": "tall", @@ -72590,7 +74431,7 @@ } }, { - "id": 24228, + "id": 26542, "properties": { "east": "tall", "north": "tall", @@ -72601,7 +74442,7 @@ } }, { - "id": 24229, + "id": 26543, "properties": { "east": "tall", "north": "tall", @@ -72612,7 +74453,7 @@ } }, { - "id": 24230, + "id": 26544, "properties": { "east": "tall", "north": "tall", @@ -72623,7 +74464,7 @@ } }, { - "id": 24231, + "id": 26545, "properties": { "east": "tall", "north": "tall", @@ -72634,7 +74475,7 @@ } }, { - "id": 24232, + "id": 26546, "properties": { "east": "tall", "north": "tall", @@ -72645,7 +74486,7 @@ } }, { - "id": 24233, + "id": 26547, "properties": { "east": "tall", "north": "tall", @@ -72656,7 +74497,7 @@ } }, { - "id": 24234, + "id": 26548, "properties": { "east": "tall", "north": "tall", @@ -72667,7 +74508,7 @@ } }, { - "id": 24235, + "id": 26549, "properties": { "east": "tall", "north": "tall", @@ -72678,7 +74519,7 @@ } }, { - "id": 24236, + "id": 26550, "properties": { "east": "tall", "north": "tall", @@ -72694,7 +74535,7 @@ "states": [ { "default": true, - "id": 23826 + "id": 26140 } ] }, @@ -72710,7 +74551,7 @@ "states": [ { "default": true, - "id": 21709 + "id": 22943 } ] }, @@ -72791,21 +74632,21 @@ }, "states": [ { - "id": 23496, + "id": 25810, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23497, + "id": 25811, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23498, + "id": 25812, "properties": { "type": "bottom", "waterlogged": "true" @@ -72813,21 +74654,21 @@ }, { "default": true, - "id": 23499, + "id": 25813, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23500, + "id": 25814, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23501, + "id": 25815, "properties": { "type": "double", "waterlogged": "false" @@ -72861,7 +74702,7 @@ }, "states": [ { - "id": 23416, + "id": 25730, "properties": { "facing": "north", "half": "top", @@ -72870,7 +74711,7 @@ } }, { - "id": 23417, + "id": 25731, "properties": { "facing": "north", "half": "top", @@ -72879,7 +74720,7 @@ } }, { - "id": 23418, + "id": 25732, "properties": { "facing": "north", "half": "top", @@ -72888,7 +74729,7 @@ } }, { - "id": 23419, + "id": 25733, "properties": { "facing": "north", "half": "top", @@ -72897,7 +74738,7 @@ } }, { - "id": 23420, + "id": 25734, "properties": { "facing": "north", "half": "top", @@ -72906,7 +74747,7 @@ } }, { - "id": 23421, + "id": 25735, "properties": { "facing": "north", "half": "top", @@ -72915,7 +74756,7 @@ } }, { - "id": 23422, + "id": 25736, "properties": { "facing": "north", "half": "top", @@ -72924,7 +74765,7 @@ } }, { - "id": 23423, + "id": 25737, "properties": { "facing": "north", "half": "top", @@ -72933,7 +74774,7 @@ } }, { - "id": 23424, + "id": 25738, "properties": { "facing": "north", "half": "top", @@ -72942,7 +74783,7 @@ } }, { - "id": 23425, + "id": 25739, "properties": { "facing": "north", "half": "top", @@ -72951,7 +74792,7 @@ } }, { - "id": 23426, + "id": 25740, "properties": { "facing": "north", "half": "bottom", @@ -72961,7 +74802,7 @@ }, { "default": true, - "id": 23427, + "id": 25741, "properties": { "facing": "north", "half": "bottom", @@ -72970,7 +74811,7 @@ } }, { - "id": 23428, + "id": 25742, "properties": { "facing": "north", "half": "bottom", @@ -72979,7 +74820,7 @@ } }, { - "id": 23429, + "id": 25743, "properties": { "facing": "north", "half": "bottom", @@ -72988,7 +74829,7 @@ } }, { - "id": 23430, + "id": 25744, "properties": { "facing": "north", "half": "bottom", @@ -72997,7 +74838,7 @@ } }, { - "id": 23431, + "id": 25745, "properties": { "facing": "north", "half": "bottom", @@ -73006,7 +74847,7 @@ } }, { - "id": 23432, + "id": 25746, "properties": { "facing": "north", "half": "bottom", @@ -73015,7 +74856,7 @@ } }, { - "id": 23433, + "id": 25747, "properties": { "facing": "north", "half": "bottom", @@ -73024,7 +74865,7 @@ } }, { - "id": 23434, + "id": 25748, "properties": { "facing": "north", "half": "bottom", @@ -73033,7 +74874,7 @@ } }, { - "id": 23435, + "id": 25749, "properties": { "facing": "north", "half": "bottom", @@ -73042,7 +74883,7 @@ } }, { - "id": 23436, + "id": 25750, "properties": { "facing": "south", "half": "top", @@ -73051,7 +74892,7 @@ } }, { - "id": 23437, + "id": 25751, "properties": { "facing": "south", "half": "top", @@ -73060,7 +74901,7 @@ } }, { - "id": 23438, + "id": 25752, "properties": { "facing": "south", "half": "top", @@ -73069,7 +74910,7 @@ } }, { - "id": 23439, + "id": 25753, "properties": { "facing": "south", "half": "top", @@ -73078,7 +74919,7 @@ } }, { - "id": 23440, + "id": 25754, "properties": { "facing": "south", "half": "top", @@ -73087,7 +74928,7 @@ } }, { - "id": 23441, + "id": 25755, "properties": { "facing": "south", "half": "top", @@ -73096,7 +74937,7 @@ } }, { - "id": 23442, + "id": 25756, "properties": { "facing": "south", "half": "top", @@ -73105,7 +74946,7 @@ } }, { - "id": 23443, + "id": 25757, "properties": { "facing": "south", "half": "top", @@ -73114,7 +74955,7 @@ } }, { - "id": 23444, + "id": 25758, "properties": { "facing": "south", "half": "top", @@ -73123,7 +74964,7 @@ } }, { - "id": 23445, + "id": 25759, "properties": { "facing": "south", "half": "top", @@ -73132,7 +74973,7 @@ } }, { - "id": 23446, + "id": 25760, "properties": { "facing": "south", "half": "bottom", @@ -73141,7 +74982,7 @@ } }, { - "id": 23447, + "id": 25761, "properties": { "facing": "south", "half": "bottom", @@ -73150,7 +74991,7 @@ } }, { - "id": 23448, + "id": 25762, "properties": { "facing": "south", "half": "bottom", @@ -73159,7 +75000,7 @@ } }, { - "id": 23449, + "id": 25763, "properties": { "facing": "south", "half": "bottom", @@ -73168,7 +75009,7 @@ } }, { - "id": 23450, + "id": 25764, "properties": { "facing": "south", "half": "bottom", @@ -73177,7 +75018,7 @@ } }, { - "id": 23451, + "id": 25765, "properties": { "facing": "south", "half": "bottom", @@ -73186,7 +75027,7 @@ } }, { - "id": 23452, + "id": 25766, "properties": { "facing": "south", "half": "bottom", @@ -73195,7 +75036,7 @@ } }, { - "id": 23453, + "id": 25767, "properties": { "facing": "south", "half": "bottom", @@ -73204,7 +75045,7 @@ } }, { - "id": 23454, + "id": 25768, "properties": { "facing": "south", "half": "bottom", @@ -73213,7 +75054,7 @@ } }, { - "id": 23455, + "id": 25769, "properties": { "facing": "south", "half": "bottom", @@ -73222,7 +75063,7 @@ } }, { - "id": 23456, + "id": 25770, "properties": { "facing": "west", "half": "top", @@ -73231,7 +75072,7 @@ } }, { - "id": 23457, + "id": 25771, "properties": { "facing": "west", "half": "top", @@ -73240,7 +75081,7 @@ } }, { - "id": 23458, + "id": 25772, "properties": { "facing": "west", "half": "top", @@ -73249,7 +75090,7 @@ } }, { - "id": 23459, + "id": 25773, "properties": { "facing": "west", "half": "top", @@ -73258,7 +75099,7 @@ } }, { - "id": 23460, + "id": 25774, "properties": { "facing": "west", "half": "top", @@ -73267,7 +75108,7 @@ } }, { - "id": 23461, + "id": 25775, "properties": { "facing": "west", "half": "top", @@ -73276,7 +75117,7 @@ } }, { - "id": 23462, + "id": 25776, "properties": { "facing": "west", "half": "top", @@ -73285,7 +75126,7 @@ } }, { - "id": 23463, + "id": 25777, "properties": { "facing": "west", "half": "top", @@ -73294,7 +75135,7 @@ } }, { - "id": 23464, + "id": 25778, "properties": { "facing": "west", "half": "top", @@ -73303,7 +75144,7 @@ } }, { - "id": 23465, + "id": 25779, "properties": { "facing": "west", "half": "top", @@ -73312,7 +75153,7 @@ } }, { - "id": 23466, + "id": 25780, "properties": { "facing": "west", "half": "bottom", @@ -73321,7 +75162,7 @@ } }, { - "id": 23467, + "id": 25781, "properties": { "facing": "west", "half": "bottom", @@ -73330,7 +75171,7 @@ } }, { - "id": 23468, + "id": 25782, "properties": { "facing": "west", "half": "bottom", @@ -73339,7 +75180,7 @@ } }, { - "id": 23469, + "id": 25783, "properties": { "facing": "west", "half": "bottom", @@ -73348,7 +75189,7 @@ } }, { - "id": 23470, + "id": 25784, "properties": { "facing": "west", "half": "bottom", @@ -73357,7 +75198,7 @@ } }, { - "id": 23471, + "id": 25785, "properties": { "facing": "west", "half": "bottom", @@ -73366,7 +75207,7 @@ } }, { - "id": 23472, + "id": 25786, "properties": { "facing": "west", "half": "bottom", @@ -73375,7 +75216,7 @@ } }, { - "id": 23473, + "id": 25787, "properties": { "facing": "west", "half": "bottom", @@ -73384,7 +75225,7 @@ } }, { - "id": 23474, + "id": 25788, "properties": { "facing": "west", "half": "bottom", @@ -73393,7 +75234,7 @@ } }, { - "id": 23475, + "id": 25789, "properties": { "facing": "west", "half": "bottom", @@ -73402,7 +75243,7 @@ } }, { - "id": 23476, + "id": 25790, "properties": { "facing": "east", "half": "top", @@ -73411,7 +75252,7 @@ } }, { - "id": 23477, + "id": 25791, "properties": { "facing": "east", "half": "top", @@ -73420,7 +75261,7 @@ } }, { - "id": 23478, + "id": 25792, "properties": { "facing": "east", "half": "top", @@ -73429,7 +75270,7 @@ } }, { - "id": 23479, + "id": 25793, "properties": { "facing": "east", "half": "top", @@ -73438,7 +75279,7 @@ } }, { - "id": 23480, + "id": 25794, "properties": { "facing": "east", "half": "top", @@ -73447,7 +75288,7 @@ } }, { - "id": 23481, + "id": 25795, "properties": { "facing": "east", "half": "top", @@ -73456,7 +75297,7 @@ } }, { - "id": 23482, + "id": 25796, "properties": { "facing": "east", "half": "top", @@ -73465,7 +75306,7 @@ } }, { - "id": 23483, + "id": 25797, "properties": { "facing": "east", "half": "top", @@ -73474,7 +75315,7 @@ } }, { - "id": 23484, + "id": 25798, "properties": { "facing": "east", "half": "top", @@ -73483,7 +75324,7 @@ } }, { - "id": 23485, + "id": 25799, "properties": { "facing": "east", "half": "top", @@ -73492,7 +75333,7 @@ } }, { - "id": 23486, + "id": 25800, "properties": { "facing": "east", "half": "bottom", @@ -73501,7 +75342,7 @@ } }, { - "id": 23487, + "id": 25801, "properties": { "facing": "east", "half": "bottom", @@ -73510,7 +75351,7 @@ } }, { - "id": 23488, + "id": 25802, "properties": { "facing": "east", "half": "bottom", @@ -73519,7 +75360,7 @@ } }, { - "id": 23489, + "id": 25803, "properties": { "facing": "east", "half": "bottom", @@ -73528,7 +75369,7 @@ } }, { - "id": 23490, + "id": 25804, "properties": { "facing": "east", "half": "bottom", @@ -73537,7 +75378,7 @@ } }, { - "id": 23491, + "id": 25805, "properties": { "facing": "east", "half": "bottom", @@ -73546,7 +75387,7 @@ } }, { - "id": 23492, + "id": 25806, "properties": { "facing": "east", "half": "bottom", @@ -73555,7 +75396,7 @@ } }, { - "id": 23493, + "id": 25807, "properties": { "facing": "east", "half": "bottom", @@ -73564,7 +75405,7 @@ } }, { - "id": 23494, + "id": 25808, "properties": { "facing": "east", "half": "bottom", @@ -73573,7 +75414,7 @@ } }, { - "id": 23495, + "id": 25809, "properties": { "facing": "east", "half": "bottom", @@ -73616,7 +75457,7 @@ }, "states": [ { - "id": 23502, + "id": 25816, "properties": { "east": "none", "north": "none", @@ -73627,7 +75468,7 @@ } }, { - "id": 23503, + "id": 25817, "properties": { "east": "none", "north": "none", @@ -73638,7 +75479,7 @@ } }, { - "id": 23504, + "id": 25818, "properties": { "east": "none", "north": "none", @@ -73650,7 +75491,7 @@ }, { "default": true, - "id": 23505, + "id": 25819, "properties": { "east": "none", "north": "none", @@ -73661,7 +75502,7 @@ } }, { - "id": 23506, + "id": 25820, "properties": { "east": "none", "north": "none", @@ -73672,7 +75513,7 @@ } }, { - "id": 23507, + "id": 25821, "properties": { "east": "none", "north": "none", @@ -73683,7 +75524,7 @@ } }, { - "id": 23508, + "id": 25822, "properties": { "east": "none", "north": "none", @@ -73694,7 +75535,7 @@ } }, { - "id": 23509, + "id": 25823, "properties": { "east": "none", "north": "none", @@ -73705,7 +75546,7 @@ } }, { - "id": 23510, + "id": 25824, "properties": { "east": "none", "north": "none", @@ -73716,7 +75557,7 @@ } }, { - "id": 23511, + "id": 25825, "properties": { "east": "none", "north": "none", @@ -73727,7 +75568,7 @@ } }, { - "id": 23512, + "id": 25826, "properties": { "east": "none", "north": "none", @@ -73738,7 +75579,7 @@ } }, { - "id": 23513, + "id": 25827, "properties": { "east": "none", "north": "none", @@ -73749,7 +75590,7 @@ } }, { - "id": 23514, + "id": 25828, "properties": { "east": "none", "north": "none", @@ -73760,7 +75601,7 @@ } }, { - "id": 23515, + "id": 25829, "properties": { "east": "none", "north": "none", @@ -73771,7 +75612,7 @@ } }, { - "id": 23516, + "id": 25830, "properties": { "east": "none", "north": "none", @@ -73782,7 +75623,7 @@ } }, { - "id": 23517, + "id": 25831, "properties": { "east": "none", "north": "none", @@ -73793,7 +75634,7 @@ } }, { - "id": 23518, + "id": 25832, "properties": { "east": "none", "north": "none", @@ -73804,7 +75645,7 @@ } }, { - "id": 23519, + "id": 25833, "properties": { "east": "none", "north": "none", @@ -73815,7 +75656,7 @@ } }, { - "id": 23520, + "id": 25834, "properties": { "east": "none", "north": "none", @@ -73826,7 +75667,7 @@ } }, { - "id": 23521, + "id": 25835, "properties": { "east": "none", "north": "none", @@ -73837,7 +75678,7 @@ } }, { - "id": 23522, + "id": 25836, "properties": { "east": "none", "north": "none", @@ -73848,7 +75689,7 @@ } }, { - "id": 23523, + "id": 25837, "properties": { "east": "none", "north": "none", @@ -73859,7 +75700,7 @@ } }, { - "id": 23524, + "id": 25838, "properties": { "east": "none", "north": "none", @@ -73870,7 +75711,7 @@ } }, { - "id": 23525, + "id": 25839, "properties": { "east": "none", "north": "none", @@ -73881,7 +75722,7 @@ } }, { - "id": 23526, + "id": 25840, "properties": { "east": "none", "north": "none", @@ -73892,7 +75733,7 @@ } }, { - "id": 23527, + "id": 25841, "properties": { "east": "none", "north": "none", @@ -73903,7 +75744,7 @@ } }, { - "id": 23528, + "id": 25842, "properties": { "east": "none", "north": "none", @@ -73914,7 +75755,7 @@ } }, { - "id": 23529, + "id": 25843, "properties": { "east": "none", "north": "none", @@ -73925,7 +75766,7 @@ } }, { - "id": 23530, + "id": 25844, "properties": { "east": "none", "north": "none", @@ -73936,7 +75777,7 @@ } }, { - "id": 23531, + "id": 25845, "properties": { "east": "none", "north": "none", @@ -73947,7 +75788,7 @@ } }, { - "id": 23532, + "id": 25846, "properties": { "east": "none", "north": "none", @@ -73958,7 +75799,7 @@ } }, { - "id": 23533, + "id": 25847, "properties": { "east": "none", "north": "none", @@ -73969,7 +75810,7 @@ } }, { - "id": 23534, + "id": 25848, "properties": { "east": "none", "north": "none", @@ -73980,7 +75821,7 @@ } }, { - "id": 23535, + "id": 25849, "properties": { "east": "none", "north": "none", @@ -73991,7 +75832,7 @@ } }, { - "id": 23536, + "id": 25850, "properties": { "east": "none", "north": "none", @@ -74002,7 +75843,7 @@ } }, { - "id": 23537, + "id": 25851, "properties": { "east": "none", "north": "none", @@ -74013,7 +75854,7 @@ } }, { - "id": 23538, + "id": 25852, "properties": { "east": "none", "north": "low", @@ -74024,7 +75865,7 @@ } }, { - "id": 23539, + "id": 25853, "properties": { "east": "none", "north": "low", @@ -74035,7 +75876,7 @@ } }, { - "id": 23540, + "id": 25854, "properties": { "east": "none", "north": "low", @@ -74046,7 +75887,7 @@ } }, { - "id": 23541, + "id": 25855, "properties": { "east": "none", "north": "low", @@ -74057,7 +75898,7 @@ } }, { - "id": 23542, + "id": 25856, "properties": { "east": "none", "north": "low", @@ -74068,7 +75909,7 @@ } }, { - "id": 23543, + "id": 25857, "properties": { "east": "none", "north": "low", @@ -74079,7 +75920,7 @@ } }, { - "id": 23544, + "id": 25858, "properties": { "east": "none", "north": "low", @@ -74090,7 +75931,7 @@ } }, { - "id": 23545, + "id": 25859, "properties": { "east": "none", "north": "low", @@ -74101,7 +75942,7 @@ } }, { - "id": 23546, + "id": 25860, "properties": { "east": "none", "north": "low", @@ -74112,7 +75953,7 @@ } }, { - "id": 23547, + "id": 25861, "properties": { "east": "none", "north": "low", @@ -74123,7 +75964,7 @@ } }, { - "id": 23548, + "id": 25862, "properties": { "east": "none", "north": "low", @@ -74134,7 +75975,7 @@ } }, { - "id": 23549, + "id": 25863, "properties": { "east": "none", "north": "low", @@ -74145,7 +75986,7 @@ } }, { - "id": 23550, + "id": 25864, "properties": { "east": "none", "north": "low", @@ -74156,7 +75997,7 @@ } }, { - "id": 23551, + "id": 25865, "properties": { "east": "none", "north": "low", @@ -74167,7 +76008,7 @@ } }, { - "id": 23552, + "id": 25866, "properties": { "east": "none", "north": "low", @@ -74178,7 +76019,7 @@ } }, { - "id": 23553, + "id": 25867, "properties": { "east": "none", "north": "low", @@ -74189,7 +76030,7 @@ } }, { - "id": 23554, + "id": 25868, "properties": { "east": "none", "north": "low", @@ -74200,7 +76041,7 @@ } }, { - "id": 23555, + "id": 25869, "properties": { "east": "none", "north": "low", @@ -74211,7 +76052,7 @@ } }, { - "id": 23556, + "id": 25870, "properties": { "east": "none", "north": "low", @@ -74222,7 +76063,7 @@ } }, { - "id": 23557, + "id": 25871, "properties": { "east": "none", "north": "low", @@ -74233,7 +76074,7 @@ } }, { - "id": 23558, + "id": 25872, "properties": { "east": "none", "north": "low", @@ -74244,7 +76085,7 @@ } }, { - "id": 23559, + "id": 25873, "properties": { "east": "none", "north": "low", @@ -74255,7 +76096,7 @@ } }, { - "id": 23560, + "id": 25874, "properties": { "east": "none", "north": "low", @@ -74266,7 +76107,7 @@ } }, { - "id": 23561, + "id": 25875, "properties": { "east": "none", "north": "low", @@ -74277,7 +76118,7 @@ } }, { - "id": 23562, + "id": 25876, "properties": { "east": "none", "north": "low", @@ -74288,7 +76129,7 @@ } }, { - "id": 23563, + "id": 25877, "properties": { "east": "none", "north": "low", @@ -74299,7 +76140,7 @@ } }, { - "id": 23564, + "id": 25878, "properties": { "east": "none", "north": "low", @@ -74310,7 +76151,7 @@ } }, { - "id": 23565, + "id": 25879, "properties": { "east": "none", "north": "low", @@ -74321,7 +76162,7 @@ } }, { - "id": 23566, + "id": 25880, "properties": { "east": "none", "north": "low", @@ -74332,7 +76173,7 @@ } }, { - "id": 23567, + "id": 25881, "properties": { "east": "none", "north": "low", @@ -74343,7 +76184,7 @@ } }, { - "id": 23568, + "id": 25882, "properties": { "east": "none", "north": "low", @@ -74354,7 +76195,7 @@ } }, { - "id": 23569, + "id": 25883, "properties": { "east": "none", "north": "low", @@ -74365,7 +76206,7 @@ } }, { - "id": 23570, + "id": 25884, "properties": { "east": "none", "north": "low", @@ -74376,7 +76217,7 @@ } }, { - "id": 23571, + "id": 25885, "properties": { "east": "none", "north": "low", @@ -74387,7 +76228,7 @@ } }, { - "id": 23572, + "id": 25886, "properties": { "east": "none", "north": "low", @@ -74398,7 +76239,7 @@ } }, { - "id": 23573, + "id": 25887, "properties": { "east": "none", "north": "low", @@ -74409,7 +76250,7 @@ } }, { - "id": 23574, + "id": 25888, "properties": { "east": "none", "north": "tall", @@ -74420,7 +76261,7 @@ } }, { - "id": 23575, + "id": 25889, "properties": { "east": "none", "north": "tall", @@ -74431,7 +76272,7 @@ } }, { - "id": 23576, + "id": 25890, "properties": { "east": "none", "north": "tall", @@ -74442,7 +76283,7 @@ } }, { - "id": 23577, + "id": 25891, "properties": { "east": "none", "north": "tall", @@ -74453,7 +76294,7 @@ } }, { - "id": 23578, + "id": 25892, "properties": { "east": "none", "north": "tall", @@ -74464,7 +76305,7 @@ } }, { - "id": 23579, + "id": 25893, "properties": { "east": "none", "north": "tall", @@ -74475,7 +76316,7 @@ } }, { - "id": 23580, + "id": 25894, "properties": { "east": "none", "north": "tall", @@ -74486,7 +76327,7 @@ } }, { - "id": 23581, + "id": 25895, "properties": { "east": "none", "north": "tall", @@ -74497,7 +76338,7 @@ } }, { - "id": 23582, + "id": 25896, "properties": { "east": "none", "north": "tall", @@ -74508,7 +76349,7 @@ } }, { - "id": 23583, + "id": 25897, "properties": { "east": "none", "north": "tall", @@ -74519,7 +76360,7 @@ } }, { - "id": 23584, + "id": 25898, "properties": { "east": "none", "north": "tall", @@ -74530,7 +76371,7 @@ } }, { - "id": 23585, + "id": 25899, "properties": { "east": "none", "north": "tall", @@ -74541,7 +76382,7 @@ } }, { - "id": 23586, + "id": 25900, "properties": { "east": "none", "north": "tall", @@ -74552,7 +76393,7 @@ } }, { - "id": 23587, + "id": 25901, "properties": { "east": "none", "north": "tall", @@ -74563,7 +76404,7 @@ } }, { - "id": 23588, + "id": 25902, "properties": { "east": "none", "north": "tall", @@ -74574,7 +76415,7 @@ } }, { - "id": 23589, + "id": 25903, "properties": { "east": "none", "north": "tall", @@ -74585,7 +76426,7 @@ } }, { - "id": 23590, + "id": 25904, "properties": { "east": "none", "north": "tall", @@ -74596,7 +76437,7 @@ } }, { - "id": 23591, + "id": 25905, "properties": { "east": "none", "north": "tall", @@ -74607,7 +76448,7 @@ } }, { - "id": 23592, + "id": 25906, "properties": { "east": "none", "north": "tall", @@ -74618,7 +76459,7 @@ } }, { - "id": 23593, + "id": 25907, "properties": { "east": "none", "north": "tall", @@ -74629,7 +76470,7 @@ } }, { - "id": 23594, + "id": 25908, "properties": { "east": "none", "north": "tall", @@ -74640,7 +76481,7 @@ } }, { - "id": 23595, + "id": 25909, "properties": { "east": "none", "north": "tall", @@ -74651,7 +76492,7 @@ } }, { - "id": 23596, + "id": 25910, "properties": { "east": "none", "north": "tall", @@ -74662,7 +76503,7 @@ } }, { - "id": 23597, + "id": 25911, "properties": { "east": "none", "north": "tall", @@ -74673,7 +76514,7 @@ } }, { - "id": 23598, + "id": 25912, "properties": { "east": "none", "north": "tall", @@ -74684,7 +76525,7 @@ } }, { - "id": 23599, + "id": 25913, "properties": { "east": "none", "north": "tall", @@ -74695,7 +76536,7 @@ } }, { - "id": 23600, + "id": 25914, "properties": { "east": "none", "north": "tall", @@ -74706,7 +76547,7 @@ } }, { - "id": 23601, + "id": 25915, "properties": { "east": "none", "north": "tall", @@ -74717,7 +76558,7 @@ } }, { - "id": 23602, + "id": 25916, "properties": { "east": "none", "north": "tall", @@ -74728,7 +76569,7 @@ } }, { - "id": 23603, + "id": 25917, "properties": { "east": "none", "north": "tall", @@ -74739,7 +76580,7 @@ } }, { - "id": 23604, + "id": 25918, "properties": { "east": "none", "north": "tall", @@ -74750,7 +76591,7 @@ } }, { - "id": 23605, + "id": 25919, "properties": { "east": "none", "north": "tall", @@ -74761,7 +76602,7 @@ } }, { - "id": 23606, + "id": 25920, "properties": { "east": "none", "north": "tall", @@ -74772,7 +76613,7 @@ } }, { - "id": 23607, + "id": 25921, "properties": { "east": "none", "north": "tall", @@ -74783,7 +76624,7 @@ } }, { - "id": 23608, + "id": 25922, "properties": { "east": "none", "north": "tall", @@ -74794,7 +76635,7 @@ } }, { - "id": 23609, + "id": 25923, "properties": { "east": "none", "north": "tall", @@ -74805,7 +76646,7 @@ } }, { - "id": 23610, + "id": 25924, "properties": { "east": "low", "north": "none", @@ -74816,7 +76657,7 @@ } }, { - "id": 23611, + "id": 25925, "properties": { "east": "low", "north": "none", @@ -74827,7 +76668,7 @@ } }, { - "id": 23612, + "id": 25926, "properties": { "east": "low", "north": "none", @@ -74838,7 +76679,7 @@ } }, { - "id": 23613, + "id": 25927, "properties": { "east": "low", "north": "none", @@ -74849,7 +76690,7 @@ } }, { - "id": 23614, + "id": 25928, "properties": { "east": "low", "north": "none", @@ -74860,7 +76701,7 @@ } }, { - "id": 23615, + "id": 25929, "properties": { "east": "low", "north": "none", @@ -74871,7 +76712,7 @@ } }, { - "id": 23616, + "id": 25930, "properties": { "east": "low", "north": "none", @@ -74882,7 +76723,7 @@ } }, { - "id": 23617, + "id": 25931, "properties": { "east": "low", "north": "none", @@ -74893,7 +76734,7 @@ } }, { - "id": 23618, + "id": 25932, "properties": { "east": "low", "north": "none", @@ -74904,7 +76745,7 @@ } }, { - "id": 23619, + "id": 25933, "properties": { "east": "low", "north": "none", @@ -74915,7 +76756,7 @@ } }, { - "id": 23620, + "id": 25934, "properties": { "east": "low", "north": "none", @@ -74926,7 +76767,7 @@ } }, { - "id": 23621, + "id": 25935, "properties": { "east": "low", "north": "none", @@ -74937,7 +76778,7 @@ } }, { - "id": 23622, + "id": 25936, "properties": { "east": "low", "north": "none", @@ -74948,7 +76789,7 @@ } }, { - "id": 23623, + "id": 25937, "properties": { "east": "low", "north": "none", @@ -74959,7 +76800,7 @@ } }, { - "id": 23624, + "id": 25938, "properties": { "east": "low", "north": "none", @@ -74970,7 +76811,7 @@ } }, { - "id": 23625, + "id": 25939, "properties": { "east": "low", "north": "none", @@ -74981,7 +76822,7 @@ } }, { - "id": 23626, + "id": 25940, "properties": { "east": "low", "north": "none", @@ -74992,7 +76833,7 @@ } }, { - "id": 23627, + "id": 25941, "properties": { "east": "low", "north": "none", @@ -75003,7 +76844,7 @@ } }, { - "id": 23628, + "id": 25942, "properties": { "east": "low", "north": "none", @@ -75014,7 +76855,7 @@ } }, { - "id": 23629, + "id": 25943, "properties": { "east": "low", "north": "none", @@ -75025,7 +76866,7 @@ } }, { - "id": 23630, + "id": 25944, "properties": { "east": "low", "north": "none", @@ -75036,7 +76877,7 @@ } }, { - "id": 23631, + "id": 25945, "properties": { "east": "low", "north": "none", @@ -75047,7 +76888,7 @@ } }, { - "id": 23632, + "id": 25946, "properties": { "east": "low", "north": "none", @@ -75058,7 +76899,7 @@ } }, { - "id": 23633, + "id": 25947, "properties": { "east": "low", "north": "none", @@ -75069,7 +76910,7 @@ } }, { - "id": 23634, + "id": 25948, "properties": { "east": "low", "north": "none", @@ -75080,7 +76921,7 @@ } }, { - "id": 23635, + "id": 25949, "properties": { "east": "low", "north": "none", @@ -75091,7 +76932,7 @@ } }, { - "id": 23636, + "id": 25950, "properties": { "east": "low", "north": "none", @@ -75102,7 +76943,7 @@ } }, { - "id": 23637, + "id": 25951, "properties": { "east": "low", "north": "none", @@ -75113,7 +76954,7 @@ } }, { - "id": 23638, + "id": 25952, "properties": { "east": "low", "north": "none", @@ -75124,7 +76965,7 @@ } }, { - "id": 23639, + "id": 25953, "properties": { "east": "low", "north": "none", @@ -75135,7 +76976,7 @@ } }, { - "id": 23640, + "id": 25954, "properties": { "east": "low", "north": "none", @@ -75146,7 +76987,7 @@ } }, { - "id": 23641, + "id": 25955, "properties": { "east": "low", "north": "none", @@ -75157,7 +76998,7 @@ } }, { - "id": 23642, + "id": 25956, "properties": { "east": "low", "north": "none", @@ -75168,7 +77009,7 @@ } }, { - "id": 23643, + "id": 25957, "properties": { "east": "low", "north": "none", @@ -75179,7 +77020,7 @@ } }, { - "id": 23644, + "id": 25958, "properties": { "east": "low", "north": "none", @@ -75190,7 +77031,7 @@ } }, { - "id": 23645, + "id": 25959, "properties": { "east": "low", "north": "none", @@ -75201,7 +77042,7 @@ } }, { - "id": 23646, + "id": 25960, "properties": { "east": "low", "north": "low", @@ -75212,7 +77053,7 @@ } }, { - "id": 23647, + "id": 25961, "properties": { "east": "low", "north": "low", @@ -75223,7 +77064,7 @@ } }, { - "id": 23648, + "id": 25962, "properties": { "east": "low", "north": "low", @@ -75234,7 +77075,7 @@ } }, { - "id": 23649, + "id": 25963, "properties": { "east": "low", "north": "low", @@ -75245,7 +77086,7 @@ } }, { - "id": 23650, + "id": 25964, "properties": { "east": "low", "north": "low", @@ -75256,7 +77097,7 @@ } }, { - "id": 23651, + "id": 25965, "properties": { "east": "low", "north": "low", @@ -75267,7 +77108,7 @@ } }, { - "id": 23652, + "id": 25966, "properties": { "east": "low", "north": "low", @@ -75278,7 +77119,7 @@ } }, { - "id": 23653, + "id": 25967, "properties": { "east": "low", "north": "low", @@ -75289,7 +77130,7 @@ } }, { - "id": 23654, + "id": 25968, "properties": { "east": "low", "north": "low", @@ -75300,7 +77141,7 @@ } }, { - "id": 23655, + "id": 25969, "properties": { "east": "low", "north": "low", @@ -75311,7 +77152,7 @@ } }, { - "id": 23656, + "id": 25970, "properties": { "east": "low", "north": "low", @@ -75322,7 +77163,7 @@ } }, { - "id": 23657, + "id": 25971, "properties": { "east": "low", "north": "low", @@ -75333,7 +77174,7 @@ } }, { - "id": 23658, + "id": 25972, "properties": { "east": "low", "north": "low", @@ -75344,7 +77185,7 @@ } }, { - "id": 23659, + "id": 25973, "properties": { "east": "low", "north": "low", @@ -75355,7 +77196,7 @@ } }, { - "id": 23660, + "id": 25974, "properties": { "east": "low", "north": "low", @@ -75366,7 +77207,7 @@ } }, { - "id": 23661, + "id": 25975, "properties": { "east": "low", "north": "low", @@ -75377,7 +77218,7 @@ } }, { - "id": 23662, + "id": 25976, "properties": { "east": "low", "north": "low", @@ -75388,7 +77229,7 @@ } }, { - "id": 23663, + "id": 25977, "properties": { "east": "low", "north": "low", @@ -75399,7 +77240,7 @@ } }, { - "id": 23664, + "id": 25978, "properties": { "east": "low", "north": "low", @@ -75410,7 +77251,7 @@ } }, { - "id": 23665, + "id": 25979, "properties": { "east": "low", "north": "low", @@ -75421,7 +77262,7 @@ } }, { - "id": 23666, + "id": 25980, "properties": { "east": "low", "north": "low", @@ -75432,7 +77273,7 @@ } }, { - "id": 23667, + "id": 25981, "properties": { "east": "low", "north": "low", @@ -75443,7 +77284,7 @@ } }, { - "id": 23668, + "id": 25982, "properties": { "east": "low", "north": "low", @@ -75454,7 +77295,7 @@ } }, { - "id": 23669, + "id": 25983, "properties": { "east": "low", "north": "low", @@ -75465,7 +77306,7 @@ } }, { - "id": 23670, + "id": 25984, "properties": { "east": "low", "north": "low", @@ -75476,7 +77317,7 @@ } }, { - "id": 23671, + "id": 25985, "properties": { "east": "low", "north": "low", @@ -75487,7 +77328,7 @@ } }, { - "id": 23672, + "id": 25986, "properties": { "east": "low", "north": "low", @@ -75498,7 +77339,7 @@ } }, { - "id": 23673, + "id": 25987, "properties": { "east": "low", "north": "low", @@ -75509,7 +77350,7 @@ } }, { - "id": 23674, + "id": 25988, "properties": { "east": "low", "north": "low", @@ -75520,7 +77361,7 @@ } }, { - "id": 23675, + "id": 25989, "properties": { "east": "low", "north": "low", @@ -75531,7 +77372,7 @@ } }, { - "id": 23676, + "id": 25990, "properties": { "east": "low", "north": "low", @@ -75542,7 +77383,7 @@ } }, { - "id": 23677, + "id": 25991, "properties": { "east": "low", "north": "low", @@ -75553,7 +77394,7 @@ } }, { - "id": 23678, + "id": 25992, "properties": { "east": "low", "north": "low", @@ -75564,7 +77405,7 @@ } }, { - "id": 23679, + "id": 25993, "properties": { "east": "low", "north": "low", @@ -75575,7 +77416,7 @@ } }, { - "id": 23680, + "id": 25994, "properties": { "east": "low", "north": "low", @@ -75586,7 +77427,7 @@ } }, { - "id": 23681, + "id": 25995, "properties": { "east": "low", "north": "low", @@ -75597,7 +77438,7 @@ } }, { - "id": 23682, + "id": 25996, "properties": { "east": "low", "north": "tall", @@ -75608,7 +77449,7 @@ } }, { - "id": 23683, + "id": 25997, "properties": { "east": "low", "north": "tall", @@ -75619,7 +77460,7 @@ } }, { - "id": 23684, + "id": 25998, "properties": { "east": "low", "north": "tall", @@ -75630,7 +77471,7 @@ } }, { - "id": 23685, + "id": 25999, "properties": { "east": "low", "north": "tall", @@ -75641,7 +77482,7 @@ } }, { - "id": 23686, + "id": 26000, "properties": { "east": "low", "north": "tall", @@ -75652,7 +77493,7 @@ } }, { - "id": 23687, + "id": 26001, "properties": { "east": "low", "north": "tall", @@ -75663,7 +77504,7 @@ } }, { - "id": 23688, + "id": 26002, "properties": { "east": "low", "north": "tall", @@ -75674,7 +77515,7 @@ } }, { - "id": 23689, + "id": 26003, "properties": { "east": "low", "north": "tall", @@ -75685,7 +77526,7 @@ } }, { - "id": 23690, + "id": 26004, "properties": { "east": "low", "north": "tall", @@ -75696,7 +77537,7 @@ } }, { - "id": 23691, + "id": 26005, "properties": { "east": "low", "north": "tall", @@ -75707,7 +77548,7 @@ } }, { - "id": 23692, + "id": 26006, "properties": { "east": "low", "north": "tall", @@ -75718,7 +77559,7 @@ } }, { - "id": 23693, + "id": 26007, "properties": { "east": "low", "north": "tall", @@ -75729,7 +77570,7 @@ } }, { - "id": 23694, + "id": 26008, "properties": { "east": "low", "north": "tall", @@ -75740,7 +77581,7 @@ } }, { - "id": 23695, + "id": 26009, "properties": { "east": "low", "north": "tall", @@ -75751,7 +77592,7 @@ } }, { - "id": 23696, + "id": 26010, "properties": { "east": "low", "north": "tall", @@ -75762,7 +77603,7 @@ } }, { - "id": 23697, + "id": 26011, "properties": { "east": "low", "north": "tall", @@ -75773,7 +77614,7 @@ } }, { - "id": 23698, + "id": 26012, "properties": { "east": "low", "north": "tall", @@ -75784,7 +77625,7 @@ } }, { - "id": 23699, + "id": 26013, "properties": { "east": "low", "north": "tall", @@ -75795,7 +77636,7 @@ } }, { - "id": 23700, + "id": 26014, "properties": { "east": "low", "north": "tall", @@ -75806,7 +77647,7 @@ } }, { - "id": 23701, + "id": 26015, "properties": { "east": "low", "north": "tall", @@ -75817,7 +77658,7 @@ } }, { - "id": 23702, + "id": 26016, "properties": { "east": "low", "north": "tall", @@ -75828,7 +77669,7 @@ } }, { - "id": 23703, + "id": 26017, "properties": { "east": "low", "north": "tall", @@ -75839,7 +77680,7 @@ } }, { - "id": 23704, + "id": 26018, "properties": { "east": "low", "north": "tall", @@ -75850,7 +77691,7 @@ } }, { - "id": 23705, + "id": 26019, "properties": { "east": "low", "north": "tall", @@ -75861,7 +77702,7 @@ } }, { - "id": 23706, + "id": 26020, "properties": { "east": "low", "north": "tall", @@ -75872,7 +77713,7 @@ } }, { - "id": 23707, + "id": 26021, "properties": { "east": "low", "north": "tall", @@ -75883,7 +77724,7 @@ } }, { - "id": 23708, + "id": 26022, "properties": { "east": "low", "north": "tall", @@ -75894,7 +77735,7 @@ } }, { - "id": 23709, + "id": 26023, "properties": { "east": "low", "north": "tall", @@ -75905,7 +77746,7 @@ } }, { - "id": 23710, + "id": 26024, "properties": { "east": "low", "north": "tall", @@ -75916,7 +77757,7 @@ } }, { - "id": 23711, + "id": 26025, "properties": { "east": "low", "north": "tall", @@ -75927,7 +77768,7 @@ } }, { - "id": 23712, + "id": 26026, "properties": { "east": "low", "north": "tall", @@ -75938,7 +77779,7 @@ } }, { - "id": 23713, + "id": 26027, "properties": { "east": "low", "north": "tall", @@ -75949,7 +77790,7 @@ } }, { - "id": 23714, + "id": 26028, "properties": { "east": "low", "north": "tall", @@ -75960,7 +77801,7 @@ } }, { - "id": 23715, + "id": 26029, "properties": { "east": "low", "north": "tall", @@ -75971,7 +77812,7 @@ } }, { - "id": 23716, + "id": 26030, "properties": { "east": "low", "north": "tall", @@ -75982,7 +77823,7 @@ } }, { - "id": 23717, + "id": 26031, "properties": { "east": "low", "north": "tall", @@ -75993,7 +77834,7 @@ } }, { - "id": 23718, + "id": 26032, "properties": { "east": "tall", "north": "none", @@ -76004,7 +77845,7 @@ } }, { - "id": 23719, + "id": 26033, "properties": { "east": "tall", "north": "none", @@ -76015,7 +77856,7 @@ } }, { - "id": 23720, + "id": 26034, "properties": { "east": "tall", "north": "none", @@ -76026,7 +77867,7 @@ } }, { - "id": 23721, + "id": 26035, "properties": { "east": "tall", "north": "none", @@ -76037,7 +77878,7 @@ } }, { - "id": 23722, + "id": 26036, "properties": { "east": "tall", "north": "none", @@ -76048,7 +77889,7 @@ } }, { - "id": 23723, + "id": 26037, "properties": { "east": "tall", "north": "none", @@ -76059,7 +77900,7 @@ } }, { - "id": 23724, + "id": 26038, "properties": { "east": "tall", "north": "none", @@ -76070,7 +77911,7 @@ } }, { - "id": 23725, + "id": 26039, "properties": { "east": "tall", "north": "none", @@ -76081,7 +77922,7 @@ } }, { - "id": 23726, + "id": 26040, "properties": { "east": "tall", "north": "none", @@ -76092,7 +77933,7 @@ } }, { - "id": 23727, + "id": 26041, "properties": { "east": "tall", "north": "none", @@ -76103,7 +77944,7 @@ } }, { - "id": 23728, + "id": 26042, "properties": { "east": "tall", "north": "none", @@ -76114,7 +77955,7 @@ } }, { - "id": 23729, + "id": 26043, "properties": { "east": "tall", "north": "none", @@ -76125,7 +77966,7 @@ } }, { - "id": 23730, + "id": 26044, "properties": { "east": "tall", "north": "none", @@ -76136,7 +77977,7 @@ } }, { - "id": 23731, + "id": 26045, "properties": { "east": "tall", "north": "none", @@ -76147,7 +77988,7 @@ } }, { - "id": 23732, + "id": 26046, "properties": { "east": "tall", "north": "none", @@ -76158,7 +77999,7 @@ } }, { - "id": 23733, + "id": 26047, "properties": { "east": "tall", "north": "none", @@ -76169,7 +78010,7 @@ } }, { - "id": 23734, + "id": 26048, "properties": { "east": "tall", "north": "none", @@ -76180,7 +78021,7 @@ } }, { - "id": 23735, + "id": 26049, "properties": { "east": "tall", "north": "none", @@ -76191,7 +78032,7 @@ } }, { - "id": 23736, + "id": 26050, "properties": { "east": "tall", "north": "none", @@ -76202,7 +78043,7 @@ } }, { - "id": 23737, + "id": 26051, "properties": { "east": "tall", "north": "none", @@ -76213,7 +78054,7 @@ } }, { - "id": 23738, + "id": 26052, "properties": { "east": "tall", "north": "none", @@ -76224,7 +78065,7 @@ } }, { - "id": 23739, + "id": 26053, "properties": { "east": "tall", "north": "none", @@ -76235,7 +78076,7 @@ } }, { - "id": 23740, + "id": 26054, "properties": { "east": "tall", "north": "none", @@ -76246,7 +78087,7 @@ } }, { - "id": 23741, + "id": 26055, "properties": { "east": "tall", "north": "none", @@ -76257,7 +78098,7 @@ } }, { - "id": 23742, + "id": 26056, "properties": { "east": "tall", "north": "none", @@ -76268,7 +78109,7 @@ } }, { - "id": 23743, + "id": 26057, "properties": { "east": "tall", "north": "none", @@ -76279,7 +78120,7 @@ } }, { - "id": 23744, + "id": 26058, "properties": { "east": "tall", "north": "none", @@ -76290,7 +78131,7 @@ } }, { - "id": 23745, + "id": 26059, "properties": { "east": "tall", "north": "none", @@ -76301,7 +78142,7 @@ } }, { - "id": 23746, + "id": 26060, "properties": { "east": "tall", "north": "none", @@ -76312,7 +78153,7 @@ } }, { - "id": 23747, + "id": 26061, "properties": { "east": "tall", "north": "none", @@ -76323,7 +78164,7 @@ } }, { - "id": 23748, + "id": 26062, "properties": { "east": "tall", "north": "none", @@ -76334,7 +78175,7 @@ } }, { - "id": 23749, + "id": 26063, "properties": { "east": "tall", "north": "none", @@ -76345,7 +78186,7 @@ } }, { - "id": 23750, + "id": 26064, "properties": { "east": "tall", "north": "none", @@ -76356,7 +78197,7 @@ } }, { - "id": 23751, + "id": 26065, "properties": { "east": "tall", "north": "none", @@ -76367,7 +78208,7 @@ } }, { - "id": 23752, + "id": 26066, "properties": { "east": "tall", "north": "none", @@ -76378,7 +78219,7 @@ } }, { - "id": 23753, + "id": 26067, "properties": { "east": "tall", "north": "none", @@ -76389,7 +78230,7 @@ } }, { - "id": 23754, + "id": 26068, "properties": { "east": "tall", "north": "low", @@ -76400,7 +78241,7 @@ } }, { - "id": 23755, + "id": 26069, "properties": { "east": "tall", "north": "low", @@ -76411,7 +78252,7 @@ } }, { - "id": 23756, + "id": 26070, "properties": { "east": "tall", "north": "low", @@ -76422,7 +78263,7 @@ } }, { - "id": 23757, + "id": 26071, "properties": { "east": "tall", "north": "low", @@ -76433,7 +78274,7 @@ } }, { - "id": 23758, + "id": 26072, "properties": { "east": "tall", "north": "low", @@ -76444,7 +78285,7 @@ } }, { - "id": 23759, + "id": 26073, "properties": { "east": "tall", "north": "low", @@ -76455,7 +78296,7 @@ } }, { - "id": 23760, + "id": 26074, "properties": { "east": "tall", "north": "low", @@ -76466,7 +78307,7 @@ } }, { - "id": 23761, + "id": 26075, "properties": { "east": "tall", "north": "low", @@ -76477,7 +78318,7 @@ } }, { - "id": 23762, + "id": 26076, "properties": { "east": "tall", "north": "low", @@ -76488,7 +78329,7 @@ } }, { - "id": 23763, + "id": 26077, "properties": { "east": "tall", "north": "low", @@ -76499,7 +78340,7 @@ } }, { - "id": 23764, + "id": 26078, "properties": { "east": "tall", "north": "low", @@ -76510,7 +78351,7 @@ } }, { - "id": 23765, + "id": 26079, "properties": { "east": "tall", "north": "low", @@ -76521,7 +78362,7 @@ } }, { - "id": 23766, + "id": 26080, "properties": { "east": "tall", "north": "low", @@ -76532,7 +78373,7 @@ } }, { - "id": 23767, + "id": 26081, "properties": { "east": "tall", "north": "low", @@ -76543,7 +78384,7 @@ } }, { - "id": 23768, + "id": 26082, "properties": { "east": "tall", "north": "low", @@ -76554,7 +78395,7 @@ } }, { - "id": 23769, + "id": 26083, "properties": { "east": "tall", "north": "low", @@ -76565,7 +78406,7 @@ } }, { - "id": 23770, + "id": 26084, "properties": { "east": "tall", "north": "low", @@ -76576,7 +78417,7 @@ } }, { - "id": 23771, + "id": 26085, "properties": { "east": "tall", "north": "low", @@ -76587,7 +78428,7 @@ } }, { - "id": 23772, + "id": 26086, "properties": { "east": "tall", "north": "low", @@ -76598,7 +78439,7 @@ } }, { - "id": 23773, + "id": 26087, "properties": { "east": "tall", "north": "low", @@ -76609,7 +78450,7 @@ } }, { - "id": 23774, + "id": 26088, "properties": { "east": "tall", "north": "low", @@ -76620,7 +78461,7 @@ } }, { - "id": 23775, + "id": 26089, "properties": { "east": "tall", "north": "low", @@ -76631,7 +78472,7 @@ } }, { - "id": 23776, + "id": 26090, "properties": { "east": "tall", "north": "low", @@ -76642,7 +78483,7 @@ } }, { - "id": 23777, + "id": 26091, "properties": { "east": "tall", "north": "low", @@ -76653,7 +78494,7 @@ } }, { - "id": 23778, + "id": 26092, "properties": { "east": "tall", "north": "low", @@ -76664,7 +78505,7 @@ } }, { - "id": 23779, + "id": 26093, "properties": { "east": "tall", "north": "low", @@ -76675,7 +78516,7 @@ } }, { - "id": 23780, + "id": 26094, "properties": { "east": "tall", "north": "low", @@ -76686,7 +78527,7 @@ } }, { - "id": 23781, + "id": 26095, "properties": { "east": "tall", "north": "low", @@ -76697,7 +78538,7 @@ } }, { - "id": 23782, + "id": 26096, "properties": { "east": "tall", "north": "low", @@ -76708,7 +78549,7 @@ } }, { - "id": 23783, + "id": 26097, "properties": { "east": "tall", "north": "low", @@ -76719,7 +78560,7 @@ } }, { - "id": 23784, + "id": 26098, "properties": { "east": "tall", "north": "low", @@ -76730,7 +78571,7 @@ } }, { - "id": 23785, + "id": 26099, "properties": { "east": "tall", "north": "low", @@ -76741,7 +78582,7 @@ } }, { - "id": 23786, + "id": 26100, "properties": { "east": "tall", "north": "low", @@ -76752,7 +78593,7 @@ } }, { - "id": 23787, + "id": 26101, "properties": { "east": "tall", "north": "low", @@ -76763,7 +78604,7 @@ } }, { - "id": 23788, + "id": 26102, "properties": { "east": "tall", "north": "low", @@ -76774,7 +78615,7 @@ } }, { - "id": 23789, + "id": 26103, "properties": { "east": "tall", "north": "low", @@ -76785,7 +78626,7 @@ } }, { - "id": 23790, + "id": 26104, "properties": { "east": "tall", "north": "tall", @@ -76796,7 +78637,7 @@ } }, { - "id": 23791, + "id": 26105, "properties": { "east": "tall", "north": "tall", @@ -76807,7 +78648,7 @@ } }, { - "id": 23792, + "id": 26106, "properties": { "east": "tall", "north": "tall", @@ -76818,7 +78659,7 @@ } }, { - "id": 23793, + "id": 26107, "properties": { "east": "tall", "north": "tall", @@ -76829,7 +78670,7 @@ } }, { - "id": 23794, + "id": 26108, "properties": { "east": "tall", "north": "tall", @@ -76840,7 +78681,7 @@ } }, { - "id": 23795, + "id": 26109, "properties": { "east": "tall", "north": "tall", @@ -76851,7 +78692,7 @@ } }, { - "id": 23796, + "id": 26110, "properties": { "east": "tall", "north": "tall", @@ -76862,7 +78703,7 @@ } }, { - "id": 23797, + "id": 26111, "properties": { "east": "tall", "north": "tall", @@ -76873,7 +78714,7 @@ } }, { - "id": 23798, + "id": 26112, "properties": { "east": "tall", "north": "tall", @@ -76884,7 +78725,7 @@ } }, { - "id": 23799, + "id": 26113, "properties": { "east": "tall", "north": "tall", @@ -76895,7 +78736,7 @@ } }, { - "id": 23800, + "id": 26114, "properties": { "east": "tall", "north": "tall", @@ -76906,7 +78747,7 @@ } }, { - "id": 23801, + "id": 26115, "properties": { "east": "tall", "north": "tall", @@ -76917,7 +78758,7 @@ } }, { - "id": 23802, + "id": 26116, "properties": { "east": "tall", "north": "tall", @@ -76928,7 +78769,7 @@ } }, { - "id": 23803, + "id": 26117, "properties": { "east": "tall", "north": "tall", @@ -76939,7 +78780,7 @@ } }, { - "id": 23804, + "id": 26118, "properties": { "east": "tall", "north": "tall", @@ -76950,7 +78791,7 @@ } }, { - "id": 23805, + "id": 26119, "properties": { "east": "tall", "north": "tall", @@ -76961,7 +78802,7 @@ } }, { - "id": 23806, + "id": 26120, "properties": { "east": "tall", "north": "tall", @@ -76972,7 +78813,7 @@ } }, { - "id": 23807, + "id": 26121, "properties": { "east": "tall", "north": "tall", @@ -76983,7 +78824,7 @@ } }, { - "id": 23808, + "id": 26122, "properties": { "east": "tall", "north": "tall", @@ -76994,7 +78835,7 @@ } }, { - "id": 23809, + "id": 26123, "properties": { "east": "tall", "north": "tall", @@ -77005,7 +78846,7 @@ } }, { - "id": 23810, + "id": 26124, "properties": { "east": "tall", "north": "tall", @@ -77016,7 +78857,7 @@ } }, { - "id": 23811, + "id": 26125, "properties": { "east": "tall", "north": "tall", @@ -77027,7 +78868,7 @@ } }, { - "id": 23812, + "id": 26126, "properties": { "east": "tall", "north": "tall", @@ -77038,7 +78879,7 @@ } }, { - "id": 23813, + "id": 26127, "properties": { "east": "tall", "north": "tall", @@ -77049,7 +78890,7 @@ } }, { - "id": 23814, + "id": 26128, "properties": { "east": "tall", "north": "tall", @@ -77060,7 +78901,7 @@ } }, { - "id": 23815, + "id": 26129, "properties": { "east": "tall", "north": "tall", @@ -77071,7 +78912,7 @@ } }, { - "id": 23816, + "id": 26130, "properties": { "east": "tall", "north": "tall", @@ -77082,7 +78923,7 @@ } }, { - "id": 23817, + "id": 26131, "properties": { "east": "tall", "north": "tall", @@ -77093,7 +78934,7 @@ } }, { - "id": 23818, + "id": 26132, "properties": { "east": "tall", "north": "tall", @@ -77104,7 +78945,7 @@ } }, { - "id": 23819, + "id": 26133, "properties": { "east": "tall", "north": "tall", @@ -77115,7 +78956,7 @@ } }, { - "id": 23820, + "id": 26134, "properties": { "east": "tall", "north": "tall", @@ -77126,7 +78967,7 @@ } }, { - "id": 23821, + "id": 26135, "properties": { "east": "tall", "north": "tall", @@ -77137,7 +78978,7 @@ } }, { - "id": 23822, + "id": 26136, "properties": { "east": "tall", "north": "tall", @@ -77148,7 +78989,7 @@ } }, { - "id": 23823, + "id": 26137, "properties": { "east": "tall", "north": "tall", @@ -77159,7 +79000,7 @@ } }, { - "id": 23824, + "id": 26138, "properties": { "east": "tall", "north": "tall", @@ -77170,7 +79011,7 @@ } }, { - "id": 23825, + "id": 26139, "properties": { "east": "tall", "north": "tall", @@ -77186,7 +79027,7 @@ "states": [ { "default": true, - "id": 23415 + "id": 25729 } ] }, @@ -82299,7 +84140,7 @@ "states": [ { "default": true, - "id": 22454 + "id": 24768 } ] }, @@ -87064,11 +88905,1423 @@ } ] }, + "minecraft:exposed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22950 + } + ] + }, "minecraft:exposed_copper": { "states": [ { "default": true, - "id": 21706 + "id": 22939 + } + ] + }, + "minecraft:exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24696, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24697, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24698, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24699, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23716, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23717, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23718, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23719, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23720, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23721, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23722, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23723, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23724, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23725, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23726, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23727, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23728, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23729, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23730, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23731, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23732, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23733, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23734, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23735, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23736, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23737, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23738, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23739, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23740, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23741, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23742, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23743, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23744, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23745, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23746, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23747, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23748, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23749, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23750, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23751, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23752, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23753, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23754, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23755, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23756, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23757, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23758, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23759, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23760, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23761, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23762, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23763, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23764, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23765, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23766, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23767, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23768, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23769, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23770, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23771, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23772, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23773, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23774, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23775, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23776, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23777, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23778, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23779, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24678, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24679, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24228, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24229, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24230, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24231, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24232, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24233, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24234, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24235, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24236, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24237, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24238, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24239, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24240, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24241, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24242, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24243, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24244, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24245, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24246, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24247, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24248, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24249, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24250, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24251, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24252, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24253, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24254, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24255, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24256, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24257, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24258, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24259, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24260, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24261, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24262, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24263, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24264, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24265, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24266, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24267, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24268, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24269, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24270, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24271, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24272, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24273, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24274, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24275, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24276, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24279, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24282, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24283, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24284, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24285, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -87076,7 +90329,7 @@ "states": [ { "default": true, - "id": 21712 + "id": 22946 } ] }, @@ -87094,21 +90347,21 @@ }, "states": [ { - "id": 22046, + "id": 23288, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22047, + "id": 23289, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22048, + "id": 23290, "properties": { "type": "bottom", "waterlogged": "true" @@ -87116,21 +90369,21 @@ }, { "default": true, - "id": 22049, + "id": 23291, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22050, + "id": 23292, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22051, + "id": 23293, "properties": { "type": "double", "waterlogged": "false" @@ -87164,7 +90417,7 @@ }, "states": [ { - "id": 21874, + "id": 23116, "properties": { "facing": "north", "half": "top", @@ -87173,7 +90426,7 @@ } }, { - "id": 21875, + "id": 23117, "properties": { "facing": "north", "half": "top", @@ -87182,7 +90435,7 @@ } }, { - "id": 21876, + "id": 23118, "properties": { "facing": "north", "half": "top", @@ -87191,7 +90444,7 @@ } }, { - "id": 21877, + "id": 23119, "properties": { "facing": "north", "half": "top", @@ -87200,7 +90453,7 @@ } }, { - "id": 21878, + "id": 23120, "properties": { "facing": "north", "half": "top", @@ -87209,7 +90462,7 @@ } }, { - "id": 21879, + "id": 23121, "properties": { "facing": "north", "half": "top", @@ -87218,7 +90471,7 @@ } }, { - "id": 21880, + "id": 23122, "properties": { "facing": "north", "half": "top", @@ -87227,7 +90480,7 @@ } }, { - "id": 21881, + "id": 23123, "properties": { "facing": "north", "half": "top", @@ -87236,7 +90489,7 @@ } }, { - "id": 21882, + "id": 23124, "properties": { "facing": "north", "half": "top", @@ -87245,7 +90498,7 @@ } }, { - "id": 21883, + "id": 23125, "properties": { "facing": "north", "half": "top", @@ -87254,7 +90507,7 @@ } }, { - "id": 21884, + "id": 23126, "properties": { "facing": "north", "half": "bottom", @@ -87264,7 +90517,7 @@ }, { "default": true, - "id": 21885, + "id": 23127, "properties": { "facing": "north", "half": "bottom", @@ -87273,7 +90526,7 @@ } }, { - "id": 21886, + "id": 23128, "properties": { "facing": "north", "half": "bottom", @@ -87282,7 +90535,7 @@ } }, { - "id": 21887, + "id": 23129, "properties": { "facing": "north", "half": "bottom", @@ -87291,7 +90544,7 @@ } }, { - "id": 21888, + "id": 23130, "properties": { "facing": "north", "half": "bottom", @@ -87300,7 +90553,7 @@ } }, { - "id": 21889, + "id": 23131, "properties": { "facing": "north", "half": "bottom", @@ -87309,7 +90562,7 @@ } }, { - "id": 21890, + "id": 23132, "properties": { "facing": "north", "half": "bottom", @@ -87318,7 +90571,7 @@ } }, { - "id": 21891, + "id": 23133, "properties": { "facing": "north", "half": "bottom", @@ -87327,7 +90580,7 @@ } }, { - "id": 21892, + "id": 23134, "properties": { "facing": "north", "half": "bottom", @@ -87336,7 +90589,7 @@ } }, { - "id": 21893, + "id": 23135, "properties": { "facing": "north", "half": "bottom", @@ -87345,7 +90598,7 @@ } }, { - "id": 21894, + "id": 23136, "properties": { "facing": "south", "half": "top", @@ -87354,7 +90607,7 @@ } }, { - "id": 21895, + "id": 23137, "properties": { "facing": "south", "half": "top", @@ -87363,7 +90616,7 @@ } }, { - "id": 21896, + "id": 23138, "properties": { "facing": "south", "half": "top", @@ -87372,7 +90625,7 @@ } }, { - "id": 21897, + "id": 23139, "properties": { "facing": "south", "half": "top", @@ -87381,7 +90634,7 @@ } }, { - "id": 21898, + "id": 23140, "properties": { "facing": "south", "half": "top", @@ -87390,7 +90643,7 @@ } }, { - "id": 21899, + "id": 23141, "properties": { "facing": "south", "half": "top", @@ -87399,7 +90652,7 @@ } }, { - "id": 21900, + "id": 23142, "properties": { "facing": "south", "half": "top", @@ -87408,7 +90661,7 @@ } }, { - "id": 21901, + "id": 23143, "properties": { "facing": "south", "half": "top", @@ -87417,7 +90670,7 @@ } }, { - "id": 21902, + "id": 23144, "properties": { "facing": "south", "half": "top", @@ -87426,7 +90679,7 @@ } }, { - "id": 21903, + "id": 23145, "properties": { "facing": "south", "half": "top", @@ -87435,7 +90688,7 @@ } }, { - "id": 21904, + "id": 23146, "properties": { "facing": "south", "half": "bottom", @@ -87444,7 +90697,7 @@ } }, { - "id": 21905, + "id": 23147, "properties": { "facing": "south", "half": "bottom", @@ -87453,7 +90706,7 @@ } }, { - "id": 21906, + "id": 23148, "properties": { "facing": "south", "half": "bottom", @@ -87462,7 +90715,7 @@ } }, { - "id": 21907, + "id": 23149, "properties": { "facing": "south", "half": "bottom", @@ -87471,7 +90724,7 @@ } }, { - "id": 21908, + "id": 23150, "properties": { "facing": "south", "half": "bottom", @@ -87480,7 +90733,7 @@ } }, { - "id": 21909, + "id": 23151, "properties": { "facing": "south", "half": "bottom", @@ -87489,7 +90742,7 @@ } }, { - "id": 21910, + "id": 23152, "properties": { "facing": "south", "half": "bottom", @@ -87498,7 +90751,7 @@ } }, { - "id": 21911, + "id": 23153, "properties": { "facing": "south", "half": "bottom", @@ -87507,7 +90760,7 @@ } }, { - "id": 21912, + "id": 23154, "properties": { "facing": "south", "half": "bottom", @@ -87516,7 +90769,7 @@ } }, { - "id": 21913, + "id": 23155, "properties": { "facing": "south", "half": "bottom", @@ -87525,7 +90778,7 @@ } }, { - "id": 21914, + "id": 23156, "properties": { "facing": "west", "half": "top", @@ -87534,7 +90787,7 @@ } }, { - "id": 21915, + "id": 23157, "properties": { "facing": "west", "half": "top", @@ -87543,7 +90796,7 @@ } }, { - "id": 21916, + "id": 23158, "properties": { "facing": "west", "half": "top", @@ -87552,7 +90805,7 @@ } }, { - "id": 21917, + "id": 23159, "properties": { "facing": "west", "half": "top", @@ -87561,7 +90814,7 @@ } }, { - "id": 21918, + "id": 23160, "properties": { "facing": "west", "half": "top", @@ -87570,7 +90823,7 @@ } }, { - "id": 21919, + "id": 23161, "properties": { "facing": "west", "half": "top", @@ -87579,7 +90832,7 @@ } }, { - "id": 21920, + "id": 23162, "properties": { "facing": "west", "half": "top", @@ -87588,7 +90841,7 @@ } }, { - "id": 21921, + "id": 23163, "properties": { "facing": "west", "half": "top", @@ -87597,7 +90850,7 @@ } }, { - "id": 21922, + "id": 23164, "properties": { "facing": "west", "half": "top", @@ -87606,7 +90859,7 @@ } }, { - "id": 21923, + "id": 23165, "properties": { "facing": "west", "half": "top", @@ -87615,7 +90868,7 @@ } }, { - "id": 21924, + "id": 23166, "properties": { "facing": "west", "half": "bottom", @@ -87624,7 +90877,7 @@ } }, { - "id": 21925, + "id": 23167, "properties": { "facing": "west", "half": "bottom", @@ -87633,7 +90886,7 @@ } }, { - "id": 21926, + "id": 23168, "properties": { "facing": "west", "half": "bottom", @@ -87642,7 +90895,7 @@ } }, { - "id": 21927, + "id": 23169, "properties": { "facing": "west", "half": "bottom", @@ -87651,7 +90904,7 @@ } }, { - "id": 21928, + "id": 23170, "properties": { "facing": "west", "half": "bottom", @@ -87660,7 +90913,7 @@ } }, { - "id": 21929, + "id": 23171, "properties": { "facing": "west", "half": "bottom", @@ -87669,7 +90922,7 @@ } }, { - "id": 21930, + "id": 23172, "properties": { "facing": "west", "half": "bottom", @@ -87678,7 +90931,7 @@ } }, { - "id": 21931, + "id": 23173, "properties": { "facing": "west", "half": "bottom", @@ -87687,7 +90940,7 @@ } }, { - "id": 21932, + "id": 23174, "properties": { "facing": "west", "half": "bottom", @@ -87696,7 +90949,7 @@ } }, { - "id": 21933, + "id": 23175, "properties": { "facing": "west", "half": "bottom", @@ -87705,7 +90958,7 @@ } }, { - "id": 21934, + "id": 23176, "properties": { "facing": "east", "half": "top", @@ -87714,7 +90967,7 @@ } }, { - "id": 21935, + "id": 23177, "properties": { "facing": "east", "half": "top", @@ -87723,7 +90976,7 @@ } }, { - "id": 21936, + "id": 23178, "properties": { "facing": "east", "half": "top", @@ -87732,7 +90985,7 @@ } }, { - "id": 21937, + "id": 23179, "properties": { "facing": "east", "half": "top", @@ -87741,7 +90994,7 @@ } }, { - "id": 21938, + "id": 23180, "properties": { "facing": "east", "half": "top", @@ -87750,7 +91003,7 @@ } }, { - "id": 21939, + "id": 23181, "properties": { "facing": "east", "half": "top", @@ -87759,7 +91012,7 @@ } }, { - "id": 21940, + "id": 23182, "properties": { "facing": "east", "half": "top", @@ -87768,7 +91021,7 @@ } }, { - "id": 21941, + "id": 23183, "properties": { "facing": "east", "half": "top", @@ -87777,7 +91030,7 @@ } }, { - "id": 21942, + "id": 23184, "properties": { "facing": "east", "half": "top", @@ -87786,7 +91039,7 @@ } }, { - "id": 21943, + "id": 23185, "properties": { "facing": "east", "half": "top", @@ -87795,7 +91048,7 @@ } }, { - "id": 21944, + "id": 23186, "properties": { "facing": "east", "half": "bottom", @@ -87804,7 +91057,7 @@ } }, { - "id": 21945, + "id": 23187, "properties": { "facing": "east", "half": "bottom", @@ -87813,7 +91066,7 @@ } }, { - "id": 21946, + "id": 23188, "properties": { "facing": "east", "half": "bottom", @@ -87822,7 +91075,7 @@ } }, { - "id": 21947, + "id": 23189, "properties": { "facing": "east", "half": "bottom", @@ -87831,7 +91084,7 @@ } }, { - "id": 21948, + "id": 23190, "properties": { "facing": "east", "half": "bottom", @@ -87840,7 +91093,7 @@ } }, { - "id": 21949, + "id": 23191, "properties": { "facing": "east", "half": "bottom", @@ -87849,7 +91102,7 @@ } }, { - "id": 21950, + "id": 23192, "properties": { "facing": "east", "half": "bottom", @@ -87858,7 +91111,7 @@ } }, { - "id": 21951, + "id": 23193, "properties": { "facing": "east", "half": "bottom", @@ -87867,7 +91120,7 @@ } }, { - "id": 21952, + "id": 23194, "properties": { "facing": "east", "half": "bottom", @@ -87876,7 +91129,7 @@ } }, { - "id": 21953, + "id": 23195, "properties": { "facing": "east", "half": "bottom", @@ -93783,7 +97036,7 @@ "states": [ { "default": true, - "id": 22511 + "id": 24825 } ] }, @@ -94039,7 +97292,7 @@ "states": [ { "default": true, - "id": 24258 + "id": 26572 } ] }, @@ -94194,7 +97447,7 @@ }, "states": [ { - "id": 6780, + "id": 6779, "properties": { "east": "true", "north": "true", @@ -94204,7 +97457,7 @@ } }, { - "id": 6781, + "id": 6780, "properties": { "east": "true", "north": "true", @@ -94213,6 +97466,16 @@ "west": "false" } }, + { + "id": 6781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, { "id": 6782, "properties": { @@ -94220,7 +97483,7 @@ "north": "true", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -94228,9 +97491,9 @@ "properties": { "east": "true", "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -94240,7 +97503,7 @@ "north": "true", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94249,8 +97512,8 @@ "east": "true", "north": "true", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94260,17 +97523,17 @@ "north": "true", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6787, "properties": { "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -94280,7 +97543,7 @@ "north": "false", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94289,8 +97552,8 @@ "east": "true", "north": "false", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94300,7 +97563,7 @@ "north": "false", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -94308,9 +97571,9 @@ "properties": { "east": "true", "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -94320,7 +97583,7 @@ "north": "false", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94329,8 +97592,8 @@ "east": "true", "north": "false", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94340,17 +97603,17 @@ "north": "false", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6795, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -94360,7 +97623,7 @@ "north": "true", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94369,8 +97632,8 @@ "east": "false", "north": "true", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94380,7 +97643,7 @@ "north": "true", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -94388,9 +97651,9 @@ "properties": { "east": "false", "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -94400,7 +97663,7 @@ "north": "true", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94409,8 +97672,8 @@ "east": "false", "north": "true", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94420,17 +97683,17 @@ "north": "true", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6803, "properties": { "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -94440,7 +97703,7 @@ "north": "false", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -94449,8 +97712,8 @@ "east": "false", "north": "false", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -94460,7 +97723,7 @@ "north": "false", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -94468,23 +97731,13 @@ "properties": { "east": "false", "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 6808, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6809, "properties": { "east": "false", "north": "false", @@ -94494,7 +97747,7 @@ } }, { - "id": 6810, + "id": 6809, "properties": { "east": "false", "north": "false", @@ -94505,7 +97758,7 @@ }, { "default": true, - "id": 6811, + "id": 6810, "properties": { "east": "false", "north": "false", @@ -96091,7 +99344,7 @@ "states": [ { "default": true, - "id": 5864 + "id": 5863 } ] }, @@ -100524,14 +103777,6 @@ } ] }, - "minecraft:grass": { - "states": [ - { - "default": true, - "id": 2005 - } - ] - }, "minecraft:grass_block": { "properties": { "snowy": [ @@ -101121,7 +104366,7 @@ "states": [ { "default": true, - "id": 5953 + "id": 5952 } ] }, @@ -102083,7 +105328,7 @@ "states": [ { "default": true, - "id": 5959 + "id": 5958 } ] }, @@ -102598,14 +105843,14 @@ }, "states": [ { - "id": 22586, + "id": 24900, "properties": { "waterlogged": "true" } }, { "default": true, - "id": 22587, + "id": 24901, "properties": { "waterlogged": "false" } @@ -103006,7 +106251,7 @@ "states": [ { "default": true, - "id": 6549 + "id": 6548 } ] }, @@ -103014,7 +106259,7 @@ "states": [ { "default": true, - "id": 6545 + "id": 6544 } ] }, @@ -103022,7 +106267,7 @@ "states": [ { "default": true, - "id": 6548 + "id": 6547 } ] }, @@ -103036,20 +106281,20 @@ }, "states": [ { - "id": 24240, + "id": 26554, "properties": { "axis": "x" } }, { "default": true, - "id": 24241, + "id": 26555, "properties": { "axis": "y" } }, { - "id": 24242, + "id": 26556, "properties": { "axis": "z" } @@ -103060,7 +106305,7 @@ "states": [ { "default": true, - "id": 6547 + "id": 6546 } ] }, @@ -103068,7 +106313,7 @@ "states": [ { "default": true, - "id": 6544 + "id": 6543 } ] }, @@ -103076,7 +106321,7 @@ "states": [ { "default": true, - "id": 6546 + "id": 6545 } ] }, @@ -103105,7 +106350,7 @@ }, "states": [ { - "id": 6742, + "id": 6741, "properties": { "east": "true", "north": "true", @@ -103115,7 +106360,7 @@ } }, { - "id": 6743, + "id": 6742, "properties": { "east": "true", "north": "true", @@ -103124,6 +106369,16 @@ "west": "false" } }, + { + "id": 6743, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, { "id": 6744, "properties": { @@ -103131,7 +106386,7 @@ "north": "true", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -103139,9 +106394,9 @@ "properties": { "east": "true", "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -103151,7 +106406,7 @@ "north": "true", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103160,8 +106415,8 @@ "east": "true", "north": "true", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103171,17 +106426,17 @@ "north": "true", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6749, "properties": { "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -103191,7 +106446,7 @@ "north": "false", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103200,8 +106455,8 @@ "east": "true", "north": "false", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103211,7 +106466,7 @@ "north": "false", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -103219,9 +106474,9 @@ "properties": { "east": "true", "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -103231,7 +106486,7 @@ "north": "false", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103240,8 +106495,8 @@ "east": "true", "north": "false", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103251,17 +106506,17 @@ "north": "false", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6757, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -103271,7 +106526,7 @@ "north": "true", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103280,8 +106535,8 @@ "east": "false", "north": "true", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103291,7 +106546,7 @@ "north": "true", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -103299,9 +106554,9 @@ "properties": { "east": "false", "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { @@ -103311,7 +106566,7 @@ "north": "true", "south": "false", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103320,8 +106575,8 @@ "east": "false", "north": "true", "south": "false", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103331,17 +106586,17 @@ "north": "true", "south": "false", "waterlogged": "false", - "west": "true" + "west": "false" } }, { "id": 6765, "properties": { "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { @@ -103351,7 +106606,7 @@ "north": "false", "south": "true", "waterlogged": "true", - "west": "true" + "west": "false" } }, { @@ -103360,8 +106615,8 @@ "east": "false", "north": "false", "south": "true", - "waterlogged": "true", - "west": "false" + "waterlogged": "false", + "west": "true" } }, { @@ -103371,7 +106626,7 @@ "north": "false", "south": "true", "waterlogged": "false", - "west": "true" + "west": "false" } }, { @@ -103379,23 +106634,13 @@ "properties": { "east": "false", "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "south": "false", + "waterlogged": "true", + "west": "true" } }, { "id": 6770, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6771, "properties": { "east": "false", "north": "false", @@ -103405,7 +106650,7 @@ } }, { - "id": 6772, + "id": 6771, "properties": { "east": "false", "north": "false", @@ -103416,7 +106661,7 @@ }, { "default": true, - "id": 6773, + "id": 6772, "properties": { "east": "false", "north": "false", @@ -104793,25 +108038,25 @@ "states": [ { "default": true, - "id": 5871, + "id": 5870, "properties": { "facing": "north" } }, { - "id": 5872, + "id": 5871, "properties": { "facing": "south" } }, { - "id": 5873, + "id": 5872, "properties": { "facing": "west" } }, { - "id": 5874, + "id": 5873, "properties": { "facing": "east" } @@ -108440,7 +111685,7 @@ }, "states": [ { - "id": 6154, + "id": 6153, "properties": { "facing": "north", "half": "top", @@ -108450,7 +111695,7 @@ } }, { - "id": 6155, + "id": 6154, "properties": { "facing": "north", "half": "top", @@ -108459,6 +111704,16 @@ "waterlogged": "false" } }, + { + "id": 6155, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6156, "properties": { @@ -108466,7 +111721,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108474,9 +111729,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108486,7 +111741,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108495,8 +111750,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108506,17 +111761,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6161, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -108526,7 +111781,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108535,8 +111790,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108546,7 +111801,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108554,23 +111809,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6166, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6167, "properties": { "facing": "north", "half": "bottom", @@ -108580,7 +111825,7 @@ } }, { - "id": 6168, + "id": 6167, "properties": { "facing": "north", "half": "bottom", @@ -108591,7 +111836,7 @@ }, { "default": true, - "id": 6169, + "id": 6168, "properties": { "facing": "north", "half": "bottom", @@ -108601,7 +111846,7 @@ } }, { - "id": 6170, + "id": 6169, "properties": { "facing": "south", "half": "top", @@ -108611,7 +111856,7 @@ } }, { - "id": 6171, + "id": 6170, "properties": { "facing": "south", "half": "top", @@ -108620,6 +111865,16 @@ "waterlogged": "false" } }, + { + "id": 6171, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6172, "properties": { @@ -108627,7 +111882,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108635,9 +111890,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108647,7 +111902,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108656,8 +111911,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108667,17 +111922,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6177, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -108687,7 +111942,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108696,8 +111951,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108707,7 +111962,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108715,9 +111970,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108727,7 +111982,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108736,8 +111991,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108747,17 +112002,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6185, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -108767,7 +112022,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108776,8 +112031,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108787,7 +112042,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108795,9 +112050,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108807,7 +112062,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108816,8 +112071,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108827,17 +112082,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6193, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -108847,7 +112102,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108856,8 +112111,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108867,7 +112122,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108875,9 +112130,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108887,7 +112142,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108896,8 +112151,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108907,17 +112162,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6201, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -108927,7 +112182,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108936,8 +112191,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108947,7 +112202,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108955,9 +112210,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -108967,7 +112222,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -108976,8 +112231,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -108987,17 +112242,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6209, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -109007,7 +112262,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -109016,8 +112271,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -109027,7 +112282,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -109035,23 +112290,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6214, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6215, "properties": { "facing": "east", "half": "bottom", @@ -109061,7 +112306,7 @@ } }, { - "id": 6216, + "id": 6215, "properties": { "facing": "east", "half": "bottom", @@ -109071,7 +112316,7 @@ } }, { - "id": 6217, + "id": 6216, "properties": { "facing": "east", "half": "bottom", @@ -111018,7 +114263,7 @@ "states": [ { "default": true, - "id": 5949 + "id": 5948 } ] }, @@ -111980,7 +115225,7 @@ "states": [ { "default": true, - "id": 5954 + "id": 5953 } ] }, @@ -112526,7 +115771,7 @@ }, "states": [ { - "id": 22410, + "id": 24724, "properties": { "facing": "north", "powered": "true", @@ -112534,7 +115779,7 @@ } }, { - "id": 22411, + "id": 24725, "properties": { "facing": "north", "powered": "true", @@ -112542,7 +115787,7 @@ } }, { - "id": 22412, + "id": 24726, "properties": { "facing": "north", "powered": "false", @@ -112550,7 +115795,7 @@ } }, { - "id": 22413, + "id": 24727, "properties": { "facing": "north", "powered": "false", @@ -112558,7 +115803,7 @@ } }, { - "id": 22414, + "id": 24728, "properties": { "facing": "east", "powered": "true", @@ -112566,7 +115811,7 @@ } }, { - "id": 22415, + "id": 24729, "properties": { "facing": "east", "powered": "true", @@ -112574,7 +115819,7 @@ } }, { - "id": 22416, + "id": 24730, "properties": { "facing": "east", "powered": "false", @@ -112582,7 +115827,7 @@ } }, { - "id": 22417, + "id": 24731, "properties": { "facing": "east", "powered": "false", @@ -112590,7 +115835,7 @@ } }, { - "id": 22418, + "id": 24732, "properties": { "facing": "south", "powered": "true", @@ -112598,7 +115843,7 @@ } }, { - "id": 22419, + "id": 24733, "properties": { "facing": "south", "powered": "true", @@ -112606,7 +115851,7 @@ } }, { - "id": 22420, + "id": 24734, "properties": { "facing": "south", "powered": "false", @@ -112614,7 +115859,7 @@ } }, { - "id": 22421, + "id": 24735, "properties": { "facing": "south", "powered": "false", @@ -112622,7 +115867,7 @@ } }, { - "id": 22422, + "id": 24736, "properties": { "facing": "west", "powered": "true", @@ -112630,7 +115875,7 @@ } }, { - "id": 22423, + "id": 24737, "properties": { "facing": "west", "powered": "true", @@ -112638,7 +115883,7 @@ } }, { - "id": 22424, + "id": 24738, "properties": { "facing": "west", "powered": "false", @@ -112646,7 +115891,7 @@ } }, { - "id": 22425, + "id": 24739, "properties": { "facing": "west", "powered": "false", @@ -112654,7 +115899,7 @@ } }, { - "id": 22426, + "id": 24740, "properties": { "facing": "up", "powered": "true", @@ -112662,7 +115907,7 @@ } }, { - "id": 22427, + "id": 24741, "properties": { "facing": "up", "powered": "true", @@ -112670,7 +115915,7 @@ } }, { - "id": 22428, + "id": 24742, "properties": { "facing": "up", "powered": "false", @@ -112679,7 +115924,7 @@ }, { "default": true, - "id": 22429, + "id": 24743, "properties": { "facing": "up", "powered": "false", @@ -112687,7 +115932,7 @@ } }, { - "id": 22430, + "id": 24744, "properties": { "facing": "down", "powered": "true", @@ -112695,7 +115940,7 @@ } }, { - "id": 22431, + "id": 24745, "properties": { "facing": "down", "powered": "true", @@ -112703,7 +115948,7 @@ } }, { - "id": 22432, + "id": 24746, "properties": { "facing": "down", "powered": "false", @@ -112711,7 +115956,7 @@ } }, { - "id": 22433, + "id": 24747, "properties": { "facing": "down", "powered": "false", @@ -113317,7 +116562,7 @@ "states": [ { "default": true, - "id": 5951 + "id": 5950 } ] }, @@ -114324,7 +117569,7 @@ "states": [ { "default": true, - "id": 5948 + "id": 5947 } ] }, @@ -118628,7 +121873,7 @@ }, "states": [ { - "id": 6410, + "id": 6409, "properties": { "facing": "north", "half": "top", @@ -118638,7 +121883,7 @@ } }, { - "id": 6411, + "id": 6410, "properties": { "facing": "north", "half": "top", @@ -118647,6 +121892,16 @@ "waterlogged": "false" } }, + { + "id": 6411, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6412, "properties": { @@ -118654,7 +121909,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118662,9 +121917,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -118674,7 +121929,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118683,8 +121938,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118694,17 +121949,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6417, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -118714,7 +121969,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118723,8 +121978,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118734,7 +121989,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118742,23 +121997,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6422, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6423, "properties": { "facing": "north", "half": "bottom", @@ -118768,7 +122013,7 @@ } }, { - "id": 6424, + "id": 6423, "properties": { "facing": "north", "half": "bottom", @@ -118779,7 +122024,7 @@ }, { "default": true, - "id": 6425, + "id": 6424, "properties": { "facing": "north", "half": "bottom", @@ -118789,7 +122034,7 @@ } }, { - "id": 6426, + "id": 6425, "properties": { "facing": "south", "half": "top", @@ -118799,7 +122044,7 @@ } }, { - "id": 6427, + "id": 6426, "properties": { "facing": "south", "half": "top", @@ -118808,6 +122053,16 @@ "waterlogged": "false" } }, + { + "id": 6427, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6428, "properties": { @@ -118815,7 +122070,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118823,9 +122078,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -118835,7 +122090,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118844,8 +122099,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118855,17 +122110,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6433, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -118875,7 +122130,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118884,8 +122139,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118895,7 +122150,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118903,9 +122158,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -118915,7 +122170,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118924,8 +122179,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118935,17 +122190,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6441, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -118955,7 +122210,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118964,8 +122219,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -118975,7 +122230,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -118983,9 +122238,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -118995,7 +122250,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119004,8 +122259,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119015,17 +122270,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6449, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -119035,7 +122290,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119044,8 +122299,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119055,7 +122310,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119063,9 +122318,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -119075,7 +122330,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119084,8 +122339,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119095,17 +122350,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6457, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -119115,7 +122370,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119124,8 +122379,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119135,7 +122390,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119143,9 +122398,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -119155,7 +122410,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119164,8 +122419,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119175,17 +122430,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6465, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -119195,7 +122450,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119204,8 +122459,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -119215,7 +122470,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -119223,23 +122478,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6470, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6471, "properties": { "facing": "east", "half": "bottom", @@ -119249,7 +122494,7 @@ } }, { - "id": 6472, + "id": 6471, "properties": { "facing": "east", "half": "bottom", @@ -119259,7 +122504,7 @@ } }, { - "id": 6473, + "id": 6472, "properties": { "facing": "east", "half": "bottom", @@ -119626,7 +122871,7 @@ "states": [ { "default": true, - "id": 22529 + "id": 24843 } ] }, @@ -119634,7 +122879,7 @@ "states": [ { "default": true, - "id": 22512 + "id": 24826 } ] }, @@ -128460,7 +131705,7 @@ "states": [ { "default": true, - "id": 6539 + "id": 6538 } ] }, @@ -128571,7 +131816,7 @@ "states": [ { "default": true, - "id": 22589 + "id": 24903 } ] }, @@ -132984,7 +136229,7 @@ "states": [ { "default": true, - "id": 6543 + "id": 6542 } ] }, @@ -133048,7 +136293,7 @@ "states": [ { "default": true, - "id": 6678, + "id": 6677, "properties": { "down": "true", "east": "true", @@ -133059,7 +136304,7 @@ } }, { - "id": 6679, + "id": 6678, "properties": { "down": "true", "east": "true", @@ -133069,6 +136314,17 @@ "west": "false" } }, + { + "id": 6679, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, { "id": 6680, "properties": { @@ -133077,7 +136333,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133086,9 +136342,9 @@ "down": "true", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133099,7 +136355,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133109,8 +136365,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133121,7 +136377,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133129,10 +136385,10 @@ "properties": { "down": "true", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133143,7 +136399,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133153,8 +136409,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133165,7 +136421,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133174,9 +136430,9 @@ "down": "true", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133187,7 +136443,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133197,8 +136453,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133209,18 +136465,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6693, "properties": { "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133231,7 +136487,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133241,8 +136497,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133253,7 +136509,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133262,9 +136518,9 @@ "down": "true", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133275,7 +136531,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133285,8 +136541,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133297,7 +136553,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133305,10 +136561,10 @@ "properties": { "down": "true", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133319,7 +136575,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133329,8 +136585,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133341,7 +136597,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133350,9 +136606,9 @@ "down": "true", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133363,7 +136619,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133373,8 +136629,8 @@ "east": "false", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133385,18 +136641,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6709, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133407,7 +136663,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133417,8 +136673,8 @@ "east": "true", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133429,7 +136685,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133438,9 +136694,9 @@ "down": "false", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133451,7 +136707,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133461,8 +136717,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133473,7 +136729,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133481,10 +136737,10 @@ "properties": { "down": "false", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133495,7 +136751,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133505,8 +136761,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133517,7 +136773,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133526,9 +136782,9 @@ "down": "false", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133539,7 +136795,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133549,8 +136805,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133561,18 +136817,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6725, "properties": { "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133583,7 +136839,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133593,8 +136849,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133605,7 +136861,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133614,9 +136870,9 @@ "down": "false", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -133627,7 +136883,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133637,8 +136893,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133649,7 +136905,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133657,10 +136913,10 @@ "properties": { "down": "false", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -133671,7 +136927,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -133681,8 +136937,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -133693,7 +136949,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -133702,24 +136958,13 @@ "down": "false", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { "id": 6738, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6739, "properties": { "down": "false", "east": "false", @@ -133730,7 +136975,7 @@ } }, { - "id": 6740, + "id": 6739, "properties": { "down": "false", "east": "false", @@ -133741,7 +136986,7 @@ } }, { - "id": 6741, + "id": 6740, "properties": { "down": "false", "east": "false", @@ -138554,13 +141799,13 @@ "states": [ { "default": true, - "id": 5865, + "id": 5864, "properties": { "axis": "x" } }, { - "id": 5866, + "id": 5865, "properties": { "axis": "z" } @@ -138640,7 +141885,7 @@ "states": [ { "default": true, - "id": 5850 + "id": 5849 } ] }, @@ -151413,7 +154658,7 @@ }, "states": [ { - "id": 5962, + "id": 5961, "properties": { "facing": "north", "half": "top", @@ -151423,7 +154668,7 @@ } }, { - "id": 5963, + "id": 5962, "properties": { "facing": "north", "half": "top", @@ -151432,6 +154677,16 @@ "waterlogged": "false" } }, + { + "id": 5963, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 5964, "properties": { @@ -151439,7 +154694,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151447,9 +154702,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151459,7 +154714,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151468,8 +154723,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151479,17 +154734,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 5969, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151499,7 +154754,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151508,8 +154763,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151519,7 +154774,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151527,23 +154782,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 5974, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 5975, "properties": { "facing": "north", "half": "bottom", @@ -151553,7 +154798,7 @@ } }, { - "id": 5976, + "id": 5975, "properties": { "facing": "north", "half": "bottom", @@ -151564,7 +154809,7 @@ }, { "default": true, - "id": 5977, + "id": 5976, "properties": { "facing": "north", "half": "bottom", @@ -151574,7 +154819,7 @@ } }, { - "id": 5978, + "id": 5977, "properties": { "facing": "south", "half": "top", @@ -151584,7 +154829,7 @@ } }, { - "id": 5979, + "id": 5978, "properties": { "facing": "south", "half": "top", @@ -151593,6 +154838,16 @@ "waterlogged": "false" } }, + { + "id": 5979, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 5980, "properties": { @@ -151600,7 +154855,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151608,9 +154863,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151620,7 +154875,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151629,8 +154884,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151640,17 +154895,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 5985, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151660,7 +154915,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151669,8 +154924,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151680,7 +154935,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151688,9 +154943,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151700,7 +154955,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151709,8 +154964,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151720,17 +154975,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 5993, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151740,7 +154995,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151749,8 +155004,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151760,7 +155015,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151768,9 +155023,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151780,7 +155035,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151789,8 +155044,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151800,17 +155055,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6001, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151820,7 +155075,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151829,8 +155084,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151840,7 +155095,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151848,9 +155103,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151860,7 +155115,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151869,8 +155124,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151880,17 +155135,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6009, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151900,7 +155155,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151909,8 +155164,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151920,7 +155175,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151928,9 +155183,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -151940,7 +155195,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151949,8 +155204,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -151960,17 +155215,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6017, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -151980,7 +155235,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -151989,8 +155244,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -152000,7 +155255,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -152008,23 +155263,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6022, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6023, "properties": { "facing": "east", "half": "bottom", @@ -152034,7 +155279,7 @@ } }, { - "id": 6024, + "id": 6023, "properties": { "facing": "east", "half": "bottom", @@ -152044,7 +155289,7 @@ } }, { - "id": 6025, + "id": 6024, "properties": { "facing": "east", "half": "bottom", @@ -152352,20 +155597,20 @@ }, "states": [ { - "id": 24249, + "id": 26563, "properties": { "axis": "x" } }, { "default": true, - "id": 24250, + "id": 26564, "properties": { "axis": "y" } }, { - "id": 24251, + "id": 26565, "properties": { "axis": "z" } @@ -152930,7 +156175,7 @@ "states": [ { "default": true, - "id": 5947 + "id": 5946 } ] }, @@ -153350,11 +156595,1423 @@ } ] }, + "minecraft:oxidized_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22948 + } + ] + }, "minecraft:oxidized_copper": { "states": [ { "default": true, - "id": 21704 + "id": 22941 + } + ] + }, + "minecraft:oxidized_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24704, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24705, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24706, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24707, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23780, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23781, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23782, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23783, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23784, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23785, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23786, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23787, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23788, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23789, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23790, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23791, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23792, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23793, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23794, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23795, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23796, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23797, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23798, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23799, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23800, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23801, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23802, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23803, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23804, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23805, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23806, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23807, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23808, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23809, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23810, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23811, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23812, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23813, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23814, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23815, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23816, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23817, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23818, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23819, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23820, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23821, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23822, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23823, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23824, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23825, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23826, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23827, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23828, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23829, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23830, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23831, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23832, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23833, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23834, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23835, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23836, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23837, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23838, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23839, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23840, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23841, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23842, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23843, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24682, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24683, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24292, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24293, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24300, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24301, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24302, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24303, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24304, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24305, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24306, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24307, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24308, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24309, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24310, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24311, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24312, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24313, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24315, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24316, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24317, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24318, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24319, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24320, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24321, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24322, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24323, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24324, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24325, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24326, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24327, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24328, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24329, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24330, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24331, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24332, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24333, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24336, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24337, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24338, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24339, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24340, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24341, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24342, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24343, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24344, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24345, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24346, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24347, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24348, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24349, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24350, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24351, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24354, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24355, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -153362,7 +158019,7 @@ "states": [ { "default": true, - "id": 21710 + "id": 22944 } ] }, @@ -153380,21 +158037,21 @@ }, "states": [ { - "id": 22034, + "id": 23276, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22035, + "id": 23277, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22036, + "id": 23278, "properties": { "type": "bottom", "waterlogged": "true" @@ -153402,21 +158059,21 @@ }, { "default": true, - "id": 22037, + "id": 23279, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22038, + "id": 23280, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22039, + "id": 23281, "properties": { "type": "double", "waterlogged": "false" @@ -153450,7 +158107,7 @@ }, "states": [ { - "id": 21714, + "id": 22956, "properties": { "facing": "north", "half": "top", @@ -153459,7 +158116,7 @@ } }, { - "id": 21715, + "id": 22957, "properties": { "facing": "north", "half": "top", @@ -153468,7 +158125,7 @@ } }, { - "id": 21716, + "id": 22958, "properties": { "facing": "north", "half": "top", @@ -153477,7 +158134,7 @@ } }, { - "id": 21717, + "id": 22959, "properties": { "facing": "north", "half": "top", @@ -153486,7 +158143,7 @@ } }, { - "id": 21718, + "id": 22960, "properties": { "facing": "north", "half": "top", @@ -153495,7 +158152,7 @@ } }, { - "id": 21719, + "id": 22961, "properties": { "facing": "north", "half": "top", @@ -153504,7 +158161,7 @@ } }, { - "id": 21720, + "id": 22962, "properties": { "facing": "north", "half": "top", @@ -153513,7 +158170,7 @@ } }, { - "id": 21721, + "id": 22963, "properties": { "facing": "north", "half": "top", @@ -153522,7 +158179,7 @@ } }, { - "id": 21722, + "id": 22964, "properties": { "facing": "north", "half": "top", @@ -153531,7 +158188,7 @@ } }, { - "id": 21723, + "id": 22965, "properties": { "facing": "north", "half": "top", @@ -153540,7 +158197,7 @@ } }, { - "id": 21724, + "id": 22966, "properties": { "facing": "north", "half": "bottom", @@ -153550,7 +158207,7 @@ }, { "default": true, - "id": 21725, + "id": 22967, "properties": { "facing": "north", "half": "bottom", @@ -153559,7 +158216,7 @@ } }, { - "id": 21726, + "id": 22968, "properties": { "facing": "north", "half": "bottom", @@ -153568,7 +158225,7 @@ } }, { - "id": 21727, + "id": 22969, "properties": { "facing": "north", "half": "bottom", @@ -153577,7 +158234,7 @@ } }, { - "id": 21728, + "id": 22970, "properties": { "facing": "north", "half": "bottom", @@ -153586,7 +158243,7 @@ } }, { - "id": 21729, + "id": 22971, "properties": { "facing": "north", "half": "bottom", @@ -153595,7 +158252,7 @@ } }, { - "id": 21730, + "id": 22972, "properties": { "facing": "north", "half": "bottom", @@ -153604,7 +158261,7 @@ } }, { - "id": 21731, + "id": 22973, "properties": { "facing": "north", "half": "bottom", @@ -153613,7 +158270,7 @@ } }, { - "id": 21732, + "id": 22974, "properties": { "facing": "north", "half": "bottom", @@ -153622,7 +158279,7 @@ } }, { - "id": 21733, + "id": 22975, "properties": { "facing": "north", "half": "bottom", @@ -153631,7 +158288,7 @@ } }, { - "id": 21734, + "id": 22976, "properties": { "facing": "south", "half": "top", @@ -153640,7 +158297,7 @@ } }, { - "id": 21735, + "id": 22977, "properties": { "facing": "south", "half": "top", @@ -153649,7 +158306,7 @@ } }, { - "id": 21736, + "id": 22978, "properties": { "facing": "south", "half": "top", @@ -153658,7 +158315,7 @@ } }, { - "id": 21737, + "id": 22979, "properties": { "facing": "south", "half": "top", @@ -153667,7 +158324,7 @@ } }, { - "id": 21738, + "id": 22980, "properties": { "facing": "south", "half": "top", @@ -153676,7 +158333,7 @@ } }, { - "id": 21739, + "id": 22981, "properties": { "facing": "south", "half": "top", @@ -153685,7 +158342,7 @@ } }, { - "id": 21740, + "id": 22982, "properties": { "facing": "south", "half": "top", @@ -153694,7 +158351,7 @@ } }, { - "id": 21741, + "id": 22983, "properties": { "facing": "south", "half": "top", @@ -153703,7 +158360,7 @@ } }, { - "id": 21742, + "id": 22984, "properties": { "facing": "south", "half": "top", @@ -153712,7 +158369,7 @@ } }, { - "id": 21743, + "id": 22985, "properties": { "facing": "south", "half": "top", @@ -153721,7 +158378,7 @@ } }, { - "id": 21744, + "id": 22986, "properties": { "facing": "south", "half": "bottom", @@ -153730,7 +158387,7 @@ } }, { - "id": 21745, + "id": 22987, "properties": { "facing": "south", "half": "bottom", @@ -153739,7 +158396,7 @@ } }, { - "id": 21746, + "id": 22988, "properties": { "facing": "south", "half": "bottom", @@ -153748,7 +158405,7 @@ } }, { - "id": 21747, + "id": 22989, "properties": { "facing": "south", "half": "bottom", @@ -153757,7 +158414,7 @@ } }, { - "id": 21748, + "id": 22990, "properties": { "facing": "south", "half": "bottom", @@ -153766,7 +158423,7 @@ } }, { - "id": 21749, + "id": 22991, "properties": { "facing": "south", "half": "bottom", @@ -153775,7 +158432,7 @@ } }, { - "id": 21750, + "id": 22992, "properties": { "facing": "south", "half": "bottom", @@ -153784,7 +158441,7 @@ } }, { - "id": 21751, + "id": 22993, "properties": { "facing": "south", "half": "bottom", @@ -153793,7 +158450,7 @@ } }, { - "id": 21752, + "id": 22994, "properties": { "facing": "south", "half": "bottom", @@ -153802,7 +158459,7 @@ } }, { - "id": 21753, + "id": 22995, "properties": { "facing": "south", "half": "bottom", @@ -153811,7 +158468,7 @@ } }, { - "id": 21754, + "id": 22996, "properties": { "facing": "west", "half": "top", @@ -153820,7 +158477,7 @@ } }, { - "id": 21755, + "id": 22997, "properties": { "facing": "west", "half": "top", @@ -153829,7 +158486,7 @@ } }, { - "id": 21756, + "id": 22998, "properties": { "facing": "west", "half": "top", @@ -153838,7 +158495,7 @@ } }, { - "id": 21757, + "id": 22999, "properties": { "facing": "west", "half": "top", @@ -153847,7 +158504,7 @@ } }, { - "id": 21758, + "id": 23000, "properties": { "facing": "west", "half": "top", @@ -153856,7 +158513,7 @@ } }, { - "id": 21759, + "id": 23001, "properties": { "facing": "west", "half": "top", @@ -153865,7 +158522,7 @@ } }, { - "id": 21760, + "id": 23002, "properties": { "facing": "west", "half": "top", @@ -153874,7 +158531,7 @@ } }, { - "id": 21761, + "id": 23003, "properties": { "facing": "west", "half": "top", @@ -153883,7 +158540,7 @@ } }, { - "id": 21762, + "id": 23004, "properties": { "facing": "west", "half": "top", @@ -153892,7 +158549,7 @@ } }, { - "id": 21763, + "id": 23005, "properties": { "facing": "west", "half": "top", @@ -153901,7 +158558,7 @@ } }, { - "id": 21764, + "id": 23006, "properties": { "facing": "west", "half": "bottom", @@ -153910,7 +158567,7 @@ } }, { - "id": 21765, + "id": 23007, "properties": { "facing": "west", "half": "bottom", @@ -153919,7 +158576,7 @@ } }, { - "id": 21766, + "id": 23008, "properties": { "facing": "west", "half": "bottom", @@ -153928,7 +158585,7 @@ } }, { - "id": 21767, + "id": 23009, "properties": { "facing": "west", "half": "bottom", @@ -153937,7 +158594,7 @@ } }, { - "id": 21768, + "id": 23010, "properties": { "facing": "west", "half": "bottom", @@ -153946,7 +158603,7 @@ } }, { - "id": 21769, + "id": 23011, "properties": { "facing": "west", "half": "bottom", @@ -153955,7 +158612,7 @@ } }, { - "id": 21770, + "id": 23012, "properties": { "facing": "west", "half": "bottom", @@ -153964,7 +158621,7 @@ } }, { - "id": 21771, + "id": 23013, "properties": { "facing": "west", "half": "bottom", @@ -153973,7 +158630,7 @@ } }, { - "id": 21772, + "id": 23014, "properties": { "facing": "west", "half": "bottom", @@ -153982,7 +158639,7 @@ } }, { - "id": 21773, + "id": 23015, "properties": { "facing": "west", "half": "bottom", @@ -153991,7 +158648,7 @@ } }, { - "id": 21774, + "id": 23016, "properties": { "facing": "east", "half": "top", @@ -154000,7 +158657,7 @@ } }, { - "id": 21775, + "id": 23017, "properties": { "facing": "east", "half": "top", @@ -154009,7 +158666,7 @@ } }, { - "id": 21776, + "id": 23018, "properties": { "facing": "east", "half": "top", @@ -154018,7 +158675,7 @@ } }, { - "id": 21777, + "id": 23019, "properties": { "facing": "east", "half": "top", @@ -154027,7 +158684,7 @@ } }, { - "id": 21778, + "id": 23020, "properties": { "facing": "east", "half": "top", @@ -154036,7 +158693,7 @@ } }, { - "id": 21779, + "id": 23021, "properties": { "facing": "east", "half": "top", @@ -154045,7 +158702,7 @@ } }, { - "id": 21780, + "id": 23022, "properties": { "facing": "east", "half": "top", @@ -154054,7 +158711,7 @@ } }, { - "id": 21781, + "id": 23023, "properties": { "facing": "east", "half": "top", @@ -154063,7 +158720,7 @@ } }, { - "id": 21782, + "id": 23024, "properties": { "facing": "east", "half": "top", @@ -154072,7 +158729,7 @@ } }, { - "id": 21783, + "id": 23025, "properties": { "facing": "east", "half": "top", @@ -154081,7 +158738,7 @@ } }, { - "id": 21784, + "id": 23026, "properties": { "facing": "east", "half": "bottom", @@ -154090,7 +158747,7 @@ } }, { - "id": 21785, + "id": 23027, "properties": { "facing": "east", "half": "bottom", @@ -154099,7 +158756,7 @@ } }, { - "id": 21786, + "id": 23028, "properties": { "facing": "east", "half": "bottom", @@ -154108,7 +158765,7 @@ } }, { - "id": 21787, + "id": 23029, "properties": { "facing": "east", "half": "bottom", @@ -154117,7 +158774,7 @@ } }, { - "id": 21788, + "id": 23030, "properties": { "facing": "east", "half": "bottom", @@ -154126,7 +158783,7 @@ } }, { - "id": 21789, + "id": 23031, "properties": { "facing": "east", "half": "bottom", @@ -154135,7 +158792,7 @@ } }, { - "id": 21790, + "id": 23032, "properties": { "facing": "east", "half": "bottom", @@ -154144,7 +158801,7 @@ } }, { - "id": 21791, + "id": 23033, "properties": { "facing": "east", "half": "bottom", @@ -154153,7 +158810,7 @@ } }, { - "id": 21792, + "id": 23034, "properties": { "facing": "east", "half": "bottom", @@ -154162,7 +158819,7 @@ } }, { - "id": 21793, + "id": 23035, "properties": { "facing": "east", "half": "bottom", @@ -154184,7 +158841,7 @@ "states": [ { "default": true, - "id": 6542 + "id": 6541 } ] }, @@ -154198,20 +158855,20 @@ }, "states": [ { - "id": 24255, + "id": 26569, "properties": { "axis": "x" } }, { "default": true, - "id": 24256, + "id": 26570, "properties": { "axis": "y" } }, { - "id": 24257, + "id": 26571, "properties": { "axis": "z" } @@ -155146,112 +159803,112 @@ "states": [ { "default": true, - "id": 22513, + "id": 24827, "properties": { "facing": "north", "flower_amount": "1" } }, { - "id": 22514, + "id": 24828, "properties": { "facing": "north", "flower_amount": "2" } }, { - "id": 22515, + "id": 24829, "properties": { "facing": "north", "flower_amount": "3" } }, { - "id": 22516, + "id": 24830, "properties": { "facing": "north", "flower_amount": "4" } }, { - "id": 22517, + "id": 24831, "properties": { "facing": "south", "flower_amount": "1" } }, { - "id": 22518, + "id": 24832, "properties": { "facing": "south", "flower_amount": "2" } }, { - "id": 22519, + "id": 24833, "properties": { "facing": "south", "flower_amount": "3" } }, { - "id": 22520, + "id": 24834, "properties": { "facing": "south", "flower_amount": "4" } }, { - "id": 22521, + "id": 24835, "properties": { "facing": "west", "flower_amount": "1" } }, { - "id": 22522, + "id": 24836, "properties": { "facing": "west", "flower_amount": "2" } }, { - "id": 22523, + "id": 24837, "properties": { "facing": "west", "flower_amount": "3" } }, { - "id": 22524, + "id": 24838, "properties": { "facing": "west", "flower_amount": "4" } }, { - "id": 22525, + "id": 24839, "properties": { "facing": "east", "flower_amount": "1" } }, { - "id": 22526, + "id": 24840, "properties": { "facing": "east", "flower_amount": "2" } }, { - "id": 22527, + "id": 24841, "properties": { "facing": "east", "flower_amount": "3" } }, { - "id": 22528, + "id": 24842, "properties": { "facing": "east", "flower_amount": "4" @@ -155314,7 +159971,7 @@ "states": [ { "default": true, - "id": 5952 + "id": 5951 } ] }, @@ -156524,7 +161181,7 @@ }, "states": [ { - "id": 22434, + "id": 24748, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -156532,7 +161189,7 @@ } }, { - "id": 22435, + "id": 24749, "properties": { "thickness": "tip_merge", "vertical_direction": "up", @@ -156540,7 +161197,7 @@ } }, { - "id": 22436, + "id": 24750, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -156548,7 +161205,7 @@ } }, { - "id": 22437, + "id": 24751, "properties": { "thickness": "tip_merge", "vertical_direction": "down", @@ -156556,7 +161213,7 @@ } }, { - "id": 22438, + "id": 24752, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -156565,7 +161222,7 @@ }, { "default": true, - "id": 22439, + "id": 24753, "properties": { "thickness": "tip", "vertical_direction": "up", @@ -156573,7 +161230,7 @@ } }, { - "id": 22440, + "id": 24754, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -156581,7 +161238,7 @@ } }, { - "id": 22441, + "id": 24755, "properties": { "thickness": "tip", "vertical_direction": "down", @@ -156589,7 +161246,7 @@ } }, { - "id": 22442, + "id": 24756, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -156597,7 +161254,7 @@ } }, { - "id": 22443, + "id": 24757, "properties": { "thickness": "frustum", "vertical_direction": "up", @@ -156605,7 +161262,7 @@ } }, { - "id": 22444, + "id": 24758, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -156613,7 +161270,7 @@ } }, { - "id": 22445, + "id": 24759, "properties": { "thickness": "frustum", "vertical_direction": "down", @@ -156621,7 +161278,7 @@ } }, { - "id": 22446, + "id": 24760, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -156629,7 +161286,7 @@ } }, { - "id": 22447, + "id": 24761, "properties": { "thickness": "middle", "vertical_direction": "up", @@ -156637,7 +161294,7 @@ } }, { - "id": 22448, + "id": 24762, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -156645,7 +161302,7 @@ } }, { - "id": 22449, + "id": 24763, "properties": { "thickness": "middle", "vertical_direction": "down", @@ -156653,7 +161310,7 @@ } }, { - "id": 22450, + "id": 24764, "properties": { "thickness": "base", "vertical_direction": "up", @@ -156661,7 +161318,7 @@ } }, { - "id": 22451, + "id": 24765, "properties": { "thickness": "base", "vertical_direction": "up", @@ -156669,7 +161326,7 @@ } }, { - "id": 22452, + "id": 24766, "properties": { "thickness": "base", "vertical_direction": "down", @@ -156677,7 +161334,7 @@ } }, { - "id": 22453, + "id": 24767, "properties": { "thickness": "base", "vertical_direction": "down", @@ -157510,20 +162167,20 @@ }, "states": [ { - "id": 5856, + "id": 5855, "properties": { "axis": "x" } }, { "default": true, - "id": 5857, + "id": 5856, "properties": { "axis": "y" } }, { - "id": 5858, + "id": 5857, "properties": { "axis": "z" } @@ -166597,7 +171254,7 @@ "states": [ { "default": true, - "id": 23004 + "id": 25318 } ] }, @@ -166615,21 +171272,21 @@ }, "states": [ { - "id": 23085, + "id": 25399, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23086, + "id": 25400, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23087, + "id": 25401, "properties": { "type": "bottom", "waterlogged": "true" @@ -166637,21 +171294,21 @@ }, { "default": true, - "id": 23088, + "id": 25402, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23089, + "id": 25403, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23090, + "id": 25404, "properties": { "type": "double", "waterlogged": "false" @@ -166685,7 +171342,7 @@ }, "states": [ { - "id": 23005, + "id": 25319, "properties": { "facing": "north", "half": "top", @@ -166694,7 +171351,7 @@ } }, { - "id": 23006, + "id": 25320, "properties": { "facing": "north", "half": "top", @@ -166703,7 +171360,7 @@ } }, { - "id": 23007, + "id": 25321, "properties": { "facing": "north", "half": "top", @@ -166712,7 +171369,7 @@ } }, { - "id": 23008, + "id": 25322, "properties": { "facing": "north", "half": "top", @@ -166721,7 +171378,7 @@ } }, { - "id": 23009, + "id": 25323, "properties": { "facing": "north", "half": "top", @@ -166730,7 +171387,7 @@ } }, { - "id": 23010, + "id": 25324, "properties": { "facing": "north", "half": "top", @@ -166739,7 +171396,7 @@ } }, { - "id": 23011, + "id": 25325, "properties": { "facing": "north", "half": "top", @@ -166748,7 +171405,7 @@ } }, { - "id": 23012, + "id": 25326, "properties": { "facing": "north", "half": "top", @@ -166757,7 +171414,7 @@ } }, { - "id": 23013, + "id": 25327, "properties": { "facing": "north", "half": "top", @@ -166766,7 +171423,7 @@ } }, { - "id": 23014, + "id": 25328, "properties": { "facing": "north", "half": "top", @@ -166775,7 +171432,7 @@ } }, { - "id": 23015, + "id": 25329, "properties": { "facing": "north", "half": "bottom", @@ -166785,7 +171442,7 @@ }, { "default": true, - "id": 23016, + "id": 25330, "properties": { "facing": "north", "half": "bottom", @@ -166794,7 +171451,7 @@ } }, { - "id": 23017, + "id": 25331, "properties": { "facing": "north", "half": "bottom", @@ -166803,7 +171460,7 @@ } }, { - "id": 23018, + "id": 25332, "properties": { "facing": "north", "half": "bottom", @@ -166812,7 +171469,7 @@ } }, { - "id": 23019, + "id": 25333, "properties": { "facing": "north", "half": "bottom", @@ -166821,7 +171478,7 @@ } }, { - "id": 23020, + "id": 25334, "properties": { "facing": "north", "half": "bottom", @@ -166830,7 +171487,7 @@ } }, { - "id": 23021, + "id": 25335, "properties": { "facing": "north", "half": "bottom", @@ -166839,7 +171496,7 @@ } }, { - "id": 23022, + "id": 25336, "properties": { "facing": "north", "half": "bottom", @@ -166848,7 +171505,7 @@ } }, { - "id": 23023, + "id": 25337, "properties": { "facing": "north", "half": "bottom", @@ -166857,7 +171514,7 @@ } }, { - "id": 23024, + "id": 25338, "properties": { "facing": "north", "half": "bottom", @@ -166866,7 +171523,7 @@ } }, { - "id": 23025, + "id": 25339, "properties": { "facing": "south", "half": "top", @@ -166875,7 +171532,7 @@ } }, { - "id": 23026, + "id": 25340, "properties": { "facing": "south", "half": "top", @@ -166884,7 +171541,7 @@ } }, { - "id": 23027, + "id": 25341, "properties": { "facing": "south", "half": "top", @@ -166893,7 +171550,7 @@ } }, { - "id": 23028, + "id": 25342, "properties": { "facing": "south", "half": "top", @@ -166902,7 +171559,7 @@ } }, { - "id": 23029, + "id": 25343, "properties": { "facing": "south", "half": "top", @@ -166911,7 +171568,7 @@ } }, { - "id": 23030, + "id": 25344, "properties": { "facing": "south", "half": "top", @@ -166920,7 +171577,7 @@ } }, { - "id": 23031, + "id": 25345, "properties": { "facing": "south", "half": "top", @@ -166929,7 +171586,7 @@ } }, { - "id": 23032, + "id": 25346, "properties": { "facing": "south", "half": "top", @@ -166938,7 +171595,7 @@ } }, { - "id": 23033, + "id": 25347, "properties": { "facing": "south", "half": "top", @@ -166947,7 +171604,7 @@ } }, { - "id": 23034, + "id": 25348, "properties": { "facing": "south", "half": "top", @@ -166956,7 +171613,7 @@ } }, { - "id": 23035, + "id": 25349, "properties": { "facing": "south", "half": "bottom", @@ -166965,7 +171622,7 @@ } }, { - "id": 23036, + "id": 25350, "properties": { "facing": "south", "half": "bottom", @@ -166974,7 +171631,7 @@ } }, { - "id": 23037, + "id": 25351, "properties": { "facing": "south", "half": "bottom", @@ -166983,7 +171640,7 @@ } }, { - "id": 23038, + "id": 25352, "properties": { "facing": "south", "half": "bottom", @@ -166992,7 +171649,7 @@ } }, { - "id": 23039, + "id": 25353, "properties": { "facing": "south", "half": "bottom", @@ -167001,7 +171658,7 @@ } }, { - "id": 23040, + "id": 25354, "properties": { "facing": "south", "half": "bottom", @@ -167010,7 +171667,7 @@ } }, { - "id": 23041, + "id": 25355, "properties": { "facing": "south", "half": "bottom", @@ -167019,7 +171676,7 @@ } }, { - "id": 23042, + "id": 25356, "properties": { "facing": "south", "half": "bottom", @@ -167028,7 +171685,7 @@ } }, { - "id": 23043, + "id": 25357, "properties": { "facing": "south", "half": "bottom", @@ -167037,7 +171694,7 @@ } }, { - "id": 23044, + "id": 25358, "properties": { "facing": "south", "half": "bottom", @@ -167046,7 +171703,7 @@ } }, { - "id": 23045, + "id": 25359, "properties": { "facing": "west", "half": "top", @@ -167055,7 +171712,7 @@ } }, { - "id": 23046, + "id": 25360, "properties": { "facing": "west", "half": "top", @@ -167064,7 +171721,7 @@ } }, { - "id": 23047, + "id": 25361, "properties": { "facing": "west", "half": "top", @@ -167073,7 +171730,7 @@ } }, { - "id": 23048, + "id": 25362, "properties": { "facing": "west", "half": "top", @@ -167082,7 +171739,7 @@ } }, { - "id": 23049, + "id": 25363, "properties": { "facing": "west", "half": "top", @@ -167091,7 +171748,7 @@ } }, { - "id": 23050, + "id": 25364, "properties": { "facing": "west", "half": "top", @@ -167100,7 +171757,7 @@ } }, { - "id": 23051, + "id": 25365, "properties": { "facing": "west", "half": "top", @@ -167109,7 +171766,7 @@ } }, { - "id": 23052, + "id": 25366, "properties": { "facing": "west", "half": "top", @@ -167118,7 +171775,7 @@ } }, { - "id": 23053, + "id": 25367, "properties": { "facing": "west", "half": "top", @@ -167127,7 +171784,7 @@ } }, { - "id": 23054, + "id": 25368, "properties": { "facing": "west", "half": "top", @@ -167136,7 +171793,7 @@ } }, { - "id": 23055, + "id": 25369, "properties": { "facing": "west", "half": "bottom", @@ -167145,7 +171802,7 @@ } }, { - "id": 23056, + "id": 25370, "properties": { "facing": "west", "half": "bottom", @@ -167154,7 +171811,7 @@ } }, { - "id": 23057, + "id": 25371, "properties": { "facing": "west", "half": "bottom", @@ -167163,7 +171820,7 @@ } }, { - "id": 23058, + "id": 25372, "properties": { "facing": "west", "half": "bottom", @@ -167172,7 +171829,7 @@ } }, { - "id": 23059, + "id": 25373, "properties": { "facing": "west", "half": "bottom", @@ -167181,7 +171838,7 @@ } }, { - "id": 23060, + "id": 25374, "properties": { "facing": "west", "half": "bottom", @@ -167190,7 +171847,7 @@ } }, { - "id": 23061, + "id": 25375, "properties": { "facing": "west", "half": "bottom", @@ -167199,7 +171856,7 @@ } }, { - "id": 23062, + "id": 25376, "properties": { "facing": "west", "half": "bottom", @@ -167208,7 +171865,7 @@ } }, { - "id": 23063, + "id": 25377, "properties": { "facing": "west", "half": "bottom", @@ -167217,7 +171874,7 @@ } }, { - "id": 23064, + "id": 25378, "properties": { "facing": "west", "half": "bottom", @@ -167226,7 +171883,7 @@ } }, { - "id": 23065, + "id": 25379, "properties": { "facing": "east", "half": "top", @@ -167235,7 +171892,7 @@ } }, { - "id": 23066, + "id": 25380, "properties": { "facing": "east", "half": "top", @@ -167244,7 +171901,7 @@ } }, { - "id": 23067, + "id": 25381, "properties": { "facing": "east", "half": "top", @@ -167253,7 +171910,7 @@ } }, { - "id": 23068, + "id": 25382, "properties": { "facing": "east", "half": "top", @@ -167262,7 +171919,7 @@ } }, { - "id": 23069, + "id": 25383, "properties": { "facing": "east", "half": "top", @@ -167271,7 +171928,7 @@ } }, { - "id": 23070, + "id": 25384, "properties": { "facing": "east", "half": "top", @@ -167280,7 +171937,7 @@ } }, { - "id": 23071, + "id": 25385, "properties": { "facing": "east", "half": "top", @@ -167289,7 +171946,7 @@ } }, { - "id": 23072, + "id": 25386, "properties": { "facing": "east", "half": "top", @@ -167298,7 +171955,7 @@ } }, { - "id": 23073, + "id": 25387, "properties": { "facing": "east", "half": "top", @@ -167307,7 +171964,7 @@ } }, { - "id": 23074, + "id": 25388, "properties": { "facing": "east", "half": "top", @@ -167316,7 +171973,7 @@ } }, { - "id": 23075, + "id": 25389, "properties": { "facing": "east", "half": "bottom", @@ -167325,7 +171982,7 @@ } }, { - "id": 23076, + "id": 25390, "properties": { "facing": "east", "half": "bottom", @@ -167334,7 +171991,7 @@ } }, { - "id": 23077, + "id": 25391, "properties": { "facing": "east", "half": "bottom", @@ -167343,7 +172000,7 @@ } }, { - "id": 23078, + "id": 25392, "properties": { "facing": "east", "half": "bottom", @@ -167352,7 +172009,7 @@ } }, { - "id": 23079, + "id": 25393, "properties": { "facing": "east", "half": "bottom", @@ -167361,7 +172018,7 @@ } }, { - "id": 23080, + "id": 25394, "properties": { "facing": "east", "half": "bottom", @@ -167370,7 +172027,7 @@ } }, { - "id": 23081, + "id": 25395, "properties": { "facing": "east", "half": "bottom", @@ -167379,7 +172036,7 @@ } }, { - "id": 23082, + "id": 25396, "properties": { "facing": "east", "half": "bottom", @@ -167388,7 +172045,7 @@ } }, { - "id": 23083, + "id": 25397, "properties": { "facing": "east", "half": "bottom", @@ -167397,7 +172054,7 @@ } }, { - "id": 23084, + "id": 25398, "properties": { "facing": "east", "half": "bottom", @@ -167440,7 +172097,7 @@ }, "states": [ { - "id": 23091, + "id": 25405, "properties": { "east": "none", "north": "none", @@ -167451,7 +172108,7 @@ } }, { - "id": 23092, + "id": 25406, "properties": { "east": "none", "north": "none", @@ -167462,7 +172119,7 @@ } }, { - "id": 23093, + "id": 25407, "properties": { "east": "none", "north": "none", @@ -167474,7 +172131,7 @@ }, { "default": true, - "id": 23094, + "id": 25408, "properties": { "east": "none", "north": "none", @@ -167485,7 +172142,7 @@ } }, { - "id": 23095, + "id": 25409, "properties": { "east": "none", "north": "none", @@ -167496,7 +172153,7 @@ } }, { - "id": 23096, + "id": 25410, "properties": { "east": "none", "north": "none", @@ -167507,7 +172164,7 @@ } }, { - "id": 23097, + "id": 25411, "properties": { "east": "none", "north": "none", @@ -167518,7 +172175,7 @@ } }, { - "id": 23098, + "id": 25412, "properties": { "east": "none", "north": "none", @@ -167529,7 +172186,7 @@ } }, { - "id": 23099, + "id": 25413, "properties": { "east": "none", "north": "none", @@ -167540,7 +172197,7 @@ } }, { - "id": 23100, + "id": 25414, "properties": { "east": "none", "north": "none", @@ -167551,7 +172208,7 @@ } }, { - "id": 23101, + "id": 25415, "properties": { "east": "none", "north": "none", @@ -167562,7 +172219,7 @@ } }, { - "id": 23102, + "id": 25416, "properties": { "east": "none", "north": "none", @@ -167573,7 +172230,7 @@ } }, { - "id": 23103, + "id": 25417, "properties": { "east": "none", "north": "none", @@ -167584,7 +172241,7 @@ } }, { - "id": 23104, + "id": 25418, "properties": { "east": "none", "north": "none", @@ -167595,7 +172252,7 @@ } }, { - "id": 23105, + "id": 25419, "properties": { "east": "none", "north": "none", @@ -167606,7 +172263,7 @@ } }, { - "id": 23106, + "id": 25420, "properties": { "east": "none", "north": "none", @@ -167617,7 +172274,7 @@ } }, { - "id": 23107, + "id": 25421, "properties": { "east": "none", "north": "none", @@ -167628,7 +172285,7 @@ } }, { - "id": 23108, + "id": 25422, "properties": { "east": "none", "north": "none", @@ -167639,7 +172296,7 @@ } }, { - "id": 23109, + "id": 25423, "properties": { "east": "none", "north": "none", @@ -167650,7 +172307,7 @@ } }, { - "id": 23110, + "id": 25424, "properties": { "east": "none", "north": "none", @@ -167661,7 +172318,7 @@ } }, { - "id": 23111, + "id": 25425, "properties": { "east": "none", "north": "none", @@ -167672,7 +172329,7 @@ } }, { - "id": 23112, + "id": 25426, "properties": { "east": "none", "north": "none", @@ -167683,7 +172340,7 @@ } }, { - "id": 23113, + "id": 25427, "properties": { "east": "none", "north": "none", @@ -167694,7 +172351,7 @@ } }, { - "id": 23114, + "id": 25428, "properties": { "east": "none", "north": "none", @@ -167705,7 +172362,7 @@ } }, { - "id": 23115, + "id": 25429, "properties": { "east": "none", "north": "none", @@ -167716,7 +172373,7 @@ } }, { - "id": 23116, + "id": 25430, "properties": { "east": "none", "north": "none", @@ -167727,7 +172384,7 @@ } }, { - "id": 23117, + "id": 25431, "properties": { "east": "none", "north": "none", @@ -167738,7 +172395,7 @@ } }, { - "id": 23118, + "id": 25432, "properties": { "east": "none", "north": "none", @@ -167749,7 +172406,7 @@ } }, { - "id": 23119, + "id": 25433, "properties": { "east": "none", "north": "none", @@ -167760,7 +172417,7 @@ } }, { - "id": 23120, + "id": 25434, "properties": { "east": "none", "north": "none", @@ -167771,7 +172428,7 @@ } }, { - "id": 23121, + "id": 25435, "properties": { "east": "none", "north": "none", @@ -167782,7 +172439,7 @@ } }, { - "id": 23122, + "id": 25436, "properties": { "east": "none", "north": "none", @@ -167793,7 +172450,7 @@ } }, { - "id": 23123, + "id": 25437, "properties": { "east": "none", "north": "none", @@ -167804,7 +172461,7 @@ } }, { - "id": 23124, + "id": 25438, "properties": { "east": "none", "north": "none", @@ -167815,7 +172472,7 @@ } }, { - "id": 23125, + "id": 25439, "properties": { "east": "none", "north": "none", @@ -167826,7 +172483,7 @@ } }, { - "id": 23126, + "id": 25440, "properties": { "east": "none", "north": "none", @@ -167837,7 +172494,7 @@ } }, { - "id": 23127, + "id": 25441, "properties": { "east": "none", "north": "low", @@ -167848,7 +172505,7 @@ } }, { - "id": 23128, + "id": 25442, "properties": { "east": "none", "north": "low", @@ -167859,7 +172516,7 @@ } }, { - "id": 23129, + "id": 25443, "properties": { "east": "none", "north": "low", @@ -167870,7 +172527,7 @@ } }, { - "id": 23130, + "id": 25444, "properties": { "east": "none", "north": "low", @@ -167881,7 +172538,7 @@ } }, { - "id": 23131, + "id": 25445, "properties": { "east": "none", "north": "low", @@ -167892,7 +172549,7 @@ } }, { - "id": 23132, + "id": 25446, "properties": { "east": "none", "north": "low", @@ -167903,7 +172560,7 @@ } }, { - "id": 23133, + "id": 25447, "properties": { "east": "none", "north": "low", @@ -167914,7 +172571,7 @@ } }, { - "id": 23134, + "id": 25448, "properties": { "east": "none", "north": "low", @@ -167925,7 +172582,7 @@ } }, { - "id": 23135, + "id": 25449, "properties": { "east": "none", "north": "low", @@ -167936,7 +172593,7 @@ } }, { - "id": 23136, + "id": 25450, "properties": { "east": "none", "north": "low", @@ -167947,7 +172604,7 @@ } }, { - "id": 23137, + "id": 25451, "properties": { "east": "none", "north": "low", @@ -167958,7 +172615,7 @@ } }, { - "id": 23138, + "id": 25452, "properties": { "east": "none", "north": "low", @@ -167969,7 +172626,7 @@ } }, { - "id": 23139, + "id": 25453, "properties": { "east": "none", "north": "low", @@ -167980,7 +172637,7 @@ } }, { - "id": 23140, + "id": 25454, "properties": { "east": "none", "north": "low", @@ -167991,7 +172648,7 @@ } }, { - "id": 23141, + "id": 25455, "properties": { "east": "none", "north": "low", @@ -168002,7 +172659,7 @@ } }, { - "id": 23142, + "id": 25456, "properties": { "east": "none", "north": "low", @@ -168013,7 +172670,7 @@ } }, { - "id": 23143, + "id": 25457, "properties": { "east": "none", "north": "low", @@ -168024,7 +172681,7 @@ } }, { - "id": 23144, + "id": 25458, "properties": { "east": "none", "north": "low", @@ -168035,7 +172692,7 @@ } }, { - "id": 23145, + "id": 25459, "properties": { "east": "none", "north": "low", @@ -168046,7 +172703,7 @@ } }, { - "id": 23146, + "id": 25460, "properties": { "east": "none", "north": "low", @@ -168057,7 +172714,7 @@ } }, { - "id": 23147, + "id": 25461, "properties": { "east": "none", "north": "low", @@ -168068,7 +172725,7 @@ } }, { - "id": 23148, + "id": 25462, "properties": { "east": "none", "north": "low", @@ -168079,7 +172736,7 @@ } }, { - "id": 23149, + "id": 25463, "properties": { "east": "none", "north": "low", @@ -168090,7 +172747,7 @@ } }, { - "id": 23150, + "id": 25464, "properties": { "east": "none", "north": "low", @@ -168101,7 +172758,7 @@ } }, { - "id": 23151, + "id": 25465, "properties": { "east": "none", "north": "low", @@ -168112,7 +172769,7 @@ } }, { - "id": 23152, + "id": 25466, "properties": { "east": "none", "north": "low", @@ -168123,7 +172780,7 @@ } }, { - "id": 23153, + "id": 25467, "properties": { "east": "none", "north": "low", @@ -168134,7 +172791,7 @@ } }, { - "id": 23154, + "id": 25468, "properties": { "east": "none", "north": "low", @@ -168145,7 +172802,7 @@ } }, { - "id": 23155, + "id": 25469, "properties": { "east": "none", "north": "low", @@ -168156,7 +172813,7 @@ } }, { - "id": 23156, + "id": 25470, "properties": { "east": "none", "north": "low", @@ -168167,7 +172824,7 @@ } }, { - "id": 23157, + "id": 25471, "properties": { "east": "none", "north": "low", @@ -168178,7 +172835,7 @@ } }, { - "id": 23158, + "id": 25472, "properties": { "east": "none", "north": "low", @@ -168189,7 +172846,7 @@ } }, { - "id": 23159, + "id": 25473, "properties": { "east": "none", "north": "low", @@ -168200,7 +172857,7 @@ } }, { - "id": 23160, + "id": 25474, "properties": { "east": "none", "north": "low", @@ -168211,7 +172868,7 @@ } }, { - "id": 23161, + "id": 25475, "properties": { "east": "none", "north": "low", @@ -168222,7 +172879,7 @@ } }, { - "id": 23162, + "id": 25476, "properties": { "east": "none", "north": "low", @@ -168233,7 +172890,7 @@ } }, { - "id": 23163, + "id": 25477, "properties": { "east": "none", "north": "tall", @@ -168244,7 +172901,7 @@ } }, { - "id": 23164, + "id": 25478, "properties": { "east": "none", "north": "tall", @@ -168255,7 +172912,7 @@ } }, { - "id": 23165, + "id": 25479, "properties": { "east": "none", "north": "tall", @@ -168266,7 +172923,7 @@ } }, { - "id": 23166, + "id": 25480, "properties": { "east": "none", "north": "tall", @@ -168277,7 +172934,7 @@ } }, { - "id": 23167, + "id": 25481, "properties": { "east": "none", "north": "tall", @@ -168288,7 +172945,7 @@ } }, { - "id": 23168, + "id": 25482, "properties": { "east": "none", "north": "tall", @@ -168299,7 +172956,7 @@ } }, { - "id": 23169, + "id": 25483, "properties": { "east": "none", "north": "tall", @@ -168310,7 +172967,7 @@ } }, { - "id": 23170, + "id": 25484, "properties": { "east": "none", "north": "tall", @@ -168321,7 +172978,7 @@ } }, { - "id": 23171, + "id": 25485, "properties": { "east": "none", "north": "tall", @@ -168332,7 +172989,7 @@ } }, { - "id": 23172, + "id": 25486, "properties": { "east": "none", "north": "tall", @@ -168343,7 +173000,7 @@ } }, { - "id": 23173, + "id": 25487, "properties": { "east": "none", "north": "tall", @@ -168354,7 +173011,7 @@ } }, { - "id": 23174, + "id": 25488, "properties": { "east": "none", "north": "tall", @@ -168365,7 +173022,7 @@ } }, { - "id": 23175, + "id": 25489, "properties": { "east": "none", "north": "tall", @@ -168376,7 +173033,7 @@ } }, { - "id": 23176, + "id": 25490, "properties": { "east": "none", "north": "tall", @@ -168387,7 +173044,7 @@ } }, { - "id": 23177, + "id": 25491, "properties": { "east": "none", "north": "tall", @@ -168398,7 +173055,7 @@ } }, { - "id": 23178, + "id": 25492, "properties": { "east": "none", "north": "tall", @@ -168409,7 +173066,7 @@ } }, { - "id": 23179, + "id": 25493, "properties": { "east": "none", "north": "tall", @@ -168420,7 +173077,7 @@ } }, { - "id": 23180, + "id": 25494, "properties": { "east": "none", "north": "tall", @@ -168431,7 +173088,7 @@ } }, { - "id": 23181, + "id": 25495, "properties": { "east": "none", "north": "tall", @@ -168442,7 +173099,7 @@ } }, { - "id": 23182, + "id": 25496, "properties": { "east": "none", "north": "tall", @@ -168453,7 +173110,7 @@ } }, { - "id": 23183, + "id": 25497, "properties": { "east": "none", "north": "tall", @@ -168464,7 +173121,7 @@ } }, { - "id": 23184, + "id": 25498, "properties": { "east": "none", "north": "tall", @@ -168475,7 +173132,7 @@ } }, { - "id": 23185, + "id": 25499, "properties": { "east": "none", "north": "tall", @@ -168486,7 +173143,7 @@ } }, { - "id": 23186, + "id": 25500, "properties": { "east": "none", "north": "tall", @@ -168497,7 +173154,7 @@ } }, { - "id": 23187, + "id": 25501, "properties": { "east": "none", "north": "tall", @@ -168508,7 +173165,7 @@ } }, { - "id": 23188, + "id": 25502, "properties": { "east": "none", "north": "tall", @@ -168519,7 +173176,7 @@ } }, { - "id": 23189, + "id": 25503, "properties": { "east": "none", "north": "tall", @@ -168530,7 +173187,7 @@ } }, { - "id": 23190, + "id": 25504, "properties": { "east": "none", "north": "tall", @@ -168541,7 +173198,7 @@ } }, { - "id": 23191, + "id": 25505, "properties": { "east": "none", "north": "tall", @@ -168552,7 +173209,7 @@ } }, { - "id": 23192, + "id": 25506, "properties": { "east": "none", "north": "tall", @@ -168563,7 +173220,7 @@ } }, { - "id": 23193, + "id": 25507, "properties": { "east": "none", "north": "tall", @@ -168574,7 +173231,7 @@ } }, { - "id": 23194, + "id": 25508, "properties": { "east": "none", "north": "tall", @@ -168585,7 +173242,7 @@ } }, { - "id": 23195, + "id": 25509, "properties": { "east": "none", "north": "tall", @@ -168596,7 +173253,7 @@ } }, { - "id": 23196, + "id": 25510, "properties": { "east": "none", "north": "tall", @@ -168607,7 +173264,7 @@ } }, { - "id": 23197, + "id": 25511, "properties": { "east": "none", "north": "tall", @@ -168618,7 +173275,7 @@ } }, { - "id": 23198, + "id": 25512, "properties": { "east": "none", "north": "tall", @@ -168629,7 +173286,7 @@ } }, { - "id": 23199, + "id": 25513, "properties": { "east": "low", "north": "none", @@ -168640,7 +173297,7 @@ } }, { - "id": 23200, + "id": 25514, "properties": { "east": "low", "north": "none", @@ -168651,7 +173308,7 @@ } }, { - "id": 23201, + "id": 25515, "properties": { "east": "low", "north": "none", @@ -168662,7 +173319,7 @@ } }, { - "id": 23202, + "id": 25516, "properties": { "east": "low", "north": "none", @@ -168673,7 +173330,7 @@ } }, { - "id": 23203, + "id": 25517, "properties": { "east": "low", "north": "none", @@ -168684,7 +173341,7 @@ } }, { - "id": 23204, + "id": 25518, "properties": { "east": "low", "north": "none", @@ -168695,7 +173352,7 @@ } }, { - "id": 23205, + "id": 25519, "properties": { "east": "low", "north": "none", @@ -168706,7 +173363,7 @@ } }, { - "id": 23206, + "id": 25520, "properties": { "east": "low", "north": "none", @@ -168717,7 +173374,7 @@ } }, { - "id": 23207, + "id": 25521, "properties": { "east": "low", "north": "none", @@ -168728,7 +173385,7 @@ } }, { - "id": 23208, + "id": 25522, "properties": { "east": "low", "north": "none", @@ -168739,7 +173396,7 @@ } }, { - "id": 23209, + "id": 25523, "properties": { "east": "low", "north": "none", @@ -168750,7 +173407,7 @@ } }, { - "id": 23210, + "id": 25524, "properties": { "east": "low", "north": "none", @@ -168761,7 +173418,7 @@ } }, { - "id": 23211, + "id": 25525, "properties": { "east": "low", "north": "none", @@ -168772,7 +173429,7 @@ } }, { - "id": 23212, + "id": 25526, "properties": { "east": "low", "north": "none", @@ -168783,7 +173440,7 @@ } }, { - "id": 23213, + "id": 25527, "properties": { "east": "low", "north": "none", @@ -168794,7 +173451,7 @@ } }, { - "id": 23214, + "id": 25528, "properties": { "east": "low", "north": "none", @@ -168805,7 +173462,7 @@ } }, { - "id": 23215, + "id": 25529, "properties": { "east": "low", "north": "none", @@ -168816,7 +173473,7 @@ } }, { - "id": 23216, + "id": 25530, "properties": { "east": "low", "north": "none", @@ -168827,7 +173484,7 @@ } }, { - "id": 23217, + "id": 25531, "properties": { "east": "low", "north": "none", @@ -168838,7 +173495,7 @@ } }, { - "id": 23218, + "id": 25532, "properties": { "east": "low", "north": "none", @@ -168849,7 +173506,7 @@ } }, { - "id": 23219, + "id": 25533, "properties": { "east": "low", "north": "none", @@ -168860,7 +173517,7 @@ } }, { - "id": 23220, + "id": 25534, "properties": { "east": "low", "north": "none", @@ -168871,7 +173528,7 @@ } }, { - "id": 23221, + "id": 25535, "properties": { "east": "low", "north": "none", @@ -168882,7 +173539,7 @@ } }, { - "id": 23222, + "id": 25536, "properties": { "east": "low", "north": "none", @@ -168893,7 +173550,7 @@ } }, { - "id": 23223, + "id": 25537, "properties": { "east": "low", "north": "none", @@ -168904,7 +173561,7 @@ } }, { - "id": 23224, + "id": 25538, "properties": { "east": "low", "north": "none", @@ -168915,7 +173572,7 @@ } }, { - "id": 23225, + "id": 25539, "properties": { "east": "low", "north": "none", @@ -168926,7 +173583,7 @@ } }, { - "id": 23226, + "id": 25540, "properties": { "east": "low", "north": "none", @@ -168937,7 +173594,7 @@ } }, { - "id": 23227, + "id": 25541, "properties": { "east": "low", "north": "none", @@ -168948,7 +173605,7 @@ } }, { - "id": 23228, + "id": 25542, "properties": { "east": "low", "north": "none", @@ -168959,7 +173616,7 @@ } }, { - "id": 23229, + "id": 25543, "properties": { "east": "low", "north": "none", @@ -168970,7 +173627,7 @@ } }, { - "id": 23230, + "id": 25544, "properties": { "east": "low", "north": "none", @@ -168981,7 +173638,7 @@ } }, { - "id": 23231, + "id": 25545, "properties": { "east": "low", "north": "none", @@ -168992,7 +173649,7 @@ } }, { - "id": 23232, + "id": 25546, "properties": { "east": "low", "north": "none", @@ -169003,7 +173660,7 @@ } }, { - "id": 23233, + "id": 25547, "properties": { "east": "low", "north": "none", @@ -169014,7 +173671,7 @@ } }, { - "id": 23234, + "id": 25548, "properties": { "east": "low", "north": "none", @@ -169025,7 +173682,7 @@ } }, { - "id": 23235, + "id": 25549, "properties": { "east": "low", "north": "low", @@ -169036,7 +173693,7 @@ } }, { - "id": 23236, + "id": 25550, "properties": { "east": "low", "north": "low", @@ -169047,7 +173704,7 @@ } }, { - "id": 23237, + "id": 25551, "properties": { "east": "low", "north": "low", @@ -169058,7 +173715,7 @@ } }, { - "id": 23238, + "id": 25552, "properties": { "east": "low", "north": "low", @@ -169069,7 +173726,7 @@ } }, { - "id": 23239, + "id": 25553, "properties": { "east": "low", "north": "low", @@ -169080,7 +173737,7 @@ } }, { - "id": 23240, + "id": 25554, "properties": { "east": "low", "north": "low", @@ -169091,7 +173748,7 @@ } }, { - "id": 23241, + "id": 25555, "properties": { "east": "low", "north": "low", @@ -169102,7 +173759,7 @@ } }, { - "id": 23242, + "id": 25556, "properties": { "east": "low", "north": "low", @@ -169113,7 +173770,7 @@ } }, { - "id": 23243, + "id": 25557, "properties": { "east": "low", "north": "low", @@ -169124,7 +173781,7 @@ } }, { - "id": 23244, + "id": 25558, "properties": { "east": "low", "north": "low", @@ -169135,7 +173792,7 @@ } }, { - "id": 23245, + "id": 25559, "properties": { "east": "low", "north": "low", @@ -169146,7 +173803,7 @@ } }, { - "id": 23246, + "id": 25560, "properties": { "east": "low", "north": "low", @@ -169157,7 +173814,7 @@ } }, { - "id": 23247, + "id": 25561, "properties": { "east": "low", "north": "low", @@ -169168,7 +173825,7 @@ } }, { - "id": 23248, + "id": 25562, "properties": { "east": "low", "north": "low", @@ -169179,7 +173836,7 @@ } }, { - "id": 23249, + "id": 25563, "properties": { "east": "low", "north": "low", @@ -169190,7 +173847,7 @@ } }, { - "id": 23250, + "id": 25564, "properties": { "east": "low", "north": "low", @@ -169201,7 +173858,7 @@ } }, { - "id": 23251, + "id": 25565, "properties": { "east": "low", "north": "low", @@ -169212,7 +173869,7 @@ } }, { - "id": 23252, + "id": 25566, "properties": { "east": "low", "north": "low", @@ -169223,7 +173880,7 @@ } }, { - "id": 23253, + "id": 25567, "properties": { "east": "low", "north": "low", @@ -169234,7 +173891,7 @@ } }, { - "id": 23254, + "id": 25568, "properties": { "east": "low", "north": "low", @@ -169245,7 +173902,7 @@ } }, { - "id": 23255, + "id": 25569, "properties": { "east": "low", "north": "low", @@ -169256,7 +173913,7 @@ } }, { - "id": 23256, + "id": 25570, "properties": { "east": "low", "north": "low", @@ -169267,7 +173924,7 @@ } }, { - "id": 23257, + "id": 25571, "properties": { "east": "low", "north": "low", @@ -169278,7 +173935,7 @@ } }, { - "id": 23258, + "id": 25572, "properties": { "east": "low", "north": "low", @@ -169289,7 +173946,7 @@ } }, { - "id": 23259, + "id": 25573, "properties": { "east": "low", "north": "low", @@ -169300,7 +173957,7 @@ } }, { - "id": 23260, + "id": 25574, "properties": { "east": "low", "north": "low", @@ -169311,7 +173968,7 @@ } }, { - "id": 23261, + "id": 25575, "properties": { "east": "low", "north": "low", @@ -169322,7 +173979,7 @@ } }, { - "id": 23262, + "id": 25576, "properties": { "east": "low", "north": "low", @@ -169333,7 +173990,7 @@ } }, { - "id": 23263, + "id": 25577, "properties": { "east": "low", "north": "low", @@ -169344,7 +174001,7 @@ } }, { - "id": 23264, + "id": 25578, "properties": { "east": "low", "north": "low", @@ -169355,7 +174012,7 @@ } }, { - "id": 23265, + "id": 25579, "properties": { "east": "low", "north": "low", @@ -169366,7 +174023,7 @@ } }, { - "id": 23266, + "id": 25580, "properties": { "east": "low", "north": "low", @@ -169377,7 +174034,7 @@ } }, { - "id": 23267, + "id": 25581, "properties": { "east": "low", "north": "low", @@ -169388,7 +174045,7 @@ } }, { - "id": 23268, + "id": 25582, "properties": { "east": "low", "north": "low", @@ -169399,7 +174056,7 @@ } }, { - "id": 23269, + "id": 25583, "properties": { "east": "low", "north": "low", @@ -169410,7 +174067,7 @@ } }, { - "id": 23270, + "id": 25584, "properties": { "east": "low", "north": "low", @@ -169421,7 +174078,7 @@ } }, { - "id": 23271, + "id": 25585, "properties": { "east": "low", "north": "tall", @@ -169432,7 +174089,7 @@ } }, { - "id": 23272, + "id": 25586, "properties": { "east": "low", "north": "tall", @@ -169443,7 +174100,7 @@ } }, { - "id": 23273, + "id": 25587, "properties": { "east": "low", "north": "tall", @@ -169454,7 +174111,7 @@ } }, { - "id": 23274, + "id": 25588, "properties": { "east": "low", "north": "tall", @@ -169465,7 +174122,7 @@ } }, { - "id": 23275, + "id": 25589, "properties": { "east": "low", "north": "tall", @@ -169476,7 +174133,7 @@ } }, { - "id": 23276, + "id": 25590, "properties": { "east": "low", "north": "tall", @@ -169487,7 +174144,7 @@ } }, { - "id": 23277, + "id": 25591, "properties": { "east": "low", "north": "tall", @@ -169498,7 +174155,7 @@ } }, { - "id": 23278, + "id": 25592, "properties": { "east": "low", "north": "tall", @@ -169509,7 +174166,7 @@ } }, { - "id": 23279, + "id": 25593, "properties": { "east": "low", "north": "tall", @@ -169520,7 +174177,7 @@ } }, { - "id": 23280, + "id": 25594, "properties": { "east": "low", "north": "tall", @@ -169531,7 +174188,7 @@ } }, { - "id": 23281, + "id": 25595, "properties": { "east": "low", "north": "tall", @@ -169542,7 +174199,7 @@ } }, { - "id": 23282, + "id": 25596, "properties": { "east": "low", "north": "tall", @@ -169553,7 +174210,7 @@ } }, { - "id": 23283, + "id": 25597, "properties": { "east": "low", "north": "tall", @@ -169564,7 +174221,7 @@ } }, { - "id": 23284, + "id": 25598, "properties": { "east": "low", "north": "tall", @@ -169575,7 +174232,7 @@ } }, { - "id": 23285, + "id": 25599, "properties": { "east": "low", "north": "tall", @@ -169586,7 +174243,7 @@ } }, { - "id": 23286, + "id": 25600, "properties": { "east": "low", "north": "tall", @@ -169597,7 +174254,7 @@ } }, { - "id": 23287, + "id": 25601, "properties": { "east": "low", "north": "tall", @@ -169608,7 +174265,7 @@ } }, { - "id": 23288, + "id": 25602, "properties": { "east": "low", "north": "tall", @@ -169619,7 +174276,7 @@ } }, { - "id": 23289, + "id": 25603, "properties": { "east": "low", "north": "tall", @@ -169630,7 +174287,7 @@ } }, { - "id": 23290, + "id": 25604, "properties": { "east": "low", "north": "tall", @@ -169641,7 +174298,7 @@ } }, { - "id": 23291, + "id": 25605, "properties": { "east": "low", "north": "tall", @@ -169652,7 +174309,7 @@ } }, { - "id": 23292, + "id": 25606, "properties": { "east": "low", "north": "tall", @@ -169663,7 +174320,7 @@ } }, { - "id": 23293, + "id": 25607, "properties": { "east": "low", "north": "tall", @@ -169674,7 +174331,7 @@ } }, { - "id": 23294, + "id": 25608, "properties": { "east": "low", "north": "tall", @@ -169685,7 +174342,7 @@ } }, { - "id": 23295, + "id": 25609, "properties": { "east": "low", "north": "tall", @@ -169696,7 +174353,7 @@ } }, { - "id": 23296, + "id": 25610, "properties": { "east": "low", "north": "tall", @@ -169707,7 +174364,7 @@ } }, { - "id": 23297, + "id": 25611, "properties": { "east": "low", "north": "tall", @@ -169718,7 +174375,7 @@ } }, { - "id": 23298, + "id": 25612, "properties": { "east": "low", "north": "tall", @@ -169729,7 +174386,7 @@ } }, { - "id": 23299, + "id": 25613, "properties": { "east": "low", "north": "tall", @@ -169740,7 +174397,7 @@ } }, { - "id": 23300, + "id": 25614, "properties": { "east": "low", "north": "tall", @@ -169751,7 +174408,7 @@ } }, { - "id": 23301, + "id": 25615, "properties": { "east": "low", "north": "tall", @@ -169762,7 +174419,7 @@ } }, { - "id": 23302, + "id": 25616, "properties": { "east": "low", "north": "tall", @@ -169773,7 +174430,7 @@ } }, { - "id": 23303, + "id": 25617, "properties": { "east": "low", "north": "tall", @@ -169784,7 +174441,7 @@ } }, { - "id": 23304, + "id": 25618, "properties": { "east": "low", "north": "tall", @@ -169795,7 +174452,7 @@ } }, { - "id": 23305, + "id": 25619, "properties": { "east": "low", "north": "tall", @@ -169806,7 +174463,7 @@ } }, { - "id": 23306, + "id": 25620, "properties": { "east": "low", "north": "tall", @@ -169817,7 +174474,7 @@ } }, { - "id": 23307, + "id": 25621, "properties": { "east": "tall", "north": "none", @@ -169828,7 +174485,7 @@ } }, { - "id": 23308, + "id": 25622, "properties": { "east": "tall", "north": "none", @@ -169839,7 +174496,7 @@ } }, { - "id": 23309, + "id": 25623, "properties": { "east": "tall", "north": "none", @@ -169850,7 +174507,7 @@ } }, { - "id": 23310, + "id": 25624, "properties": { "east": "tall", "north": "none", @@ -169861,7 +174518,7 @@ } }, { - "id": 23311, + "id": 25625, "properties": { "east": "tall", "north": "none", @@ -169872,7 +174529,7 @@ } }, { - "id": 23312, + "id": 25626, "properties": { "east": "tall", "north": "none", @@ -169883,7 +174540,7 @@ } }, { - "id": 23313, + "id": 25627, "properties": { "east": "tall", "north": "none", @@ -169894,7 +174551,7 @@ } }, { - "id": 23314, + "id": 25628, "properties": { "east": "tall", "north": "none", @@ -169905,7 +174562,7 @@ } }, { - "id": 23315, + "id": 25629, "properties": { "east": "tall", "north": "none", @@ -169916,7 +174573,7 @@ } }, { - "id": 23316, + "id": 25630, "properties": { "east": "tall", "north": "none", @@ -169927,7 +174584,7 @@ } }, { - "id": 23317, + "id": 25631, "properties": { "east": "tall", "north": "none", @@ -169938,7 +174595,7 @@ } }, { - "id": 23318, + "id": 25632, "properties": { "east": "tall", "north": "none", @@ -169949,7 +174606,7 @@ } }, { - "id": 23319, + "id": 25633, "properties": { "east": "tall", "north": "none", @@ -169960,7 +174617,7 @@ } }, { - "id": 23320, + "id": 25634, "properties": { "east": "tall", "north": "none", @@ -169971,7 +174628,7 @@ } }, { - "id": 23321, + "id": 25635, "properties": { "east": "tall", "north": "none", @@ -169982,7 +174639,7 @@ } }, { - "id": 23322, + "id": 25636, "properties": { "east": "tall", "north": "none", @@ -169993,7 +174650,7 @@ } }, { - "id": 23323, + "id": 25637, "properties": { "east": "tall", "north": "none", @@ -170004,7 +174661,7 @@ } }, { - "id": 23324, + "id": 25638, "properties": { "east": "tall", "north": "none", @@ -170015,7 +174672,7 @@ } }, { - "id": 23325, + "id": 25639, "properties": { "east": "tall", "north": "none", @@ -170026,7 +174683,7 @@ } }, { - "id": 23326, + "id": 25640, "properties": { "east": "tall", "north": "none", @@ -170037,7 +174694,7 @@ } }, { - "id": 23327, + "id": 25641, "properties": { "east": "tall", "north": "none", @@ -170048,7 +174705,7 @@ } }, { - "id": 23328, + "id": 25642, "properties": { "east": "tall", "north": "none", @@ -170059,7 +174716,7 @@ } }, { - "id": 23329, + "id": 25643, "properties": { "east": "tall", "north": "none", @@ -170070,7 +174727,7 @@ } }, { - "id": 23330, + "id": 25644, "properties": { "east": "tall", "north": "none", @@ -170081,7 +174738,7 @@ } }, { - "id": 23331, + "id": 25645, "properties": { "east": "tall", "north": "none", @@ -170092,7 +174749,7 @@ } }, { - "id": 23332, + "id": 25646, "properties": { "east": "tall", "north": "none", @@ -170103,7 +174760,7 @@ } }, { - "id": 23333, + "id": 25647, "properties": { "east": "tall", "north": "none", @@ -170114,7 +174771,7 @@ } }, { - "id": 23334, + "id": 25648, "properties": { "east": "tall", "north": "none", @@ -170125,7 +174782,7 @@ } }, { - "id": 23335, + "id": 25649, "properties": { "east": "tall", "north": "none", @@ -170136,7 +174793,7 @@ } }, { - "id": 23336, + "id": 25650, "properties": { "east": "tall", "north": "none", @@ -170147,7 +174804,7 @@ } }, { - "id": 23337, + "id": 25651, "properties": { "east": "tall", "north": "none", @@ -170158,7 +174815,7 @@ } }, { - "id": 23338, + "id": 25652, "properties": { "east": "tall", "north": "none", @@ -170169,7 +174826,7 @@ } }, { - "id": 23339, + "id": 25653, "properties": { "east": "tall", "north": "none", @@ -170180,7 +174837,7 @@ } }, { - "id": 23340, + "id": 25654, "properties": { "east": "tall", "north": "none", @@ -170191,7 +174848,7 @@ } }, { - "id": 23341, + "id": 25655, "properties": { "east": "tall", "north": "none", @@ -170202,7 +174859,7 @@ } }, { - "id": 23342, + "id": 25656, "properties": { "east": "tall", "north": "none", @@ -170213,7 +174870,7 @@ } }, { - "id": 23343, + "id": 25657, "properties": { "east": "tall", "north": "low", @@ -170224,7 +174881,7 @@ } }, { - "id": 23344, + "id": 25658, "properties": { "east": "tall", "north": "low", @@ -170235,7 +174892,7 @@ } }, { - "id": 23345, + "id": 25659, "properties": { "east": "tall", "north": "low", @@ -170246,7 +174903,7 @@ } }, { - "id": 23346, + "id": 25660, "properties": { "east": "tall", "north": "low", @@ -170257,7 +174914,7 @@ } }, { - "id": 23347, + "id": 25661, "properties": { "east": "tall", "north": "low", @@ -170268,7 +174925,7 @@ } }, { - "id": 23348, + "id": 25662, "properties": { "east": "tall", "north": "low", @@ -170279,7 +174936,7 @@ } }, { - "id": 23349, + "id": 25663, "properties": { "east": "tall", "north": "low", @@ -170290,7 +174947,7 @@ } }, { - "id": 23350, + "id": 25664, "properties": { "east": "tall", "north": "low", @@ -170301,7 +174958,7 @@ } }, { - "id": 23351, + "id": 25665, "properties": { "east": "tall", "north": "low", @@ -170312,7 +174969,7 @@ } }, { - "id": 23352, + "id": 25666, "properties": { "east": "tall", "north": "low", @@ -170323,7 +174980,7 @@ } }, { - "id": 23353, + "id": 25667, "properties": { "east": "tall", "north": "low", @@ -170334,7 +174991,7 @@ } }, { - "id": 23354, + "id": 25668, "properties": { "east": "tall", "north": "low", @@ -170345,7 +175002,7 @@ } }, { - "id": 23355, + "id": 25669, "properties": { "east": "tall", "north": "low", @@ -170356,7 +175013,7 @@ } }, { - "id": 23356, + "id": 25670, "properties": { "east": "tall", "north": "low", @@ -170367,7 +175024,7 @@ } }, { - "id": 23357, + "id": 25671, "properties": { "east": "tall", "north": "low", @@ -170378,7 +175035,7 @@ } }, { - "id": 23358, + "id": 25672, "properties": { "east": "tall", "north": "low", @@ -170389,7 +175046,7 @@ } }, { - "id": 23359, + "id": 25673, "properties": { "east": "tall", "north": "low", @@ -170400,7 +175057,7 @@ } }, { - "id": 23360, + "id": 25674, "properties": { "east": "tall", "north": "low", @@ -170411,7 +175068,7 @@ } }, { - "id": 23361, + "id": 25675, "properties": { "east": "tall", "north": "low", @@ -170422,7 +175079,7 @@ } }, { - "id": 23362, + "id": 25676, "properties": { "east": "tall", "north": "low", @@ -170433,7 +175090,7 @@ } }, { - "id": 23363, + "id": 25677, "properties": { "east": "tall", "north": "low", @@ -170444,7 +175101,7 @@ } }, { - "id": 23364, + "id": 25678, "properties": { "east": "tall", "north": "low", @@ -170455,7 +175112,7 @@ } }, { - "id": 23365, + "id": 25679, "properties": { "east": "tall", "north": "low", @@ -170466,7 +175123,7 @@ } }, { - "id": 23366, + "id": 25680, "properties": { "east": "tall", "north": "low", @@ -170477,7 +175134,7 @@ } }, { - "id": 23367, + "id": 25681, "properties": { "east": "tall", "north": "low", @@ -170488,7 +175145,7 @@ } }, { - "id": 23368, + "id": 25682, "properties": { "east": "tall", "north": "low", @@ -170499,7 +175156,7 @@ } }, { - "id": 23369, + "id": 25683, "properties": { "east": "tall", "north": "low", @@ -170510,7 +175167,7 @@ } }, { - "id": 23370, + "id": 25684, "properties": { "east": "tall", "north": "low", @@ -170521,7 +175178,7 @@ } }, { - "id": 23371, + "id": 25685, "properties": { "east": "tall", "north": "low", @@ -170532,7 +175189,7 @@ } }, { - "id": 23372, + "id": 25686, "properties": { "east": "tall", "north": "low", @@ -170543,7 +175200,7 @@ } }, { - "id": 23373, + "id": 25687, "properties": { "east": "tall", "north": "low", @@ -170554,7 +175211,7 @@ } }, { - "id": 23374, + "id": 25688, "properties": { "east": "tall", "north": "low", @@ -170565,7 +175222,7 @@ } }, { - "id": 23375, + "id": 25689, "properties": { "east": "tall", "north": "low", @@ -170576,7 +175233,7 @@ } }, { - "id": 23376, + "id": 25690, "properties": { "east": "tall", "north": "low", @@ -170587,7 +175244,7 @@ } }, { - "id": 23377, + "id": 25691, "properties": { "east": "tall", "north": "low", @@ -170598,7 +175255,7 @@ } }, { - "id": 23378, + "id": 25692, "properties": { "east": "tall", "north": "low", @@ -170609,7 +175266,7 @@ } }, { - "id": 23379, + "id": 25693, "properties": { "east": "tall", "north": "tall", @@ -170620,7 +175277,7 @@ } }, { - "id": 23380, + "id": 25694, "properties": { "east": "tall", "north": "tall", @@ -170631,7 +175288,7 @@ } }, { - "id": 23381, + "id": 25695, "properties": { "east": "tall", "north": "tall", @@ -170642,7 +175299,7 @@ } }, { - "id": 23382, + "id": 25696, "properties": { "east": "tall", "north": "tall", @@ -170653,7 +175310,7 @@ } }, { - "id": 23383, + "id": 25697, "properties": { "east": "tall", "north": "tall", @@ -170664,7 +175321,7 @@ } }, { - "id": 23384, + "id": 25698, "properties": { "east": "tall", "north": "tall", @@ -170675,7 +175332,7 @@ } }, { - "id": 23385, + "id": 25699, "properties": { "east": "tall", "north": "tall", @@ -170686,7 +175343,7 @@ } }, { - "id": 23386, + "id": 25700, "properties": { "east": "tall", "north": "tall", @@ -170697,7 +175354,7 @@ } }, { - "id": 23387, + "id": 25701, "properties": { "east": "tall", "north": "tall", @@ -170708,7 +175365,7 @@ } }, { - "id": 23388, + "id": 25702, "properties": { "east": "tall", "north": "tall", @@ -170719,7 +175376,7 @@ } }, { - "id": 23389, + "id": 25703, "properties": { "east": "tall", "north": "tall", @@ -170730,7 +175387,7 @@ } }, { - "id": 23390, + "id": 25704, "properties": { "east": "tall", "north": "tall", @@ -170741,7 +175398,7 @@ } }, { - "id": 23391, + "id": 25705, "properties": { "east": "tall", "north": "tall", @@ -170752,7 +175409,7 @@ } }, { - "id": 23392, + "id": 25706, "properties": { "east": "tall", "north": "tall", @@ -170763,7 +175420,7 @@ } }, { - "id": 23393, + "id": 25707, "properties": { "east": "tall", "north": "tall", @@ -170774,7 +175431,7 @@ } }, { - "id": 23394, + "id": 25708, "properties": { "east": "tall", "north": "tall", @@ -170785,7 +175442,7 @@ } }, { - "id": 23395, + "id": 25709, "properties": { "east": "tall", "north": "tall", @@ -170796,7 +175453,7 @@ } }, { - "id": 23396, + "id": 25710, "properties": { "east": "tall", "north": "tall", @@ -170807,7 +175464,7 @@ } }, { - "id": 23397, + "id": 25711, "properties": { "east": "tall", "north": "tall", @@ -170818,7 +175475,7 @@ } }, { - "id": 23398, + "id": 25712, "properties": { "east": "tall", "north": "tall", @@ -170829,7 +175486,7 @@ } }, { - "id": 23399, + "id": 25713, "properties": { "east": "tall", "north": "tall", @@ -170840,7 +175497,7 @@ } }, { - "id": 23400, + "id": 25714, "properties": { "east": "tall", "north": "tall", @@ -170851,7 +175508,7 @@ } }, { - "id": 23401, + "id": 25715, "properties": { "east": "tall", "north": "tall", @@ -170862,7 +175519,7 @@ } }, { - "id": 23402, + "id": 25716, "properties": { "east": "tall", "north": "tall", @@ -170873,7 +175530,7 @@ } }, { - "id": 23403, + "id": 25717, "properties": { "east": "tall", "north": "tall", @@ -170884,7 +175541,7 @@ } }, { - "id": 23404, + "id": 25718, "properties": { "east": "tall", "north": "tall", @@ -170895,7 +175552,7 @@ } }, { - "id": 23405, + "id": 25719, "properties": { "east": "tall", "north": "tall", @@ -170906,7 +175563,7 @@ } }, { - "id": 23406, + "id": 25720, "properties": { "east": "tall", "north": "tall", @@ -170917,7 +175574,7 @@ } }, { - "id": 23407, + "id": 25721, "properties": { "east": "tall", "north": "tall", @@ -170928,7 +175585,7 @@ } }, { - "id": 23408, + "id": 25722, "properties": { "east": "tall", "north": "tall", @@ -170939,7 +175596,7 @@ } }, { - "id": 23409, + "id": 25723, "properties": { "east": "tall", "north": "tall", @@ -170950,7 +175607,7 @@ } }, { - "id": 23410, + "id": 25724, "properties": { "east": "tall", "north": "tall", @@ -170961,7 +175618,7 @@ } }, { - "id": 23411, + "id": 25725, "properties": { "east": "tall", "north": "tall", @@ -170972,7 +175629,7 @@ } }, { - "id": 23412, + "id": 25726, "properties": { "east": "tall", "north": "tall", @@ -170983,7 +175640,7 @@ } }, { - "id": 23413, + "id": 25727, "properties": { "east": "tall", "north": "tall", @@ -170994,7 +175651,7 @@ } }, { - "id": 23414, + "id": 25728, "properties": { "east": "tall", "north": "tall", @@ -172634,6 +177291,4419 @@ } ] }, + "minecraft:polished_tuff": { + "states": [ + { + "default": true, + "id": 21492 + } + ] + }, + "minecraft:polished_tuff_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21493, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21494, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21495, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21496, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21497, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21498, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_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": 21499, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21500, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21501, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21502, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21503, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21504, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21505, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21506, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21507, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21508, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21509, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21510, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21511, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21512, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21513, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21514, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21515, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21516, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21517, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21518, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21519, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21520, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21521, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21522, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21523, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21524, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21525, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21526, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21527, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21528, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21533, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21534, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21535, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21536, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21537, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21538, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21539, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21540, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21541, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21542, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21543, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21544, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21545, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21546, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21547, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21548, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21553, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21554, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21555, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21556, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21557, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21558, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21559, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21560, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21561, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21562, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21563, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21564, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21565, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21566, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21567, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21568, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21572, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21573, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21574, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21575, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21576, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21577, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21578, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_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": 21579, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21580, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21581, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21582, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21583, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21584, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21585, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21586, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21587, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21588, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21589, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21590, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21591, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21592, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21593, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21594, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21595, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21596, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21597, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21598, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21599, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21600, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21601, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21602, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21603, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21604, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21605, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21606, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21607, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21608, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21609, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21610, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21611, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21612, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21613, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21614, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21615, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21616, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21617, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21618, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21619, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21620, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21621, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21622, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21623, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21624, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21625, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21626, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21627, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21628, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21629, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21630, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21631, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21632, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21633, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21634, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21635, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21636, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21637, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21638, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21639, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21640, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21641, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21642, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21643, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21644, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21645, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21646, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21647, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21648, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21649, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21650, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21651, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21652, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21653, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21654, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21655, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21656, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21657, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21658, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21659, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21660, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21661, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21662, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21663, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21664, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21665, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21666, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21667, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21668, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21669, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21670, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21671, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21672, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21673, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21674, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21675, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21676, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21677, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21678, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21679, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21680, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21681, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21682, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21683, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21684, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21685, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21686, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21687, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21688, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21689, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21690, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21691, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21692, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21693, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21694, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21695, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21696, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21697, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21698, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21699, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21700, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21701, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21702, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21703, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21704, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21705, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21706, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21707, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21708, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21709, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21710, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21711, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21712, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21713, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21714, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21715, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21716, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21717, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21718, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21719, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21720, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21721, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21722, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21723, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21724, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21725, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21726, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21727, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21728, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21729, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21730, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21731, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21732, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21733, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21734, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21735, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21736, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21737, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21738, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21739, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21740, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21741, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21742, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21743, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21744, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21745, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21746, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21747, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21748, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21749, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21750, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21751, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21752, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21753, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21754, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21755, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21756, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21757, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21758, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21759, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21760, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21761, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21762, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21763, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21764, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21765, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21766, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21767, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21768, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21769, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21770, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21771, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21772, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21773, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21774, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21775, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21776, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21777, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21778, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21779, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21780, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21781, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21782, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21783, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21784, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21785, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21786, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21787, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21788, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21789, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21790, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21791, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21792, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21793, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21794, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21795, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21796, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21797, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21798, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21799, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21800, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21801, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21802, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21803, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21804, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21805, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21806, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21807, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21808, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21809, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21810, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21811, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21812, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21813, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21814, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21815, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21816, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21817, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21818, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21819, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21820, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21821, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21822, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21823, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21824, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21825, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21826, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21827, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21828, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21829, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21830, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21831, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21832, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21833, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21834, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21835, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21836, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21837, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21838, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21839, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21840, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21841, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21842, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21843, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21844, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21845, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21846, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21847, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21848, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21849, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21850, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21851, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21852, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21853, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21854, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21855, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21856, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21857, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21858, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21859, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21860, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21861, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21862, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21863, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21864, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21865, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21866, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21867, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21868, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21869, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21870, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21871, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21872, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21873, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21874, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21875, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21876, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21877, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21878, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21879, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21880, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21881, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21882, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21883, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21884, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21885, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21886, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21887, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21888, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21889, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21890, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21891, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21892, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21893, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21894, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21897, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21898, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21899, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21900, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21901, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21902, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:poppy": { "states": [ { @@ -172727,7 +181797,7 @@ "states": [ { "default": true, - "id": 24247 + "id": 26561 } ] }, @@ -172847,7 +181917,7 @@ "states": [ { "default": true, - "id": 24248 + "id": 26562 } ] }, @@ -172983,7 +182053,7 @@ "states": [ { "default": true, - "id": 21084 + "id": 22318 } ] }, @@ -178463,7 +187533,7 @@ "states": [ { "default": true, - "id": 5849 + "id": 6811 } ] }, @@ -179090,7 +188160,7 @@ "states": [ { "default": true, - "id": 5956 + "id": 5955 } ] }, @@ -181357,7 +190427,7 @@ "states": [ { "default": true, - "id": 24245 + "id": 26559 } ] }, @@ -181365,7 +190435,7 @@ "states": [ { "default": true, - "id": 24246 + "id": 26560 } ] }, @@ -181373,7 +190443,7 @@ "states": [ { "default": true, - "id": 24244 + "id": 26558 } ] }, @@ -181918,7 +190988,7 @@ "states": [ { "default": true, - "id": 6614, + "id": 6613, "properties": { "down": "true", "east": "true", @@ -181929,7 +190999,7 @@ } }, { - "id": 6615, + "id": 6614, "properties": { "down": "true", "east": "true", @@ -181939,6 +191009,17 @@ "west": "false" } }, + { + "id": 6615, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, { "id": 6616, "properties": { @@ -181947,7 +191028,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -181956,9 +191037,9 @@ "down": "true", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -181969,7 +191050,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -181979,8 +191060,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -181991,7 +191072,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -181999,10 +191080,10 @@ "properties": { "down": "true", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182013,7 +191094,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182023,8 +191104,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182035,7 +191116,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182044,9 +191125,9 @@ "down": "true", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182057,7 +191138,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182067,8 +191148,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182079,18 +191160,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6629, "properties": { "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182101,7 +191182,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182111,8 +191192,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182123,7 +191204,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182132,9 +191213,9 @@ "down": "true", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182145,7 +191226,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182155,8 +191236,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182167,7 +191248,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182175,10 +191256,10 @@ "properties": { "down": "true", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182189,7 +191270,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182199,8 +191280,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182211,7 +191292,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182220,9 +191301,9 @@ "down": "true", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182233,7 +191314,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182243,8 +191324,8 @@ "east": "false", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182255,18 +191336,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6645, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182277,7 +191358,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182287,8 +191368,8 @@ "east": "true", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182299,7 +191380,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182308,9 +191389,9 @@ "down": "false", "east": "true", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182321,7 +191402,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182331,8 +191412,8 @@ "east": "true", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182343,7 +191424,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182351,10 +191432,10 @@ "properties": { "down": "false", "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182365,7 +191446,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182375,8 +191456,8 @@ "east": "true", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182387,7 +191468,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182396,9 +191477,9 @@ "down": "false", "east": "true", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182409,7 +191490,7 @@ "north": "false", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182419,8 +191500,8 @@ "east": "true", "north": "false", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182431,18 +191512,18 @@ "north": "false", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { "id": 6661, "properties": { "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182453,7 +191534,7 @@ "north": "true", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182463,8 +191544,8 @@ "east": "false", "north": "true", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182475,7 +191556,7 @@ "north": "true", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182484,9 +191565,9 @@ "down": "false", "east": "false", "north": "true", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { @@ -182497,7 +191578,7 @@ "north": "true", "south": "false", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182507,8 +191588,8 @@ "east": "false", "north": "true", "south": "false", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182519,7 +191600,7 @@ "north": "true", "south": "false", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182527,10 +191608,10 @@ "properties": { "down": "false", "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { @@ -182541,7 +191622,7 @@ "north": "false", "south": "true", "up": "true", - "west": "true" + "west": "false" } }, { @@ -182551,8 +191632,8 @@ "east": "false", "north": "false", "south": "true", - "up": "true", - "west": "false" + "up": "false", + "west": "true" } }, { @@ -182563,7 +191644,7 @@ "north": "false", "south": "true", "up": "false", - "west": "true" + "west": "false" } }, { @@ -182572,24 +191653,13 @@ "down": "false", "east": "false", "north": "false", - "south": "true", - "up": "false", - "west": "false" + "south": "false", + "up": "true", + "west": "true" } }, { "id": 6674, - "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" - } - }, - { - "id": 6675, "properties": { "down": "false", "east": "false", @@ -182600,7 +191670,7 @@ } }, { - "id": 6676, + "id": 6675, "properties": { "down": "false", "east": "false", @@ -182611,7 +191681,7 @@ } }, { - "id": 6677, + "id": 6676, "properties": { "down": "false", "east": "false", @@ -191512,7 +200582,7 @@ "states": [ { "default": true, - "id": 5960 + "id": 5959 } ] }, @@ -205083,7 +214153,7 @@ "states": [ { "default": true, - "id": 24259 + "id": 26573 } ] }, @@ -205112,7 +214182,7 @@ }, "states": [ { - "id": 5882, + "id": 5881, "properties": { "delay": "1", "facing": "north", @@ -205121,7 +214191,7 @@ } }, { - "id": 5883, + "id": 5882, "properties": { "delay": "1", "facing": "north", @@ -205130,7 +214200,7 @@ } }, { - "id": 5884, + "id": 5883, "properties": { "delay": "1", "facing": "north", @@ -205140,7 +214210,7 @@ }, { "default": true, - "id": 5885, + "id": 5884, "properties": { "delay": "1", "facing": "north", @@ -205148,13 +214218,22 @@ "powered": "false" } }, + { + "id": 5885, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, { "id": 5886, "properties": { "delay": "1", "facing": "south", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205162,8 +214241,8 @@ "properties": { "delay": "1", "facing": "south", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205172,16 +214251,16 @@ "delay": "1", "facing": "south", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5889, "properties": { "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" + "facing": "west", + "locked": "true", + "powered": "true" } }, { @@ -205190,7 +214269,7 @@ "delay": "1", "facing": "west", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205198,8 +214277,8 @@ "properties": { "delay": "1", "facing": "west", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205208,16 +214287,16 @@ "delay": "1", "facing": "west", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5893, "properties": { "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" + "facing": "east", + "locked": "true", + "powered": "true" } }, { @@ -205226,7 +214305,7 @@ "delay": "1", "facing": "east", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205234,8 +214313,8 @@ "properties": { "delay": "1", "facing": "east", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205244,16 +214323,16 @@ "delay": "1", "facing": "east", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5897, "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" } }, { @@ -205262,7 +214341,7 @@ "delay": "2", "facing": "north", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205270,8 +214349,8 @@ "properties": { "delay": "2", "facing": "north", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205280,16 +214359,16 @@ "delay": "2", "facing": "north", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5901, "properties": { "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" + "facing": "south", + "locked": "true", + "powered": "true" } }, { @@ -205298,7 +214377,7 @@ "delay": "2", "facing": "south", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205306,8 +214385,8 @@ "properties": { "delay": "2", "facing": "south", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205316,16 +214395,16 @@ "delay": "2", "facing": "south", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5905, "properties": { "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" + "facing": "west", + "locked": "true", + "powered": "true" } }, { @@ -205334,7 +214413,7 @@ "delay": "2", "facing": "west", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205342,8 +214421,8 @@ "properties": { "delay": "2", "facing": "west", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205352,16 +214431,16 @@ "delay": "2", "facing": "west", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5909, "properties": { "delay": "2", - "facing": "west", - "locked": "false", - "powered": "false" + "facing": "east", + "locked": "true", + "powered": "true" } }, { @@ -205370,7 +214449,7 @@ "delay": "2", "facing": "east", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205378,8 +214457,8 @@ "properties": { "delay": "2", "facing": "east", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205388,16 +214467,16 @@ "delay": "2", "facing": "east", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5913, "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" } }, { @@ -205406,7 +214485,7 @@ "delay": "3", "facing": "north", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205414,8 +214493,8 @@ "properties": { "delay": "3", "facing": "north", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205424,16 +214503,16 @@ "delay": "3", "facing": "north", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5917, "properties": { "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" + "facing": "south", + "locked": "true", + "powered": "true" } }, { @@ -205442,7 +214521,7 @@ "delay": "3", "facing": "south", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205450,8 +214529,8 @@ "properties": { "delay": "3", "facing": "south", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205460,16 +214539,16 @@ "delay": "3", "facing": "south", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5921, "properties": { "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" + "facing": "west", + "locked": "true", + "powered": "true" } }, { @@ -205478,7 +214557,7 @@ "delay": "3", "facing": "west", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205486,8 +214565,8 @@ "properties": { "delay": "3", "facing": "west", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205496,16 +214575,16 @@ "delay": "3", "facing": "west", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5925, "properties": { "delay": "3", - "facing": "west", - "locked": "false", - "powered": "false" + "facing": "east", + "locked": "true", + "powered": "true" } }, { @@ -205514,7 +214593,7 @@ "delay": "3", "facing": "east", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205522,8 +214601,8 @@ "properties": { "delay": "3", "facing": "east", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205532,16 +214611,16 @@ "delay": "3", "facing": "east", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5929, "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" } }, { @@ -205550,7 +214629,7 @@ "delay": "4", "facing": "north", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205558,8 +214637,8 @@ "properties": { "delay": "4", "facing": "north", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205568,16 +214647,16 @@ "delay": "4", "facing": "north", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5933, "properties": { "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" + "facing": "south", + "locked": "true", + "powered": "true" } }, { @@ -205586,7 +214665,7 @@ "delay": "4", "facing": "south", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205594,8 +214673,8 @@ "properties": { "delay": "4", "facing": "south", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205604,16 +214683,16 @@ "delay": "4", "facing": "south", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5937, "properties": { "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" + "facing": "west", + "locked": "true", + "powered": "true" } }, { @@ -205622,7 +214701,7 @@ "delay": "4", "facing": "west", "locked": "true", - "powered": "true" + "powered": "false" } }, { @@ -205630,8 +214709,8 @@ "properties": { "delay": "4", "facing": "west", - "locked": "true", - "powered": "false" + "locked": "false", + "powered": "true" } }, { @@ -205640,29 +214719,20 @@ "delay": "4", "facing": "west", "locked": "false", - "powered": "true" + "powered": "false" } }, { "id": 5941, "properties": { "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" + "facing": "east", + "locked": "true", + "powered": "true" } }, { "id": 5942, - "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" - } - }, - { - "id": 5943, "properties": { "delay": "4", "facing": "east", @@ -205671,7 +214741,7 @@ } }, { - "id": 5944, + "id": 5943, "properties": { "delay": "4", "facing": "east", @@ -205680,7 +214750,7 @@ } }, { - "id": 5945, + "id": 5944, "properties": { "delay": "4", "facing": "east", @@ -205841,7 +214911,7 @@ "states": [ { "default": true, - "id": 22588 + "id": 24902 } ] }, @@ -210574,7 +219644,7 @@ "states": [ { "default": true, - "id": 21565 + "id": 22799 } ] }, @@ -210587,14 +219657,14 @@ }, "states": [ { - "id": 21694, + "id": 22928, "properties": { "bloom": "true" } }, { "default": true, - "id": 21695, + "id": 22929, "properties": { "bloom": "false" } @@ -210633,7 +219703,7 @@ }, "states": [ { - "id": 21085, + "id": 22319, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -210642,7 +219712,7 @@ }, { "default": true, - "id": 21086, + "id": 22320, "properties": { "power": "0", "sculk_sensor_phase": "inactive", @@ -210650,7 +219720,7 @@ } }, { - "id": 21087, + "id": 22321, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -210658,7 +219728,7 @@ } }, { - "id": 21088, + "id": 22322, "properties": { "power": "0", "sculk_sensor_phase": "active", @@ -210666,7 +219736,7 @@ } }, { - "id": 21089, + "id": 22323, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -210674,7 +219744,7 @@ } }, { - "id": 21090, + "id": 22324, "properties": { "power": "0", "sculk_sensor_phase": "cooldown", @@ -210682,7 +219752,7 @@ } }, { - "id": 21091, + "id": 22325, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -210690,7 +219760,7 @@ } }, { - "id": 21092, + "id": 22326, "properties": { "power": "1", "sculk_sensor_phase": "inactive", @@ -210698,7 +219768,7 @@ } }, { - "id": 21093, + "id": 22327, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -210706,7 +219776,7 @@ } }, { - "id": 21094, + "id": 22328, "properties": { "power": "1", "sculk_sensor_phase": "active", @@ -210714,7 +219784,7 @@ } }, { - "id": 21095, + "id": 22329, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -210722,7 +219792,7 @@ } }, { - "id": 21096, + "id": 22330, "properties": { "power": "1", "sculk_sensor_phase": "cooldown", @@ -210730,7 +219800,7 @@ } }, { - "id": 21097, + "id": 22331, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -210738,7 +219808,7 @@ } }, { - "id": 21098, + "id": 22332, "properties": { "power": "2", "sculk_sensor_phase": "inactive", @@ -210746,7 +219816,7 @@ } }, { - "id": 21099, + "id": 22333, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -210754,7 +219824,7 @@ } }, { - "id": 21100, + "id": 22334, "properties": { "power": "2", "sculk_sensor_phase": "active", @@ -210762,7 +219832,7 @@ } }, { - "id": 21101, + "id": 22335, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -210770,7 +219840,7 @@ } }, { - "id": 21102, + "id": 22336, "properties": { "power": "2", "sculk_sensor_phase": "cooldown", @@ -210778,7 +219848,7 @@ } }, { - "id": 21103, + "id": 22337, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -210786,7 +219856,7 @@ } }, { - "id": 21104, + "id": 22338, "properties": { "power": "3", "sculk_sensor_phase": "inactive", @@ -210794,7 +219864,7 @@ } }, { - "id": 21105, + "id": 22339, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -210802,7 +219872,7 @@ } }, { - "id": 21106, + "id": 22340, "properties": { "power": "3", "sculk_sensor_phase": "active", @@ -210810,7 +219880,7 @@ } }, { - "id": 21107, + "id": 22341, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -210818,7 +219888,7 @@ } }, { - "id": 21108, + "id": 22342, "properties": { "power": "3", "sculk_sensor_phase": "cooldown", @@ -210826,7 +219896,7 @@ } }, { - "id": 21109, + "id": 22343, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -210834,7 +219904,7 @@ } }, { - "id": 21110, + "id": 22344, "properties": { "power": "4", "sculk_sensor_phase": "inactive", @@ -210842,7 +219912,7 @@ } }, { - "id": 21111, + "id": 22345, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -210850,7 +219920,7 @@ } }, { - "id": 21112, + "id": 22346, "properties": { "power": "4", "sculk_sensor_phase": "active", @@ -210858,7 +219928,7 @@ } }, { - "id": 21113, + "id": 22347, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -210866,7 +219936,7 @@ } }, { - "id": 21114, + "id": 22348, "properties": { "power": "4", "sculk_sensor_phase": "cooldown", @@ -210874,7 +219944,7 @@ } }, { - "id": 21115, + "id": 22349, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -210882,7 +219952,7 @@ } }, { - "id": 21116, + "id": 22350, "properties": { "power": "5", "sculk_sensor_phase": "inactive", @@ -210890,7 +219960,7 @@ } }, { - "id": 21117, + "id": 22351, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -210898,7 +219968,7 @@ } }, { - "id": 21118, + "id": 22352, "properties": { "power": "5", "sculk_sensor_phase": "active", @@ -210906,7 +219976,7 @@ } }, { - "id": 21119, + "id": 22353, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -210914,7 +219984,7 @@ } }, { - "id": 21120, + "id": 22354, "properties": { "power": "5", "sculk_sensor_phase": "cooldown", @@ -210922,7 +219992,7 @@ } }, { - "id": 21121, + "id": 22355, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -210930,7 +220000,7 @@ } }, { - "id": 21122, + "id": 22356, "properties": { "power": "6", "sculk_sensor_phase": "inactive", @@ -210938,7 +220008,7 @@ } }, { - "id": 21123, + "id": 22357, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -210946,7 +220016,7 @@ } }, { - "id": 21124, + "id": 22358, "properties": { "power": "6", "sculk_sensor_phase": "active", @@ -210954,7 +220024,7 @@ } }, { - "id": 21125, + "id": 22359, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -210962,7 +220032,7 @@ } }, { - "id": 21126, + "id": 22360, "properties": { "power": "6", "sculk_sensor_phase": "cooldown", @@ -210970,7 +220040,7 @@ } }, { - "id": 21127, + "id": 22361, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -210978,7 +220048,7 @@ } }, { - "id": 21128, + "id": 22362, "properties": { "power": "7", "sculk_sensor_phase": "inactive", @@ -210986,7 +220056,7 @@ } }, { - "id": 21129, + "id": 22363, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -210994,7 +220064,7 @@ } }, { - "id": 21130, + "id": 22364, "properties": { "power": "7", "sculk_sensor_phase": "active", @@ -211002,7 +220072,7 @@ } }, { - "id": 21131, + "id": 22365, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -211010,7 +220080,7 @@ } }, { - "id": 21132, + "id": 22366, "properties": { "power": "7", "sculk_sensor_phase": "cooldown", @@ -211018,7 +220088,7 @@ } }, { - "id": 21133, + "id": 22367, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -211026,7 +220096,7 @@ } }, { - "id": 21134, + "id": 22368, "properties": { "power": "8", "sculk_sensor_phase": "inactive", @@ -211034,7 +220104,7 @@ } }, { - "id": 21135, + "id": 22369, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -211042,7 +220112,7 @@ } }, { - "id": 21136, + "id": 22370, "properties": { "power": "8", "sculk_sensor_phase": "active", @@ -211050,7 +220120,7 @@ } }, { - "id": 21137, + "id": 22371, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -211058,7 +220128,7 @@ } }, { - "id": 21138, + "id": 22372, "properties": { "power": "8", "sculk_sensor_phase": "cooldown", @@ -211066,7 +220136,7 @@ } }, { - "id": 21139, + "id": 22373, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -211074,7 +220144,7 @@ } }, { - "id": 21140, + "id": 22374, "properties": { "power": "9", "sculk_sensor_phase": "inactive", @@ -211082,7 +220152,7 @@ } }, { - "id": 21141, + "id": 22375, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -211090,7 +220160,7 @@ } }, { - "id": 21142, + "id": 22376, "properties": { "power": "9", "sculk_sensor_phase": "active", @@ -211098,7 +220168,7 @@ } }, { - "id": 21143, + "id": 22377, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -211106,7 +220176,7 @@ } }, { - "id": 21144, + "id": 22378, "properties": { "power": "9", "sculk_sensor_phase": "cooldown", @@ -211114,7 +220184,7 @@ } }, { - "id": 21145, + "id": 22379, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -211122,7 +220192,7 @@ } }, { - "id": 21146, + "id": 22380, "properties": { "power": "10", "sculk_sensor_phase": "inactive", @@ -211130,7 +220200,7 @@ } }, { - "id": 21147, + "id": 22381, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -211138,7 +220208,7 @@ } }, { - "id": 21148, + "id": 22382, "properties": { "power": "10", "sculk_sensor_phase": "active", @@ -211146,7 +220216,7 @@ } }, { - "id": 21149, + "id": 22383, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -211154,7 +220224,7 @@ } }, { - "id": 21150, + "id": 22384, "properties": { "power": "10", "sculk_sensor_phase": "cooldown", @@ -211162,7 +220232,7 @@ } }, { - "id": 21151, + "id": 22385, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -211170,7 +220240,7 @@ } }, { - "id": 21152, + "id": 22386, "properties": { "power": "11", "sculk_sensor_phase": "inactive", @@ -211178,7 +220248,7 @@ } }, { - "id": 21153, + "id": 22387, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -211186,7 +220256,7 @@ } }, { - "id": 21154, + "id": 22388, "properties": { "power": "11", "sculk_sensor_phase": "active", @@ -211194,7 +220264,7 @@ } }, { - "id": 21155, + "id": 22389, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -211202,7 +220272,7 @@ } }, { - "id": 21156, + "id": 22390, "properties": { "power": "11", "sculk_sensor_phase": "cooldown", @@ -211210,7 +220280,7 @@ } }, { - "id": 21157, + "id": 22391, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -211218,7 +220288,7 @@ } }, { - "id": 21158, + "id": 22392, "properties": { "power": "12", "sculk_sensor_phase": "inactive", @@ -211226,7 +220296,7 @@ } }, { - "id": 21159, + "id": 22393, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -211234,7 +220304,7 @@ } }, { - "id": 21160, + "id": 22394, "properties": { "power": "12", "sculk_sensor_phase": "active", @@ -211242,7 +220312,7 @@ } }, { - "id": 21161, + "id": 22395, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -211250,7 +220320,7 @@ } }, { - "id": 21162, + "id": 22396, "properties": { "power": "12", "sculk_sensor_phase": "cooldown", @@ -211258,7 +220328,7 @@ } }, { - "id": 21163, + "id": 22397, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -211266,7 +220336,7 @@ } }, { - "id": 21164, + "id": 22398, "properties": { "power": "13", "sculk_sensor_phase": "inactive", @@ -211274,7 +220344,7 @@ } }, { - "id": 21165, + "id": 22399, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -211282,7 +220352,7 @@ } }, { - "id": 21166, + "id": 22400, "properties": { "power": "13", "sculk_sensor_phase": "active", @@ -211290,7 +220360,7 @@ } }, { - "id": 21167, + "id": 22401, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -211298,7 +220368,7 @@ } }, { - "id": 21168, + "id": 22402, "properties": { "power": "13", "sculk_sensor_phase": "cooldown", @@ -211306,7 +220376,7 @@ } }, { - "id": 21169, + "id": 22403, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -211314,7 +220384,7 @@ } }, { - "id": 21170, + "id": 22404, "properties": { "power": "14", "sculk_sensor_phase": "inactive", @@ -211322,7 +220392,7 @@ } }, { - "id": 21171, + "id": 22405, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -211330,7 +220400,7 @@ } }, { - "id": 21172, + "id": 22406, "properties": { "power": "14", "sculk_sensor_phase": "active", @@ -211338,7 +220408,7 @@ } }, { - "id": 21173, + "id": 22407, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -211346,7 +220416,7 @@ } }, { - "id": 21174, + "id": 22408, "properties": { "power": "14", "sculk_sensor_phase": "cooldown", @@ -211354,7 +220424,7 @@ } }, { - "id": 21175, + "id": 22409, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -211362,7 +220432,7 @@ } }, { - "id": 21176, + "id": 22410, "properties": { "power": "15", "sculk_sensor_phase": "inactive", @@ -211370,7 +220440,7 @@ } }, { - "id": 21177, + "id": 22411, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -211378,7 +220448,7 @@ } }, { - "id": 21178, + "id": 22412, "properties": { "power": "15", "sculk_sensor_phase": "active", @@ -211386,7 +220456,7 @@ } }, { - "id": 21179, + "id": 22413, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -211394,7 +220464,7 @@ } }, { - "id": 21180, + "id": 22414, "properties": { "power": "15", "sculk_sensor_phase": "cooldown", @@ -211420,7 +220490,7 @@ }, "states": [ { - "id": 21696, + "id": 22930, "properties": { "can_summon": "true", "shrieking": "true", @@ -211428,7 +220498,7 @@ } }, { - "id": 21697, + "id": 22931, "properties": { "can_summon": "true", "shrieking": "true", @@ -211436,7 +220506,7 @@ } }, { - "id": 21698, + "id": 22932, "properties": { "can_summon": "true", "shrieking": "false", @@ -211444,7 +220514,7 @@ } }, { - "id": 21699, + "id": 22933, "properties": { "can_summon": "true", "shrieking": "false", @@ -211452,7 +220522,7 @@ } }, { - "id": 21700, + "id": 22934, "properties": { "can_summon": "false", "shrieking": "true", @@ -211460,7 +220530,7 @@ } }, { - "id": 21701, + "id": 22935, "properties": { "can_summon": "false", "shrieking": "true", @@ -211468,7 +220538,7 @@ } }, { - "id": 21702, + "id": 22936, "properties": { "can_summon": "false", "shrieking": "false", @@ -211477,7 +220547,7 @@ }, { "default": true, - "id": 21703, + "id": 22937, "properties": { "can_summon": "false", "shrieking": "false", @@ -211519,7 +220589,7 @@ }, "states": [ { - "id": 21566, + "id": 22800, "properties": { "down": "true", "east": "true", @@ -211531,7 +220601,7 @@ } }, { - "id": 21567, + "id": 22801, "properties": { "down": "true", "east": "true", @@ -211543,7 +220613,7 @@ } }, { - "id": 21568, + "id": 22802, "properties": { "down": "true", "east": "true", @@ -211555,7 +220625,7 @@ } }, { - "id": 21569, + "id": 22803, "properties": { "down": "true", "east": "true", @@ -211567,7 +220637,7 @@ } }, { - "id": 21570, + "id": 22804, "properties": { "down": "true", "east": "true", @@ -211579,7 +220649,7 @@ } }, { - "id": 21571, + "id": 22805, "properties": { "down": "true", "east": "true", @@ -211591,7 +220661,7 @@ } }, { - "id": 21572, + "id": 22806, "properties": { "down": "true", "east": "true", @@ -211603,7 +220673,7 @@ } }, { - "id": 21573, + "id": 22807, "properties": { "down": "true", "east": "true", @@ -211615,7 +220685,7 @@ } }, { - "id": 21574, + "id": 22808, "properties": { "down": "true", "east": "true", @@ -211627,7 +220697,7 @@ } }, { - "id": 21575, + "id": 22809, "properties": { "down": "true", "east": "true", @@ -211639,7 +220709,7 @@ } }, { - "id": 21576, + "id": 22810, "properties": { "down": "true", "east": "true", @@ -211651,7 +220721,7 @@ } }, { - "id": 21577, + "id": 22811, "properties": { "down": "true", "east": "true", @@ -211663,7 +220733,7 @@ } }, { - "id": 21578, + "id": 22812, "properties": { "down": "true", "east": "true", @@ -211675,7 +220745,7 @@ } }, { - "id": 21579, + "id": 22813, "properties": { "down": "true", "east": "true", @@ -211687,7 +220757,7 @@ } }, { - "id": 21580, + "id": 22814, "properties": { "down": "true", "east": "true", @@ -211699,7 +220769,7 @@ } }, { - "id": 21581, + "id": 22815, "properties": { "down": "true", "east": "true", @@ -211711,7 +220781,7 @@ } }, { - "id": 21582, + "id": 22816, "properties": { "down": "true", "east": "true", @@ -211723,7 +220793,7 @@ } }, { - "id": 21583, + "id": 22817, "properties": { "down": "true", "east": "true", @@ -211735,7 +220805,7 @@ } }, { - "id": 21584, + "id": 22818, "properties": { "down": "true", "east": "true", @@ -211747,7 +220817,7 @@ } }, { - "id": 21585, + "id": 22819, "properties": { "down": "true", "east": "true", @@ -211759,7 +220829,7 @@ } }, { - "id": 21586, + "id": 22820, "properties": { "down": "true", "east": "true", @@ -211771,7 +220841,7 @@ } }, { - "id": 21587, + "id": 22821, "properties": { "down": "true", "east": "true", @@ -211783,7 +220853,7 @@ } }, { - "id": 21588, + "id": 22822, "properties": { "down": "true", "east": "true", @@ -211795,7 +220865,7 @@ } }, { - "id": 21589, + "id": 22823, "properties": { "down": "true", "east": "true", @@ -211807,7 +220877,7 @@ } }, { - "id": 21590, + "id": 22824, "properties": { "down": "true", "east": "true", @@ -211819,7 +220889,7 @@ } }, { - "id": 21591, + "id": 22825, "properties": { "down": "true", "east": "true", @@ -211831,7 +220901,7 @@ } }, { - "id": 21592, + "id": 22826, "properties": { "down": "true", "east": "true", @@ -211843,7 +220913,7 @@ } }, { - "id": 21593, + "id": 22827, "properties": { "down": "true", "east": "true", @@ -211855,7 +220925,7 @@ } }, { - "id": 21594, + "id": 22828, "properties": { "down": "true", "east": "true", @@ -211867,7 +220937,7 @@ } }, { - "id": 21595, + "id": 22829, "properties": { "down": "true", "east": "true", @@ -211879,7 +220949,7 @@ } }, { - "id": 21596, + "id": 22830, "properties": { "down": "true", "east": "true", @@ -211891,7 +220961,7 @@ } }, { - "id": 21597, + "id": 22831, "properties": { "down": "true", "east": "true", @@ -211903,7 +220973,7 @@ } }, { - "id": 21598, + "id": 22832, "properties": { "down": "true", "east": "false", @@ -211915,7 +220985,7 @@ } }, { - "id": 21599, + "id": 22833, "properties": { "down": "true", "east": "false", @@ -211927,7 +220997,7 @@ } }, { - "id": 21600, + "id": 22834, "properties": { "down": "true", "east": "false", @@ -211939,7 +221009,7 @@ } }, { - "id": 21601, + "id": 22835, "properties": { "down": "true", "east": "false", @@ -211951,7 +221021,7 @@ } }, { - "id": 21602, + "id": 22836, "properties": { "down": "true", "east": "false", @@ -211963,7 +221033,7 @@ } }, { - "id": 21603, + "id": 22837, "properties": { "down": "true", "east": "false", @@ -211975,7 +221045,7 @@ } }, { - "id": 21604, + "id": 22838, "properties": { "down": "true", "east": "false", @@ -211987,7 +221057,7 @@ } }, { - "id": 21605, + "id": 22839, "properties": { "down": "true", "east": "false", @@ -211999,7 +221069,7 @@ } }, { - "id": 21606, + "id": 22840, "properties": { "down": "true", "east": "false", @@ -212011,7 +221081,7 @@ } }, { - "id": 21607, + "id": 22841, "properties": { "down": "true", "east": "false", @@ -212023,7 +221093,7 @@ } }, { - "id": 21608, + "id": 22842, "properties": { "down": "true", "east": "false", @@ -212035,7 +221105,7 @@ } }, { - "id": 21609, + "id": 22843, "properties": { "down": "true", "east": "false", @@ -212047,7 +221117,7 @@ } }, { - "id": 21610, + "id": 22844, "properties": { "down": "true", "east": "false", @@ -212059,7 +221129,7 @@ } }, { - "id": 21611, + "id": 22845, "properties": { "down": "true", "east": "false", @@ -212071,7 +221141,7 @@ } }, { - "id": 21612, + "id": 22846, "properties": { "down": "true", "east": "false", @@ -212083,7 +221153,7 @@ } }, { - "id": 21613, + "id": 22847, "properties": { "down": "true", "east": "false", @@ -212095,7 +221165,7 @@ } }, { - "id": 21614, + "id": 22848, "properties": { "down": "true", "east": "false", @@ -212107,7 +221177,7 @@ } }, { - "id": 21615, + "id": 22849, "properties": { "down": "true", "east": "false", @@ -212119,7 +221189,7 @@ } }, { - "id": 21616, + "id": 22850, "properties": { "down": "true", "east": "false", @@ -212131,7 +221201,7 @@ } }, { - "id": 21617, + "id": 22851, "properties": { "down": "true", "east": "false", @@ -212143,7 +221213,7 @@ } }, { - "id": 21618, + "id": 22852, "properties": { "down": "true", "east": "false", @@ -212155,7 +221225,7 @@ } }, { - "id": 21619, + "id": 22853, "properties": { "down": "true", "east": "false", @@ -212167,7 +221237,7 @@ } }, { - "id": 21620, + "id": 22854, "properties": { "down": "true", "east": "false", @@ -212179,7 +221249,7 @@ } }, { - "id": 21621, + "id": 22855, "properties": { "down": "true", "east": "false", @@ -212191,7 +221261,7 @@ } }, { - "id": 21622, + "id": 22856, "properties": { "down": "true", "east": "false", @@ -212203,7 +221273,7 @@ } }, { - "id": 21623, + "id": 22857, "properties": { "down": "true", "east": "false", @@ -212215,7 +221285,7 @@ } }, { - "id": 21624, + "id": 22858, "properties": { "down": "true", "east": "false", @@ -212227,7 +221297,7 @@ } }, { - "id": 21625, + "id": 22859, "properties": { "down": "true", "east": "false", @@ -212239,7 +221309,7 @@ } }, { - "id": 21626, + "id": 22860, "properties": { "down": "true", "east": "false", @@ -212251,7 +221321,7 @@ } }, { - "id": 21627, + "id": 22861, "properties": { "down": "true", "east": "false", @@ -212263,7 +221333,7 @@ } }, { - "id": 21628, + "id": 22862, "properties": { "down": "true", "east": "false", @@ -212275,7 +221345,7 @@ } }, { - "id": 21629, + "id": 22863, "properties": { "down": "true", "east": "false", @@ -212287,7 +221357,7 @@ } }, { - "id": 21630, + "id": 22864, "properties": { "down": "false", "east": "true", @@ -212299,7 +221369,7 @@ } }, { - "id": 21631, + "id": 22865, "properties": { "down": "false", "east": "true", @@ -212311,7 +221381,7 @@ } }, { - "id": 21632, + "id": 22866, "properties": { "down": "false", "east": "true", @@ -212323,7 +221393,7 @@ } }, { - "id": 21633, + "id": 22867, "properties": { "down": "false", "east": "true", @@ -212335,7 +221405,7 @@ } }, { - "id": 21634, + "id": 22868, "properties": { "down": "false", "east": "true", @@ -212347,7 +221417,7 @@ } }, { - "id": 21635, + "id": 22869, "properties": { "down": "false", "east": "true", @@ -212359,7 +221429,7 @@ } }, { - "id": 21636, + "id": 22870, "properties": { "down": "false", "east": "true", @@ -212371,7 +221441,7 @@ } }, { - "id": 21637, + "id": 22871, "properties": { "down": "false", "east": "true", @@ -212383,7 +221453,7 @@ } }, { - "id": 21638, + "id": 22872, "properties": { "down": "false", "east": "true", @@ -212395,7 +221465,7 @@ } }, { - "id": 21639, + "id": 22873, "properties": { "down": "false", "east": "true", @@ -212407,7 +221477,7 @@ } }, { - "id": 21640, + "id": 22874, "properties": { "down": "false", "east": "true", @@ -212419,7 +221489,7 @@ } }, { - "id": 21641, + "id": 22875, "properties": { "down": "false", "east": "true", @@ -212431,7 +221501,7 @@ } }, { - "id": 21642, + "id": 22876, "properties": { "down": "false", "east": "true", @@ -212443,7 +221513,7 @@ } }, { - "id": 21643, + "id": 22877, "properties": { "down": "false", "east": "true", @@ -212455,7 +221525,7 @@ } }, { - "id": 21644, + "id": 22878, "properties": { "down": "false", "east": "true", @@ -212467,7 +221537,7 @@ } }, { - "id": 21645, + "id": 22879, "properties": { "down": "false", "east": "true", @@ -212479,7 +221549,7 @@ } }, { - "id": 21646, + "id": 22880, "properties": { "down": "false", "east": "true", @@ -212491,7 +221561,7 @@ } }, { - "id": 21647, + "id": 22881, "properties": { "down": "false", "east": "true", @@ -212503,7 +221573,7 @@ } }, { - "id": 21648, + "id": 22882, "properties": { "down": "false", "east": "true", @@ -212515,7 +221585,7 @@ } }, { - "id": 21649, + "id": 22883, "properties": { "down": "false", "east": "true", @@ -212527,7 +221597,7 @@ } }, { - "id": 21650, + "id": 22884, "properties": { "down": "false", "east": "true", @@ -212539,7 +221609,7 @@ } }, { - "id": 21651, + "id": 22885, "properties": { "down": "false", "east": "true", @@ -212551,7 +221621,7 @@ } }, { - "id": 21652, + "id": 22886, "properties": { "down": "false", "east": "true", @@ -212563,7 +221633,7 @@ } }, { - "id": 21653, + "id": 22887, "properties": { "down": "false", "east": "true", @@ -212575,7 +221645,7 @@ } }, { - "id": 21654, + "id": 22888, "properties": { "down": "false", "east": "true", @@ -212587,7 +221657,7 @@ } }, { - "id": 21655, + "id": 22889, "properties": { "down": "false", "east": "true", @@ -212599,7 +221669,7 @@ } }, { - "id": 21656, + "id": 22890, "properties": { "down": "false", "east": "true", @@ -212611,7 +221681,7 @@ } }, { - "id": 21657, + "id": 22891, "properties": { "down": "false", "east": "true", @@ -212623,7 +221693,7 @@ } }, { - "id": 21658, + "id": 22892, "properties": { "down": "false", "east": "true", @@ -212635,7 +221705,7 @@ } }, { - "id": 21659, + "id": 22893, "properties": { "down": "false", "east": "true", @@ -212647,7 +221717,7 @@ } }, { - "id": 21660, + "id": 22894, "properties": { "down": "false", "east": "true", @@ -212659,7 +221729,7 @@ } }, { - "id": 21661, + "id": 22895, "properties": { "down": "false", "east": "true", @@ -212671,7 +221741,7 @@ } }, { - "id": 21662, + "id": 22896, "properties": { "down": "false", "east": "false", @@ -212683,7 +221753,7 @@ } }, { - "id": 21663, + "id": 22897, "properties": { "down": "false", "east": "false", @@ -212695,7 +221765,7 @@ } }, { - "id": 21664, + "id": 22898, "properties": { "down": "false", "east": "false", @@ -212707,7 +221777,7 @@ } }, { - "id": 21665, + "id": 22899, "properties": { "down": "false", "east": "false", @@ -212719,7 +221789,7 @@ } }, { - "id": 21666, + "id": 22900, "properties": { "down": "false", "east": "false", @@ -212731,7 +221801,7 @@ } }, { - "id": 21667, + "id": 22901, "properties": { "down": "false", "east": "false", @@ -212743,7 +221813,7 @@ } }, { - "id": 21668, + "id": 22902, "properties": { "down": "false", "east": "false", @@ -212755,7 +221825,7 @@ } }, { - "id": 21669, + "id": 22903, "properties": { "down": "false", "east": "false", @@ -212767,7 +221837,7 @@ } }, { - "id": 21670, + "id": 22904, "properties": { "down": "false", "east": "false", @@ -212779,7 +221849,7 @@ } }, { - "id": 21671, + "id": 22905, "properties": { "down": "false", "east": "false", @@ -212791,7 +221861,7 @@ } }, { - "id": 21672, + "id": 22906, "properties": { "down": "false", "east": "false", @@ -212803,7 +221873,7 @@ } }, { - "id": 21673, + "id": 22907, "properties": { "down": "false", "east": "false", @@ -212815,7 +221885,7 @@ } }, { - "id": 21674, + "id": 22908, "properties": { "down": "false", "east": "false", @@ -212827,7 +221897,7 @@ } }, { - "id": 21675, + "id": 22909, "properties": { "down": "false", "east": "false", @@ -212839,7 +221909,7 @@ } }, { - "id": 21676, + "id": 22910, "properties": { "down": "false", "east": "false", @@ -212851,7 +221921,7 @@ } }, { - "id": 21677, + "id": 22911, "properties": { "down": "false", "east": "false", @@ -212863,7 +221933,7 @@ } }, { - "id": 21678, + "id": 22912, "properties": { "down": "false", "east": "false", @@ -212875,7 +221945,7 @@ } }, { - "id": 21679, + "id": 22913, "properties": { "down": "false", "east": "false", @@ -212887,7 +221957,7 @@ } }, { - "id": 21680, + "id": 22914, "properties": { "down": "false", "east": "false", @@ -212899,7 +221969,7 @@ } }, { - "id": 21681, + "id": 22915, "properties": { "down": "false", "east": "false", @@ -212911,7 +221981,7 @@ } }, { - "id": 21682, + "id": 22916, "properties": { "down": "false", "east": "false", @@ -212923,7 +221993,7 @@ } }, { - "id": 21683, + "id": 22917, "properties": { "down": "false", "east": "false", @@ -212935,7 +222005,7 @@ } }, { - "id": 21684, + "id": 22918, "properties": { "down": "false", "east": "false", @@ -212947,7 +222017,7 @@ } }, { - "id": 21685, + "id": 22919, "properties": { "down": "false", "east": "false", @@ -212959,7 +222029,7 @@ } }, { - "id": 21686, + "id": 22920, "properties": { "down": "false", "east": "false", @@ -212971,7 +222041,7 @@ } }, { - "id": 21687, + "id": 22921, "properties": { "down": "false", "east": "false", @@ -212983,7 +222053,7 @@ } }, { - "id": 21688, + "id": 22922, "properties": { "down": "false", "east": "false", @@ -212995,7 +222065,7 @@ } }, { - "id": 21689, + "id": 22923, "properties": { "down": "false", "east": "false", @@ -213007,7 +222077,7 @@ } }, { - "id": 21690, + "id": 22924, "properties": { "down": "false", "east": "false", @@ -213019,7 +222089,7 @@ } }, { - "id": 21691, + "id": 22925, "properties": { "down": "false", "east": "false", @@ -213031,7 +222101,7 @@ } }, { - "id": 21692, + "id": 22926, "properties": { "down": "false", "east": "false", @@ -213044,7 +222114,7 @@ }, { "default": true, - "id": 21693, + "id": 22927, "properties": { "down": "false", "east": "false", @@ -213146,6 +222216,14 @@ } ] }, + "minecraft:short_grass": { + "states": [ + { + "default": true, + "id": 2005 + } + ] + }, "minecraft:shroomlight": { "states": [ { @@ -213661,7 +222739,7 @@ }, "states": [ { - "id": 22570, + "id": 24884, "properties": { "facing": "north", "half": "upper", @@ -213669,7 +222747,7 @@ } }, { - "id": 22571, + "id": 24885, "properties": { "facing": "north", "half": "upper", @@ -213677,7 +222755,7 @@ } }, { - "id": 22572, + "id": 24886, "properties": { "facing": "north", "half": "lower", @@ -213686,7 +222764,7 @@ }, { "default": true, - "id": 22573, + "id": 24887, "properties": { "facing": "north", "half": "lower", @@ -213694,7 +222772,7 @@ } }, { - "id": 22574, + "id": 24888, "properties": { "facing": "south", "half": "upper", @@ -213702,7 +222780,7 @@ } }, { - "id": 22575, + "id": 24889, "properties": { "facing": "south", "half": "upper", @@ -213710,7 +222788,7 @@ } }, { - "id": 22576, + "id": 24890, "properties": { "facing": "south", "half": "lower", @@ -213718,7 +222796,7 @@ } }, { - "id": 22577, + "id": 24891, "properties": { "facing": "south", "half": "lower", @@ -213726,7 +222804,7 @@ } }, { - "id": 22578, + "id": 24892, "properties": { "facing": "west", "half": "upper", @@ -213734,7 +222812,7 @@ } }, { - "id": 22579, + "id": 24893, "properties": { "facing": "west", "half": "upper", @@ -213742,7 +222820,7 @@ } }, { - "id": 22580, + "id": 24894, "properties": { "facing": "west", "half": "lower", @@ -213750,7 +222828,7 @@ } }, { - "id": 22581, + "id": 24895, "properties": { "facing": "west", "half": "lower", @@ -213758,7 +222836,7 @@ } }, { - "id": 22582, + "id": 24896, "properties": { "facing": "east", "half": "upper", @@ -213766,7 +222844,7 @@ } }, { - "id": 22583, + "id": 24897, "properties": { "facing": "east", "half": "upper", @@ -213774,7 +222852,7 @@ } }, { - "id": 22584, + "id": 24898, "properties": { "facing": "east", "half": "lower", @@ -213782,7 +222860,7 @@ } }, { - "id": 22585, + "id": 24899, "properties": { "facing": "east", "half": "lower", @@ -213876,7 +222954,7 @@ "states": [ { "default": true, - "id": 24243 + "id": 26557 } ] }, @@ -216859,7 +225937,7 @@ "states": [ { "default": true, - "id": 5851 + "id": 5850 } ] }, @@ -216867,7 +225945,7 @@ "states": [ { "default": true, - "id": 5852 + "id": 5851 } ] }, @@ -216875,7 +225953,7 @@ "states": [ { "default": true, - "id": 5859 + "id": 5858 } ] }, @@ -216891,25 +225969,25 @@ "states": [ { "default": true, - "id": 5860, + "id": 5859, "properties": { "facing": "north" } }, { - "id": 5861, + "id": 5860, "properties": { "facing": "south" } }, { - "id": 5862, + "id": 5861, "properties": { "facing": "west" } }, { - "id": 5863, + "id": 5862, "properties": { "facing": "east" } @@ -216936,7 +226014,7 @@ "states": [ { "default": true, - "id": 22509 + "id": 24823 } ] }, @@ -220446,7 +229524,7 @@ }, "states": [ { - "id": 6026, + "id": 6025, "properties": { "facing": "north", "half": "top", @@ -220456,7 +229534,7 @@ } }, { - "id": 6027, + "id": 6026, "properties": { "facing": "north", "half": "top", @@ -220465,6 +229543,16 @@ "waterlogged": "false" } }, + { + "id": 6027, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6028, "properties": { @@ -220472,7 +229560,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220480,9 +229568,9 @@ "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220492,7 +229580,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220501,8 +229589,8 @@ "facing": "north", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220512,17 +229600,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6033, "properties": { "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -220532,7 +229620,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220541,8 +229629,8 @@ "facing": "north", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220552,7 +229640,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220560,23 +229648,13 @@ "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6038, - "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6039, "properties": { "facing": "north", "half": "bottom", @@ -220586,7 +229664,7 @@ } }, { - "id": 6040, + "id": 6039, "properties": { "facing": "north", "half": "bottom", @@ -220597,7 +229675,7 @@ }, { "default": true, - "id": 6041, + "id": 6040, "properties": { "facing": "north", "half": "bottom", @@ -220607,7 +229685,7 @@ } }, { - "id": 6042, + "id": 6041, "properties": { "facing": "south", "half": "top", @@ -220617,7 +229695,7 @@ } }, { - "id": 6043, + "id": 6042, "properties": { "facing": "south", "half": "top", @@ -220626,6 +229704,16 @@ "waterlogged": "false" } }, + { + "id": 6043, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { "id": 6044, "properties": { @@ -220633,7 +229721,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220641,9 +229729,9 @@ "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220653,7 +229741,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220662,8 +229750,8 @@ "facing": "south", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220673,17 +229761,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6049, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -220693,7 +229781,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220702,8 +229790,8 @@ "facing": "south", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220713,7 +229801,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220721,9 +229809,9 @@ "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220733,7 +229821,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220742,8 +229830,8 @@ "facing": "south", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220753,17 +229841,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6057, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -220773,7 +229861,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220782,8 +229870,8 @@ "facing": "west", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220793,7 +229881,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220801,9 +229889,9 @@ "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220813,7 +229901,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220822,8 +229910,8 @@ "facing": "west", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220833,17 +229921,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6065, "properties": { "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -220853,7 +229941,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220862,8 +229950,8 @@ "facing": "west", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220873,7 +229961,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220881,9 +229969,9 @@ "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220893,7 +229981,7 @@ "half": "bottom", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220902,8 +229990,8 @@ "facing": "west", "half": "bottom", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220913,17 +230001,17 @@ "half": "bottom", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6073, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -220933,7 +230021,7 @@ "half": "top", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220942,8 +230030,8 @@ "facing": "east", "half": "top", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220953,7 +230041,7 @@ "half": "top", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220961,9 +230049,9 @@ "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { @@ -220973,7 +230061,7 @@ "half": "top", "open": "false", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -220982,8 +230070,8 @@ "facing": "east", "half": "top", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -220993,17 +230081,17 @@ "half": "top", "open": "false", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { "id": 6081, "properties": { "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { @@ -221013,7 +230101,7 @@ "half": "bottom", "open": "true", "powered": "true", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -221022,8 +230110,8 @@ "facing": "east", "half": "bottom", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false", + "waterlogged": "true" } }, { @@ -221033,7 +230121,7 @@ "half": "bottom", "open": "true", "powered": "false", - "waterlogged": "true" + "waterlogged": "false" } }, { @@ -221041,23 +230129,13 @@ "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { "id": 6086, - "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" - } - }, - { - "id": 6087, "properties": { "facing": "east", "half": "bottom", @@ -221067,7 +230145,7 @@ } }, { - "id": 6088, + "id": 6087, "properties": { "facing": "east", "half": "bottom", @@ -221077,7 +230155,7 @@ } }, { - "id": 6089, + "id": 6088, "properties": { "facing": "east", "half": "bottom", @@ -225784,7 +234862,7 @@ "states": [ { "default": true, - "id": 6538 + "id": 6537 } ] }, @@ -227977,7 +237055,7 @@ "states": [ { "default": true, - "id": 21083 + "id": 22317 } ] }, @@ -228257,6 +237335,57 @@ } ] }, + "minecraft:trial_spawner": { + "properties": { + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + }, + "states": [ + { + "default": true, + "id": 26638, + "properties": { + "trial_spawner_state": "inactive" + } + }, + { + "id": 26639, + "properties": { + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 26640, + "properties": { + "trial_spawner_state": "active" + } + }, + { + "id": 26641, + "properties": { + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 26642, + "properties": { + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 26643, + "properties": { + "trial_spawner_state": "cooldown" + } + } + ] + }, "minecraft:tripwire": { "properties": { "attached": [ @@ -230112,6 +239241,8824 @@ } ] }, + "minecraft:tuff_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21905, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21906, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21907, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21908, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21909, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21910, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_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": 21911, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21912, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21913, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21914, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21915, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21916, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21917, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21918, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21919, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21920, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21927, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21928, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21929, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21930, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21931, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21932, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21934, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21935, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21936, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21938, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21939, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21940, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21947, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21948, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21949, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21950, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21951, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21952, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21954, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21955, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21956, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21958, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21959, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21960, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21967, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21968, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21969, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21970, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21971, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21972, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21974, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21975, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21976, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21978, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21979, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21980, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21987, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21988, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21989, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21990, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_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": 21991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21993, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21998, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21999, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22000, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22001, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22002, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22005, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22010, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22011, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22012, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22013, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22014, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22017, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22022, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22023, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22024, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22025, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22026, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22029, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22035, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22036, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22037, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22038, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22041, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22046, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22047, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22048, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22049, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22050, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22053, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22058, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22059, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22060, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22061, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22062, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22065, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22070, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22071, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22072, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22073, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22074, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22077, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22097, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22098, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22101, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22106, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22107, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22108, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22109, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22110, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22113, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22118, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22119, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22120, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22121, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22122, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22125, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22130, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22131, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22132, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22133, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22134, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22137, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22142, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22143, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22144, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22145, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22146, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22149, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22154, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22155, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22156, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22157, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22158, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22161, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22166, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22167, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22168, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22169, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22170, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22173, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22178, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22179, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22180, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22181, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22182, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22185, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22205, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22206, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22209, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22214, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22215, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22216, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22217, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22218, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22221, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22241, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22242, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22245, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22250, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22251, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22252, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22253, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22254, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22257, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22277, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22278, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22281, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22286, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22287, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22288, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22289, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22290, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22310, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22311, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22312, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22313, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22314, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:tuff_bricks": { + "states": [ + { + "default": true, + "id": 21904 + } + ] + }, + "minecraft:tuff_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21082, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21083, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21084, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21085, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21086, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21087, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_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": 21088, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21089, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21090, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21091, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21092, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21093, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21094, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21095, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21096, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21097, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21102, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21103, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21104, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21105, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21106, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21107, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21108, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21109, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21110, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21111, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21112, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21113, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21114, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21129, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_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": 21168, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21169, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21170, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21171, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21172, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21173, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21174, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21175, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21176, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21177, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21178, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21179, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21180, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21181, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21182, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21183, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21184, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21185, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21186, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21187, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21188, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21189, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21190, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21191, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21192, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21193, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21194, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21195, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21196, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21197, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21198, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21199, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21200, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21201, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21202, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21203, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21208, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21209, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21210, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21211, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21212, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21213, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21214, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21215, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21220, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21221, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21222, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21223, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21224, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21225, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21226, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21227, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21232, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21233, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21234, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21235, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21236, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21237, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21238, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21239, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21240, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21241, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21242, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21243, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21244, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21245, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21246, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21247, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21248, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21249, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21250, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21251, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21252, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21253, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21254, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21255, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21256, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21257, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21258, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21259, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21260, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21261, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21262, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21263, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21264, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21265, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21266, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21267, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21268, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21269, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21270, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21271, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21272, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21273, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21274, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21275, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21276, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21277, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21278, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21279, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21280, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21281, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21282, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21283, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21284, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21285, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21286, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21287, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21288, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21289, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21290, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21291, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21292, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21293, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21294, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21295, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21296, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21297, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21298, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21299, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21300, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21301, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21302, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21303, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21304, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21305, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21306, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21307, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21308, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21309, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21310, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21311, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21312, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21313, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21314, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21315, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21316, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21317, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21318, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21319, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21320, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21321, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21322, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21323, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21324, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21325, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21326, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21327, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21328, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21329, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21330, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21331, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21332, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21333, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21334, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21335, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21336, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21337, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21338, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21339, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21340, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21341, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21342, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21343, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21344, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21345, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21346, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21347, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21348, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21349, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21350, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21351, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21352, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21353, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21354, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21355, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21356, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21357, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21358, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21359, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21360, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21361, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21362, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21363, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21364, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21365, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21366, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21367, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21368, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21369, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21370, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21371, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21372, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21373, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21374, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21375, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21376, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21377, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21378, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21379, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21380, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21381, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21382, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21383, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21384, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21385, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21386, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21387, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21388, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21389, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21390, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21391, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21392, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21393, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21394, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21395, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21396, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21397, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21398, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21399, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21400, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21401, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21402, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21403, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21404, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21405, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21406, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21407, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21408, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21409, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21410, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21411, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21412, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21413, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21414, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21415, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21416, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21417, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21418, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21419, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21420, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21421, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21422, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21423, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21424, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21425, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21426, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21427, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21428, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21429, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21430, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21431, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21432, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21433, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21434, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21435, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21436, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21437, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21438, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21439, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21440, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21441, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21442, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21443, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21444, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21445, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21446, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21447, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21448, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21449, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21450, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21451, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21452, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21453, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21454, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21455, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21456, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21457, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21458, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21459, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21460, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21461, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21462, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21463, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21464, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21465, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21466, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21467, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21468, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21469, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21470, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21471, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21472, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21473, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21474, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21475, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21476, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21477, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21478, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21479, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21480, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21481, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21482, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21483, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21484, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21485, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21486, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21487, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21488, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21489, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21490, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21491, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, "minecraft:turtle_egg": { "properties": { "eggs": [ @@ -230423,20 +248370,20 @@ }, "states": [ { - "id": 24252, + "id": 26566, "properties": { "axis": "x" } }, { "default": true, - "id": 24253, + "id": 26567, "properties": { "axis": "y" } }, { - "id": 24254, + "id": 26568, "properties": { "axis": "z" } @@ -235071,11 +253018,1423 @@ } ] }, + "minecraft:waxed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22955 + } + ] + }, "minecraft:waxed_copper_block": { "states": [ { "default": true, - "id": 22058 + "id": 23300 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24708, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24709, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24710, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24711, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23908, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23909, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23910, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23911, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23912, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23913, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23914, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23915, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23916, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23917, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23918, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23919, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23920, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23921, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23922, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23923, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23924, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23925, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23926, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23927, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23928, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23929, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23930, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23931, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23932, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23933, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23934, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23935, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23936, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23937, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23938, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23939, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23940, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23941, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23942, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23943, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23944, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23945, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23946, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23947, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23948, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23949, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23950, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23951, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23952, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23953, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23954, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23955, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23956, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23957, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23958, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23959, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23960, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23961, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23962, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23963, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23964, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23965, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23966, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23967, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23968, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23969, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23970, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23971, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24684, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24685, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24420, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24421, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24422, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24423, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24424, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24425, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24426, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24427, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24428, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24429, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24430, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24431, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24432, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24433, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24434, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24435, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24436, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24437, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24438, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24439, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24440, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24441, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24442, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24443, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24444, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24445, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24446, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24447, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24448, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24449, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24450, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24451, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24452, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24453, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24454, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24455, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24456, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24457, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24458, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24459, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24460, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24461, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24462, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24463, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24464, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24465, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24466, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24467, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24468, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24469, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24470, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24471, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24472, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24473, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24474, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24475, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24476, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24477, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24478, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24479, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24480, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24481, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24482, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24483, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -235083,7 +254442,7 @@ "states": [ { "default": true, - "id": 22065 + "id": 23307 } ] }, @@ -235101,21 +254460,21 @@ }, "states": [ { - "id": 22404, + "id": 23646, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22405, + "id": 23647, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22406, + "id": 23648, "properties": { "type": "bottom", "waterlogged": "true" @@ -235123,21 +254482,21 @@ }, { "default": true, - "id": 22407, + "id": 23649, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22408, + "id": 23650, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22409, + "id": 23651, "properties": { "type": "double", "waterlogged": "false" @@ -235171,7 +254530,7 @@ }, "states": [ { - "id": 22306, + "id": 23548, "properties": { "facing": "north", "half": "top", @@ -235180,7 +254539,7 @@ } }, { - "id": 22307, + "id": 23549, "properties": { "facing": "north", "half": "top", @@ -235189,7 +254548,7 @@ } }, { - "id": 22308, + "id": 23550, "properties": { "facing": "north", "half": "top", @@ -235198,7 +254557,7 @@ } }, { - "id": 22309, + "id": 23551, "properties": { "facing": "north", "half": "top", @@ -235207,7 +254566,7 @@ } }, { - "id": 22310, + "id": 23552, "properties": { "facing": "north", "half": "top", @@ -235216,7 +254575,7 @@ } }, { - "id": 22311, + "id": 23553, "properties": { "facing": "north", "half": "top", @@ -235225,7 +254584,7 @@ } }, { - "id": 22312, + "id": 23554, "properties": { "facing": "north", "half": "top", @@ -235234,7 +254593,7 @@ } }, { - "id": 22313, + "id": 23555, "properties": { "facing": "north", "half": "top", @@ -235243,7 +254602,7 @@ } }, { - "id": 22314, + "id": 23556, "properties": { "facing": "north", "half": "top", @@ -235252,7 +254611,7 @@ } }, { - "id": 22315, + "id": 23557, "properties": { "facing": "north", "half": "top", @@ -235261,7 +254620,7 @@ } }, { - "id": 22316, + "id": 23558, "properties": { "facing": "north", "half": "bottom", @@ -235271,7 +254630,7 @@ }, { "default": true, - "id": 22317, + "id": 23559, "properties": { "facing": "north", "half": "bottom", @@ -235280,7 +254639,7 @@ } }, { - "id": 22318, + "id": 23560, "properties": { "facing": "north", "half": "bottom", @@ -235289,7 +254648,7 @@ } }, { - "id": 22319, + "id": 23561, "properties": { "facing": "north", "half": "bottom", @@ -235298,7 +254657,7 @@ } }, { - "id": 22320, + "id": 23562, "properties": { "facing": "north", "half": "bottom", @@ -235307,7 +254666,7 @@ } }, { - "id": 22321, + "id": 23563, "properties": { "facing": "north", "half": "bottom", @@ -235316,7 +254675,7 @@ } }, { - "id": 22322, + "id": 23564, "properties": { "facing": "north", "half": "bottom", @@ -235325,7 +254684,7 @@ } }, { - "id": 22323, + "id": 23565, "properties": { "facing": "north", "half": "bottom", @@ -235334,7 +254693,7 @@ } }, { - "id": 22324, + "id": 23566, "properties": { "facing": "north", "half": "bottom", @@ -235343,7 +254702,7 @@ } }, { - "id": 22325, + "id": 23567, "properties": { "facing": "north", "half": "bottom", @@ -235352,7 +254711,7 @@ } }, { - "id": 22326, + "id": 23568, "properties": { "facing": "south", "half": "top", @@ -235361,7 +254720,7 @@ } }, { - "id": 22327, + "id": 23569, "properties": { "facing": "south", "half": "top", @@ -235370,7 +254729,7 @@ } }, { - "id": 22328, + "id": 23570, "properties": { "facing": "south", "half": "top", @@ -235379,7 +254738,7 @@ } }, { - "id": 22329, + "id": 23571, "properties": { "facing": "south", "half": "top", @@ -235388,7 +254747,7 @@ } }, { - "id": 22330, + "id": 23572, "properties": { "facing": "south", "half": "top", @@ -235397,7 +254756,7 @@ } }, { - "id": 22331, + "id": 23573, "properties": { "facing": "south", "half": "top", @@ -235406,7 +254765,7 @@ } }, { - "id": 22332, + "id": 23574, "properties": { "facing": "south", "half": "top", @@ -235415,7 +254774,7 @@ } }, { - "id": 22333, + "id": 23575, "properties": { "facing": "south", "half": "top", @@ -235424,7 +254783,7 @@ } }, { - "id": 22334, + "id": 23576, "properties": { "facing": "south", "half": "top", @@ -235433,7 +254792,7 @@ } }, { - "id": 22335, + "id": 23577, "properties": { "facing": "south", "half": "top", @@ -235442,7 +254801,7 @@ } }, { - "id": 22336, + "id": 23578, "properties": { "facing": "south", "half": "bottom", @@ -235451,7 +254810,7 @@ } }, { - "id": 22337, + "id": 23579, "properties": { "facing": "south", "half": "bottom", @@ -235460,7 +254819,7 @@ } }, { - "id": 22338, + "id": 23580, "properties": { "facing": "south", "half": "bottom", @@ -235469,7 +254828,7 @@ } }, { - "id": 22339, + "id": 23581, "properties": { "facing": "south", "half": "bottom", @@ -235478,7 +254837,7 @@ } }, { - "id": 22340, + "id": 23582, "properties": { "facing": "south", "half": "bottom", @@ -235487,7 +254846,7 @@ } }, { - "id": 22341, + "id": 23583, "properties": { "facing": "south", "half": "bottom", @@ -235496,7 +254855,7 @@ } }, { - "id": 22342, + "id": 23584, "properties": { "facing": "south", "half": "bottom", @@ -235505,7 +254864,7 @@ } }, { - "id": 22343, + "id": 23585, "properties": { "facing": "south", "half": "bottom", @@ -235514,7 +254873,7 @@ } }, { - "id": 22344, + "id": 23586, "properties": { "facing": "south", "half": "bottom", @@ -235523,7 +254882,7 @@ } }, { - "id": 22345, + "id": 23587, "properties": { "facing": "south", "half": "bottom", @@ -235532,7 +254891,7 @@ } }, { - "id": 22346, + "id": 23588, "properties": { "facing": "west", "half": "top", @@ -235541,7 +254900,7 @@ } }, { - "id": 22347, + "id": 23589, "properties": { "facing": "west", "half": "top", @@ -235550,7 +254909,7 @@ } }, { - "id": 22348, + "id": 23590, "properties": { "facing": "west", "half": "top", @@ -235559,7 +254918,7 @@ } }, { - "id": 22349, + "id": 23591, "properties": { "facing": "west", "half": "top", @@ -235568,7 +254927,7 @@ } }, { - "id": 22350, + "id": 23592, "properties": { "facing": "west", "half": "top", @@ -235577,7 +254936,7 @@ } }, { - "id": 22351, + "id": 23593, "properties": { "facing": "west", "half": "top", @@ -235586,7 +254945,7 @@ } }, { - "id": 22352, + "id": 23594, "properties": { "facing": "west", "half": "top", @@ -235595,7 +254954,7 @@ } }, { - "id": 22353, + "id": 23595, "properties": { "facing": "west", "half": "top", @@ -235604,7 +254963,7 @@ } }, { - "id": 22354, + "id": 23596, "properties": { "facing": "west", "half": "top", @@ -235613,7 +254972,7 @@ } }, { - "id": 22355, + "id": 23597, "properties": { "facing": "west", "half": "top", @@ -235622,7 +254981,7 @@ } }, { - "id": 22356, + "id": 23598, "properties": { "facing": "west", "half": "bottom", @@ -235631,7 +254990,7 @@ } }, { - "id": 22357, + "id": 23599, "properties": { "facing": "west", "half": "bottom", @@ -235640,7 +254999,7 @@ } }, { - "id": 22358, + "id": 23600, "properties": { "facing": "west", "half": "bottom", @@ -235649,7 +255008,7 @@ } }, { - "id": 22359, + "id": 23601, "properties": { "facing": "west", "half": "bottom", @@ -235658,7 +255017,7 @@ } }, { - "id": 22360, + "id": 23602, "properties": { "facing": "west", "half": "bottom", @@ -235667,7 +255026,7 @@ } }, { - "id": 22361, + "id": 23603, "properties": { "facing": "west", "half": "bottom", @@ -235676,7 +255035,7 @@ } }, { - "id": 22362, + "id": 23604, "properties": { "facing": "west", "half": "bottom", @@ -235685,7 +255044,7 @@ } }, { - "id": 22363, + "id": 23605, "properties": { "facing": "west", "half": "bottom", @@ -235694,7 +255053,7 @@ } }, { - "id": 22364, + "id": 23606, "properties": { "facing": "west", "half": "bottom", @@ -235703,7 +255062,7 @@ } }, { - "id": 22365, + "id": 23607, "properties": { "facing": "west", "half": "bottom", @@ -235712,7 +255071,7 @@ } }, { - "id": 22366, + "id": 23608, "properties": { "facing": "east", "half": "top", @@ -235721,7 +255080,7 @@ } }, { - "id": 22367, + "id": 23609, "properties": { "facing": "east", "half": "top", @@ -235730,7 +255089,7 @@ } }, { - "id": 22368, + "id": 23610, "properties": { "facing": "east", "half": "top", @@ -235739,7 +255098,7 @@ } }, { - "id": 22369, + "id": 23611, "properties": { "facing": "east", "half": "top", @@ -235748,7 +255107,7 @@ } }, { - "id": 22370, + "id": 23612, "properties": { "facing": "east", "half": "top", @@ -235757,7 +255116,7 @@ } }, { - "id": 22371, + "id": 23613, "properties": { "facing": "east", "half": "top", @@ -235766,7 +255125,7 @@ } }, { - "id": 22372, + "id": 23614, "properties": { "facing": "east", "half": "top", @@ -235775,7 +255134,7 @@ } }, { - "id": 22373, + "id": 23615, "properties": { "facing": "east", "half": "top", @@ -235784,7 +255143,7 @@ } }, { - "id": 22374, + "id": 23616, "properties": { "facing": "east", "half": "top", @@ -235793,7 +255152,7 @@ } }, { - "id": 22375, + "id": 23617, "properties": { "facing": "east", "half": "top", @@ -235802,7 +255161,7 @@ } }, { - "id": 22376, + "id": 23618, "properties": { "facing": "east", "half": "bottom", @@ -235811,7 +255170,7 @@ } }, { - "id": 22377, + "id": 23619, "properties": { "facing": "east", "half": "bottom", @@ -235820,7 +255179,7 @@ } }, { - "id": 22378, + "id": 23620, "properties": { "facing": "east", "half": "bottom", @@ -235829,7 +255188,7 @@ } }, { - "id": 22379, + "id": 23621, "properties": { "facing": "east", "half": "bottom", @@ -235838,7 +255197,7 @@ } }, { - "id": 22380, + "id": 23622, "properties": { "facing": "east", "half": "bottom", @@ -235847,7 +255206,7 @@ } }, { - "id": 22381, + "id": 23623, "properties": { "facing": "east", "half": "bottom", @@ -235856,7 +255215,7 @@ } }, { - "id": 22382, + "id": 23624, "properties": { "facing": "east", "half": "bottom", @@ -235865,7 +255224,7 @@ } }, { - "id": 22383, + "id": 23625, "properties": { "facing": "east", "half": "bottom", @@ -235874,7 +255233,7 @@ } }, { - "id": 22384, + "id": 23626, "properties": { "facing": "east", "half": "bottom", @@ -235883,7 +255242,7 @@ } }, { - "id": 22385, + "id": 23627, "properties": { "facing": "east", "half": "bottom", @@ -235893,11 +255252,1423 @@ } ] }, + "minecraft:waxed_exposed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22954 + } + ] + }, "minecraft:waxed_exposed_copper": { "states": [ { "default": true, - "id": 22060 + "id": 23302 + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24712, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24713, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24714, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24715, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23972, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23973, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23974, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23975, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23976, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23977, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23978, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23979, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23980, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23981, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23982, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23983, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23984, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23985, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23986, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23987, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23988, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23989, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23990, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23991, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23992, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23993, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23994, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23995, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23996, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23997, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23998, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23999, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24000, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24001, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24002, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24003, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24004, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24005, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24006, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24007, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24008, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24009, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24010, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24011, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24012, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24013, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24014, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24015, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24016, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24017, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24018, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24019, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24020, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24021, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24022, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24023, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24024, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24025, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24026, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24027, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24028, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24029, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24030, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24031, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24032, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24033, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24034, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24035, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24686, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24687, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24484, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24485, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24486, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24487, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24488, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24489, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24490, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24491, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24492, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24493, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24494, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24495, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24496, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24497, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24498, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24499, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24500, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24501, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24502, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24503, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24504, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24505, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24506, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24507, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24508, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24509, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24510, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24511, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24512, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24513, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24514, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24515, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24516, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24517, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24518, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24519, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24520, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24521, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24522, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24523, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24524, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24525, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24526, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24527, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24528, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24529, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24530, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24531, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24532, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24533, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24534, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24535, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24536, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24537, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24538, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24539, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24540, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24541, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24542, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24543, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24544, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24545, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24546, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24547, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -235905,7 +256676,7 @@ "states": [ { "default": true, - "id": 22064 + "id": 23306 } ] }, @@ -235923,21 +256694,21 @@ }, "states": [ { - "id": 22398, + "id": 23640, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22399, + "id": 23641, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22400, + "id": 23642, "properties": { "type": "bottom", "waterlogged": "true" @@ -235945,21 +256716,21 @@ }, { "default": true, - "id": 22401, + "id": 23643, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22402, + "id": 23644, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22403, + "id": 23645, "properties": { "type": "double", "waterlogged": "false" @@ -235993,7 +256764,7 @@ }, "states": [ { - "id": 22226, + "id": 23468, "properties": { "facing": "north", "half": "top", @@ -236002,7 +256773,7 @@ } }, { - "id": 22227, + "id": 23469, "properties": { "facing": "north", "half": "top", @@ -236011,7 +256782,7 @@ } }, { - "id": 22228, + "id": 23470, "properties": { "facing": "north", "half": "top", @@ -236020,7 +256791,7 @@ } }, { - "id": 22229, + "id": 23471, "properties": { "facing": "north", "half": "top", @@ -236029,7 +256800,7 @@ } }, { - "id": 22230, + "id": 23472, "properties": { "facing": "north", "half": "top", @@ -236038,7 +256809,7 @@ } }, { - "id": 22231, + "id": 23473, "properties": { "facing": "north", "half": "top", @@ -236047,7 +256818,7 @@ } }, { - "id": 22232, + "id": 23474, "properties": { "facing": "north", "half": "top", @@ -236056,7 +256827,7 @@ } }, { - "id": 22233, + "id": 23475, "properties": { "facing": "north", "half": "top", @@ -236065,7 +256836,7 @@ } }, { - "id": 22234, + "id": 23476, "properties": { "facing": "north", "half": "top", @@ -236074,7 +256845,7 @@ } }, { - "id": 22235, + "id": 23477, "properties": { "facing": "north", "half": "top", @@ -236083,7 +256854,7 @@ } }, { - "id": 22236, + "id": 23478, "properties": { "facing": "north", "half": "bottom", @@ -236093,7 +256864,7 @@ }, { "default": true, - "id": 22237, + "id": 23479, "properties": { "facing": "north", "half": "bottom", @@ -236102,7 +256873,7 @@ } }, { - "id": 22238, + "id": 23480, "properties": { "facing": "north", "half": "bottom", @@ -236111,7 +256882,7 @@ } }, { - "id": 22239, + "id": 23481, "properties": { "facing": "north", "half": "bottom", @@ -236120,7 +256891,7 @@ } }, { - "id": 22240, + "id": 23482, "properties": { "facing": "north", "half": "bottom", @@ -236129,7 +256900,7 @@ } }, { - "id": 22241, + "id": 23483, "properties": { "facing": "north", "half": "bottom", @@ -236138,7 +256909,7 @@ } }, { - "id": 22242, + "id": 23484, "properties": { "facing": "north", "half": "bottom", @@ -236147,7 +256918,7 @@ } }, { - "id": 22243, + "id": 23485, "properties": { "facing": "north", "half": "bottom", @@ -236156,7 +256927,7 @@ } }, { - "id": 22244, + "id": 23486, "properties": { "facing": "north", "half": "bottom", @@ -236165,7 +256936,7 @@ } }, { - "id": 22245, + "id": 23487, "properties": { "facing": "north", "half": "bottom", @@ -236174,7 +256945,7 @@ } }, { - "id": 22246, + "id": 23488, "properties": { "facing": "south", "half": "top", @@ -236183,7 +256954,7 @@ } }, { - "id": 22247, + "id": 23489, "properties": { "facing": "south", "half": "top", @@ -236192,7 +256963,7 @@ } }, { - "id": 22248, + "id": 23490, "properties": { "facing": "south", "half": "top", @@ -236201,7 +256972,7 @@ } }, { - "id": 22249, + "id": 23491, "properties": { "facing": "south", "half": "top", @@ -236210,7 +256981,7 @@ } }, { - "id": 22250, + "id": 23492, "properties": { "facing": "south", "half": "top", @@ -236219,7 +256990,7 @@ } }, { - "id": 22251, + "id": 23493, "properties": { "facing": "south", "half": "top", @@ -236228,7 +256999,7 @@ } }, { - "id": 22252, + "id": 23494, "properties": { "facing": "south", "half": "top", @@ -236237,7 +257008,7 @@ } }, { - "id": 22253, + "id": 23495, "properties": { "facing": "south", "half": "top", @@ -236246,7 +257017,7 @@ } }, { - "id": 22254, + "id": 23496, "properties": { "facing": "south", "half": "top", @@ -236255,7 +257026,7 @@ } }, { - "id": 22255, + "id": 23497, "properties": { "facing": "south", "half": "top", @@ -236264,7 +257035,7 @@ } }, { - "id": 22256, + "id": 23498, "properties": { "facing": "south", "half": "bottom", @@ -236273,7 +257044,7 @@ } }, { - "id": 22257, + "id": 23499, "properties": { "facing": "south", "half": "bottom", @@ -236282,7 +257053,7 @@ } }, { - "id": 22258, + "id": 23500, "properties": { "facing": "south", "half": "bottom", @@ -236291,7 +257062,7 @@ } }, { - "id": 22259, + "id": 23501, "properties": { "facing": "south", "half": "bottom", @@ -236300,7 +257071,7 @@ } }, { - "id": 22260, + "id": 23502, "properties": { "facing": "south", "half": "bottom", @@ -236309,7 +257080,7 @@ } }, { - "id": 22261, + "id": 23503, "properties": { "facing": "south", "half": "bottom", @@ -236318,7 +257089,7 @@ } }, { - "id": 22262, + "id": 23504, "properties": { "facing": "south", "half": "bottom", @@ -236327,7 +257098,7 @@ } }, { - "id": 22263, + "id": 23505, "properties": { "facing": "south", "half": "bottom", @@ -236336,7 +257107,7 @@ } }, { - "id": 22264, + "id": 23506, "properties": { "facing": "south", "half": "bottom", @@ -236345,7 +257116,7 @@ } }, { - "id": 22265, + "id": 23507, "properties": { "facing": "south", "half": "bottom", @@ -236354,7 +257125,7 @@ } }, { - "id": 22266, + "id": 23508, "properties": { "facing": "west", "half": "top", @@ -236363,7 +257134,7 @@ } }, { - "id": 22267, + "id": 23509, "properties": { "facing": "west", "half": "top", @@ -236372,7 +257143,7 @@ } }, { - "id": 22268, + "id": 23510, "properties": { "facing": "west", "half": "top", @@ -236381,7 +257152,7 @@ } }, { - "id": 22269, + "id": 23511, "properties": { "facing": "west", "half": "top", @@ -236390,7 +257161,7 @@ } }, { - "id": 22270, + "id": 23512, "properties": { "facing": "west", "half": "top", @@ -236399,7 +257170,7 @@ } }, { - "id": 22271, + "id": 23513, "properties": { "facing": "west", "half": "top", @@ -236408,7 +257179,7 @@ } }, { - "id": 22272, + "id": 23514, "properties": { "facing": "west", "half": "top", @@ -236417,7 +257188,7 @@ } }, { - "id": 22273, + "id": 23515, "properties": { "facing": "west", "half": "top", @@ -236426,7 +257197,7 @@ } }, { - "id": 22274, + "id": 23516, "properties": { "facing": "west", "half": "top", @@ -236435,7 +257206,7 @@ } }, { - "id": 22275, + "id": 23517, "properties": { "facing": "west", "half": "top", @@ -236444,7 +257215,7 @@ } }, { - "id": 22276, + "id": 23518, "properties": { "facing": "west", "half": "bottom", @@ -236453,7 +257224,7 @@ } }, { - "id": 22277, + "id": 23519, "properties": { "facing": "west", "half": "bottom", @@ -236462,7 +257233,7 @@ } }, { - "id": 22278, + "id": 23520, "properties": { "facing": "west", "half": "bottom", @@ -236471,7 +257242,7 @@ } }, { - "id": 22279, + "id": 23521, "properties": { "facing": "west", "half": "bottom", @@ -236480,7 +257251,7 @@ } }, { - "id": 22280, + "id": 23522, "properties": { "facing": "west", "half": "bottom", @@ -236489,7 +257260,7 @@ } }, { - "id": 22281, + "id": 23523, "properties": { "facing": "west", "half": "bottom", @@ -236498,7 +257269,7 @@ } }, { - "id": 22282, + "id": 23524, "properties": { "facing": "west", "half": "bottom", @@ -236507,7 +257278,7 @@ } }, { - "id": 22283, + "id": 23525, "properties": { "facing": "west", "half": "bottom", @@ -236516,7 +257287,7 @@ } }, { - "id": 22284, + "id": 23526, "properties": { "facing": "west", "half": "bottom", @@ -236525,7 +257296,7 @@ } }, { - "id": 22285, + "id": 23527, "properties": { "facing": "west", "half": "bottom", @@ -236534,7 +257305,7 @@ } }, { - "id": 22286, + "id": 23528, "properties": { "facing": "east", "half": "top", @@ -236543,7 +257314,7 @@ } }, { - "id": 22287, + "id": 23529, "properties": { "facing": "east", "half": "top", @@ -236552,7 +257323,7 @@ } }, { - "id": 22288, + "id": 23530, "properties": { "facing": "east", "half": "top", @@ -236561,7 +257332,7 @@ } }, { - "id": 22289, + "id": 23531, "properties": { "facing": "east", "half": "top", @@ -236570,7 +257341,7 @@ } }, { - "id": 22290, + "id": 23532, "properties": { "facing": "east", "half": "top", @@ -236579,7 +257350,7 @@ } }, { - "id": 22291, + "id": 23533, "properties": { "facing": "east", "half": "top", @@ -236588,7 +257359,7 @@ } }, { - "id": 22292, + "id": 23534, "properties": { "facing": "east", "half": "top", @@ -236597,7 +257368,7 @@ } }, { - "id": 22293, + "id": 23535, "properties": { "facing": "east", "half": "top", @@ -236606,7 +257377,7 @@ } }, { - "id": 22294, + "id": 23536, "properties": { "facing": "east", "half": "top", @@ -236615,7 +257386,7 @@ } }, { - "id": 22295, + "id": 23537, "properties": { "facing": "east", "half": "top", @@ -236624,7 +257395,7 @@ } }, { - "id": 22296, + "id": 23538, "properties": { "facing": "east", "half": "bottom", @@ -236633,7 +257404,7 @@ } }, { - "id": 22297, + "id": 23539, "properties": { "facing": "east", "half": "bottom", @@ -236642,7 +257413,7 @@ } }, { - "id": 22298, + "id": 23540, "properties": { "facing": "east", "half": "bottom", @@ -236651,7 +257422,7 @@ } }, { - "id": 22299, + "id": 23541, "properties": { "facing": "east", "half": "bottom", @@ -236660,7 +257431,7 @@ } }, { - "id": 22300, + "id": 23542, "properties": { "facing": "east", "half": "bottom", @@ -236669,7 +257440,7 @@ } }, { - "id": 22301, + "id": 23543, "properties": { "facing": "east", "half": "bottom", @@ -236678,7 +257449,7 @@ } }, { - "id": 22302, + "id": 23544, "properties": { "facing": "east", "half": "bottom", @@ -236687,7 +257458,7 @@ } }, { - "id": 22303, + "id": 23545, "properties": { "facing": "east", "half": "bottom", @@ -236696,7 +257467,7 @@ } }, { - "id": 22304, + "id": 23546, "properties": { "facing": "east", "half": "bottom", @@ -236705,7 +257476,7 @@ } }, { - "id": 22305, + "id": 23547, "properties": { "facing": "east", "half": "bottom", @@ -236715,11 +257486,1423 @@ } ] }, + "minecraft:waxed_oxidized_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22952 + } + ] + }, "minecraft:waxed_oxidized_copper": { "states": [ { "default": true, - "id": 22061 + "id": 23303 + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24720, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24721, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24722, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24723, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24036, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24037, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24038, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24039, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24040, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24041, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24042, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24043, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24044, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24045, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24046, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24047, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24048, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24049, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24050, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24051, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24052, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24053, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24054, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24055, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24056, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24057, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24058, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24059, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24060, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24061, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24062, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24063, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24064, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24065, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24066, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24067, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24068, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24069, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24070, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24071, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24072, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24073, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24074, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24075, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24076, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24077, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24078, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24079, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24080, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24081, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24082, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24083, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24084, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24085, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24086, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24087, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24088, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24089, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24090, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24091, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24092, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24093, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24094, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24095, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24096, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24097, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24098, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24099, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24690, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24691, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24548, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24549, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24550, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24551, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24552, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24553, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24554, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24555, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24556, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24557, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24558, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24559, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24560, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24561, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24562, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24563, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24564, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24565, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24566, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24567, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24568, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24569, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24570, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24571, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24572, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24573, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24574, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24575, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24576, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24577, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24578, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24579, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24580, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24581, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24582, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24583, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24584, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24585, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24586, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24587, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24588, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24589, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24590, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24591, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24592, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24593, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24594, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24595, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24596, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24597, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24598, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24599, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24600, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24601, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24602, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24603, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24604, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24605, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24606, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24607, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24608, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24609, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24610, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24611, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -236727,7 +258910,7 @@ "states": [ { "default": true, - "id": 22062 + "id": 23304 } ] }, @@ -236745,21 +258928,21 @@ }, "states": [ { - "id": 22386, + "id": 23628, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22387, + "id": 23629, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22388, + "id": 23630, "properties": { "type": "bottom", "waterlogged": "true" @@ -236767,21 +258950,21 @@ }, { "default": true, - "id": 22389, + "id": 23631, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22390, + "id": 23632, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22391, + "id": 23633, "properties": { "type": "double", "waterlogged": "false" @@ -236815,7 +258998,7 @@ }, "states": [ { - "id": 22066, + "id": 23308, "properties": { "facing": "north", "half": "top", @@ -236824,7 +259007,7 @@ } }, { - "id": 22067, + "id": 23309, "properties": { "facing": "north", "half": "top", @@ -236833,7 +259016,7 @@ } }, { - "id": 22068, + "id": 23310, "properties": { "facing": "north", "half": "top", @@ -236842,7 +259025,7 @@ } }, { - "id": 22069, + "id": 23311, "properties": { "facing": "north", "half": "top", @@ -236851,7 +259034,7 @@ } }, { - "id": 22070, + "id": 23312, "properties": { "facing": "north", "half": "top", @@ -236860,7 +259043,7 @@ } }, { - "id": 22071, + "id": 23313, "properties": { "facing": "north", "half": "top", @@ -236869,7 +259052,7 @@ } }, { - "id": 22072, + "id": 23314, "properties": { "facing": "north", "half": "top", @@ -236878,7 +259061,7 @@ } }, { - "id": 22073, + "id": 23315, "properties": { "facing": "north", "half": "top", @@ -236887,7 +259070,7 @@ } }, { - "id": 22074, + "id": 23316, "properties": { "facing": "north", "half": "top", @@ -236896,7 +259079,7 @@ } }, { - "id": 22075, + "id": 23317, "properties": { "facing": "north", "half": "top", @@ -236905,7 +259088,7 @@ } }, { - "id": 22076, + "id": 23318, "properties": { "facing": "north", "half": "bottom", @@ -236915,7 +259098,7 @@ }, { "default": true, - "id": 22077, + "id": 23319, "properties": { "facing": "north", "half": "bottom", @@ -236924,7 +259107,7 @@ } }, { - "id": 22078, + "id": 23320, "properties": { "facing": "north", "half": "bottom", @@ -236933,7 +259116,7 @@ } }, { - "id": 22079, + "id": 23321, "properties": { "facing": "north", "half": "bottom", @@ -236942,7 +259125,7 @@ } }, { - "id": 22080, + "id": 23322, "properties": { "facing": "north", "half": "bottom", @@ -236951,7 +259134,7 @@ } }, { - "id": 22081, + "id": 23323, "properties": { "facing": "north", "half": "bottom", @@ -236960,7 +259143,7 @@ } }, { - "id": 22082, + "id": 23324, "properties": { "facing": "north", "half": "bottom", @@ -236969,7 +259152,7 @@ } }, { - "id": 22083, + "id": 23325, "properties": { "facing": "north", "half": "bottom", @@ -236978,7 +259161,7 @@ } }, { - "id": 22084, + "id": 23326, "properties": { "facing": "north", "half": "bottom", @@ -236987,7 +259170,7 @@ } }, { - "id": 22085, + "id": 23327, "properties": { "facing": "north", "half": "bottom", @@ -236996,7 +259179,7 @@ } }, { - "id": 22086, + "id": 23328, "properties": { "facing": "south", "half": "top", @@ -237005,7 +259188,7 @@ } }, { - "id": 22087, + "id": 23329, "properties": { "facing": "south", "half": "top", @@ -237014,7 +259197,7 @@ } }, { - "id": 22088, + "id": 23330, "properties": { "facing": "south", "half": "top", @@ -237023,7 +259206,7 @@ } }, { - "id": 22089, + "id": 23331, "properties": { "facing": "south", "half": "top", @@ -237032,7 +259215,7 @@ } }, { - "id": 22090, + "id": 23332, "properties": { "facing": "south", "half": "top", @@ -237041,7 +259224,7 @@ } }, { - "id": 22091, + "id": 23333, "properties": { "facing": "south", "half": "top", @@ -237050,7 +259233,7 @@ } }, { - "id": 22092, + "id": 23334, "properties": { "facing": "south", "half": "top", @@ -237059,7 +259242,7 @@ } }, { - "id": 22093, + "id": 23335, "properties": { "facing": "south", "half": "top", @@ -237068,7 +259251,7 @@ } }, { - "id": 22094, + "id": 23336, "properties": { "facing": "south", "half": "top", @@ -237077,7 +259260,7 @@ } }, { - "id": 22095, + "id": 23337, "properties": { "facing": "south", "half": "top", @@ -237086,7 +259269,7 @@ } }, { - "id": 22096, + "id": 23338, "properties": { "facing": "south", "half": "bottom", @@ -237095,7 +259278,7 @@ } }, { - "id": 22097, + "id": 23339, "properties": { "facing": "south", "half": "bottom", @@ -237104,7 +259287,7 @@ } }, { - "id": 22098, + "id": 23340, "properties": { "facing": "south", "half": "bottom", @@ -237113,7 +259296,7 @@ } }, { - "id": 22099, + "id": 23341, "properties": { "facing": "south", "half": "bottom", @@ -237122,7 +259305,7 @@ } }, { - "id": 22100, + "id": 23342, "properties": { "facing": "south", "half": "bottom", @@ -237131,7 +259314,7 @@ } }, { - "id": 22101, + "id": 23343, "properties": { "facing": "south", "half": "bottom", @@ -237140,7 +259323,7 @@ } }, { - "id": 22102, + "id": 23344, "properties": { "facing": "south", "half": "bottom", @@ -237149,7 +259332,7 @@ } }, { - "id": 22103, + "id": 23345, "properties": { "facing": "south", "half": "bottom", @@ -237158,7 +259341,7 @@ } }, { - "id": 22104, + "id": 23346, "properties": { "facing": "south", "half": "bottom", @@ -237167,7 +259350,7 @@ } }, { - "id": 22105, + "id": 23347, "properties": { "facing": "south", "half": "bottom", @@ -237176,7 +259359,7 @@ } }, { - "id": 22106, + "id": 23348, "properties": { "facing": "west", "half": "top", @@ -237185,7 +259368,7 @@ } }, { - "id": 22107, + "id": 23349, "properties": { "facing": "west", "half": "top", @@ -237194,7 +259377,7 @@ } }, { - "id": 22108, + "id": 23350, "properties": { "facing": "west", "half": "top", @@ -237203,7 +259386,7 @@ } }, { - "id": 22109, + "id": 23351, "properties": { "facing": "west", "half": "top", @@ -237212,7 +259395,7 @@ } }, { - "id": 22110, + "id": 23352, "properties": { "facing": "west", "half": "top", @@ -237221,7 +259404,7 @@ } }, { - "id": 22111, + "id": 23353, "properties": { "facing": "west", "half": "top", @@ -237230,7 +259413,7 @@ } }, { - "id": 22112, + "id": 23354, "properties": { "facing": "west", "half": "top", @@ -237239,7 +259422,7 @@ } }, { - "id": 22113, + "id": 23355, "properties": { "facing": "west", "half": "top", @@ -237248,7 +259431,7 @@ } }, { - "id": 22114, + "id": 23356, "properties": { "facing": "west", "half": "top", @@ -237257,7 +259440,7 @@ } }, { - "id": 22115, + "id": 23357, "properties": { "facing": "west", "half": "top", @@ -237266,7 +259449,7 @@ } }, { - "id": 22116, + "id": 23358, "properties": { "facing": "west", "half": "bottom", @@ -237275,7 +259458,7 @@ } }, { - "id": 22117, + "id": 23359, "properties": { "facing": "west", "half": "bottom", @@ -237284,7 +259467,7 @@ } }, { - "id": 22118, + "id": 23360, "properties": { "facing": "west", "half": "bottom", @@ -237293,7 +259476,7 @@ } }, { - "id": 22119, + "id": 23361, "properties": { "facing": "west", "half": "bottom", @@ -237302,7 +259485,7 @@ } }, { - "id": 22120, + "id": 23362, "properties": { "facing": "west", "half": "bottom", @@ -237311,7 +259494,7 @@ } }, { - "id": 22121, + "id": 23363, "properties": { "facing": "west", "half": "bottom", @@ -237320,7 +259503,7 @@ } }, { - "id": 22122, + "id": 23364, "properties": { "facing": "west", "half": "bottom", @@ -237329,7 +259512,7 @@ } }, { - "id": 22123, + "id": 23365, "properties": { "facing": "west", "half": "bottom", @@ -237338,7 +259521,7 @@ } }, { - "id": 22124, + "id": 23366, "properties": { "facing": "west", "half": "bottom", @@ -237347,7 +259530,7 @@ } }, { - "id": 22125, + "id": 23367, "properties": { "facing": "west", "half": "bottom", @@ -237356,7 +259539,7 @@ } }, { - "id": 22126, + "id": 23368, "properties": { "facing": "east", "half": "top", @@ -237365,7 +259548,7 @@ } }, { - "id": 22127, + "id": 23369, "properties": { "facing": "east", "half": "top", @@ -237374,7 +259557,7 @@ } }, { - "id": 22128, + "id": 23370, "properties": { "facing": "east", "half": "top", @@ -237383,7 +259566,7 @@ } }, { - "id": 22129, + "id": 23371, "properties": { "facing": "east", "half": "top", @@ -237392,7 +259575,7 @@ } }, { - "id": 22130, + "id": 23372, "properties": { "facing": "east", "half": "top", @@ -237401,7 +259584,7 @@ } }, { - "id": 22131, + "id": 23373, "properties": { "facing": "east", "half": "top", @@ -237410,7 +259593,7 @@ } }, { - "id": 22132, + "id": 23374, "properties": { "facing": "east", "half": "top", @@ -237419,7 +259602,7 @@ } }, { - "id": 22133, + "id": 23375, "properties": { "facing": "east", "half": "top", @@ -237428,7 +259611,7 @@ } }, { - "id": 22134, + "id": 23376, "properties": { "facing": "east", "half": "top", @@ -237437,7 +259620,7 @@ } }, { - "id": 22135, + "id": 23377, "properties": { "facing": "east", "half": "top", @@ -237446,7 +259629,7 @@ } }, { - "id": 22136, + "id": 23378, "properties": { "facing": "east", "half": "bottom", @@ -237455,7 +259638,7 @@ } }, { - "id": 22137, + "id": 23379, "properties": { "facing": "east", "half": "bottom", @@ -237464,7 +259647,7 @@ } }, { - "id": 22138, + "id": 23380, "properties": { "facing": "east", "half": "bottom", @@ -237473,7 +259656,7 @@ } }, { - "id": 22139, + "id": 23381, "properties": { "facing": "east", "half": "bottom", @@ -237482,7 +259665,7 @@ } }, { - "id": 22140, + "id": 23382, "properties": { "facing": "east", "half": "bottom", @@ -237491,7 +259674,7 @@ } }, { - "id": 22141, + "id": 23383, "properties": { "facing": "east", "half": "bottom", @@ -237500,7 +259683,7 @@ } }, { - "id": 22142, + "id": 23384, "properties": { "facing": "east", "half": "bottom", @@ -237509,7 +259692,7 @@ } }, { - "id": 22143, + "id": 23385, "properties": { "facing": "east", "half": "bottom", @@ -237518,7 +259701,7 @@ } }, { - "id": 22144, + "id": 23386, "properties": { "facing": "east", "half": "bottom", @@ -237527,7 +259710,7 @@ } }, { - "id": 22145, + "id": 23387, "properties": { "facing": "east", "half": "bottom", @@ -237537,11 +259720,1423 @@ } ] }, + "minecraft:waxed_weathered_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22953 + } + ] + }, "minecraft:waxed_weathered_copper": { "states": [ { "default": true, - "id": 22059 + "id": 23301 + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24716, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24717, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24718, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24719, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24100, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24101, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24102, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24103, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24104, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24105, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24106, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24107, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24108, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24109, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24110, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24111, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24112, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24113, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24114, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24115, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24116, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24117, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24118, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24119, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24120, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24121, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24122, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24123, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24124, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24125, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24126, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24127, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24128, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24129, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24130, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24131, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24132, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24133, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24134, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24135, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24136, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24137, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24138, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24139, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24140, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24141, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24142, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24143, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24144, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24145, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24146, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24147, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24148, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24149, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24150, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24151, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24152, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24153, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24154, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24155, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24156, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24157, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24158, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24159, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24160, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24161, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24162, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24163, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24688, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24689, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24612, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24613, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24614, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24615, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24616, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24617, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24618, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24619, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24620, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24621, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24622, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24623, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24624, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24625, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24626, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24627, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24628, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24629, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24630, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24631, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24632, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24633, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24634, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24635, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24636, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24637, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24638, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24639, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24640, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24641, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24642, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24643, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24644, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24645, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24646, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24647, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24648, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24649, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24650, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24651, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24652, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24653, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24654, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24655, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24656, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24657, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24658, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24659, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24660, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24661, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24662, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24663, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24664, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24665, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24666, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24667, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24668, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24669, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24670, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24671, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24672, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24673, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24674, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24675, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -237549,7 +261144,7 @@ "states": [ { "default": true, - "id": 22063 + "id": 23305 } ] }, @@ -237567,21 +261162,21 @@ }, "states": [ { - "id": 22392, + "id": 23634, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22393, + "id": 23635, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22394, + "id": 23636, "properties": { "type": "bottom", "waterlogged": "true" @@ -237589,21 +261184,21 @@ }, { "default": true, - "id": 22395, + "id": 23637, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22396, + "id": 23638, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22397, + "id": 23639, "properties": { "type": "double", "waterlogged": "false" @@ -237637,7 +261232,7 @@ }, "states": [ { - "id": 22146, + "id": 23388, "properties": { "facing": "north", "half": "top", @@ -237646,7 +261241,7 @@ } }, { - "id": 22147, + "id": 23389, "properties": { "facing": "north", "half": "top", @@ -237655,7 +261250,7 @@ } }, { - "id": 22148, + "id": 23390, "properties": { "facing": "north", "half": "top", @@ -237664,7 +261259,7 @@ } }, { - "id": 22149, + "id": 23391, "properties": { "facing": "north", "half": "top", @@ -237673,7 +261268,7 @@ } }, { - "id": 22150, + "id": 23392, "properties": { "facing": "north", "half": "top", @@ -237682,7 +261277,7 @@ } }, { - "id": 22151, + "id": 23393, "properties": { "facing": "north", "half": "top", @@ -237691,7 +261286,7 @@ } }, { - "id": 22152, + "id": 23394, "properties": { "facing": "north", "half": "top", @@ -237700,7 +261295,7 @@ } }, { - "id": 22153, + "id": 23395, "properties": { "facing": "north", "half": "top", @@ -237709,7 +261304,7 @@ } }, { - "id": 22154, + "id": 23396, "properties": { "facing": "north", "half": "top", @@ -237718,7 +261313,7 @@ } }, { - "id": 22155, + "id": 23397, "properties": { "facing": "north", "half": "top", @@ -237727,7 +261322,7 @@ } }, { - "id": 22156, + "id": 23398, "properties": { "facing": "north", "half": "bottom", @@ -237737,7 +261332,7 @@ }, { "default": true, - "id": 22157, + "id": 23399, "properties": { "facing": "north", "half": "bottom", @@ -237746,7 +261341,7 @@ } }, { - "id": 22158, + "id": 23400, "properties": { "facing": "north", "half": "bottom", @@ -237755,7 +261350,7 @@ } }, { - "id": 22159, + "id": 23401, "properties": { "facing": "north", "half": "bottom", @@ -237764,7 +261359,7 @@ } }, { - "id": 22160, + "id": 23402, "properties": { "facing": "north", "half": "bottom", @@ -237773,7 +261368,7 @@ } }, { - "id": 22161, + "id": 23403, "properties": { "facing": "north", "half": "bottom", @@ -237782,7 +261377,7 @@ } }, { - "id": 22162, + "id": 23404, "properties": { "facing": "north", "half": "bottom", @@ -237791,7 +261386,7 @@ } }, { - "id": 22163, + "id": 23405, "properties": { "facing": "north", "half": "bottom", @@ -237800,7 +261395,7 @@ } }, { - "id": 22164, + "id": 23406, "properties": { "facing": "north", "half": "bottom", @@ -237809,7 +261404,7 @@ } }, { - "id": 22165, + "id": 23407, "properties": { "facing": "north", "half": "bottom", @@ -237818,7 +261413,7 @@ } }, { - "id": 22166, + "id": 23408, "properties": { "facing": "south", "half": "top", @@ -237827,7 +261422,7 @@ } }, { - "id": 22167, + "id": 23409, "properties": { "facing": "south", "half": "top", @@ -237836,7 +261431,7 @@ } }, { - "id": 22168, + "id": 23410, "properties": { "facing": "south", "half": "top", @@ -237845,7 +261440,7 @@ } }, { - "id": 22169, + "id": 23411, "properties": { "facing": "south", "half": "top", @@ -237854,7 +261449,7 @@ } }, { - "id": 22170, + "id": 23412, "properties": { "facing": "south", "half": "top", @@ -237863,7 +261458,7 @@ } }, { - "id": 22171, + "id": 23413, "properties": { "facing": "south", "half": "top", @@ -237872,7 +261467,7 @@ } }, { - "id": 22172, + "id": 23414, "properties": { "facing": "south", "half": "top", @@ -237881,7 +261476,7 @@ } }, { - "id": 22173, + "id": 23415, "properties": { "facing": "south", "half": "top", @@ -237890,7 +261485,7 @@ } }, { - "id": 22174, + "id": 23416, "properties": { "facing": "south", "half": "top", @@ -237899,7 +261494,7 @@ } }, { - "id": 22175, + "id": 23417, "properties": { "facing": "south", "half": "top", @@ -237908,7 +261503,7 @@ } }, { - "id": 22176, + "id": 23418, "properties": { "facing": "south", "half": "bottom", @@ -237917,7 +261512,7 @@ } }, { - "id": 22177, + "id": 23419, "properties": { "facing": "south", "half": "bottom", @@ -237926,7 +261521,7 @@ } }, { - "id": 22178, + "id": 23420, "properties": { "facing": "south", "half": "bottom", @@ -237935,7 +261530,7 @@ } }, { - "id": 22179, + "id": 23421, "properties": { "facing": "south", "half": "bottom", @@ -237944,7 +261539,7 @@ } }, { - "id": 22180, + "id": 23422, "properties": { "facing": "south", "half": "bottom", @@ -237953,7 +261548,7 @@ } }, { - "id": 22181, + "id": 23423, "properties": { "facing": "south", "half": "bottom", @@ -237962,7 +261557,7 @@ } }, { - "id": 22182, + "id": 23424, "properties": { "facing": "south", "half": "bottom", @@ -237971,7 +261566,7 @@ } }, { - "id": 22183, + "id": 23425, "properties": { "facing": "south", "half": "bottom", @@ -237980,7 +261575,7 @@ } }, { - "id": 22184, + "id": 23426, "properties": { "facing": "south", "half": "bottom", @@ -237989,7 +261584,7 @@ } }, { - "id": 22185, + "id": 23427, "properties": { "facing": "south", "half": "bottom", @@ -237998,7 +261593,7 @@ } }, { - "id": 22186, + "id": 23428, "properties": { "facing": "west", "half": "top", @@ -238007,7 +261602,7 @@ } }, { - "id": 22187, + "id": 23429, "properties": { "facing": "west", "half": "top", @@ -238016,7 +261611,7 @@ } }, { - "id": 22188, + "id": 23430, "properties": { "facing": "west", "half": "top", @@ -238025,7 +261620,7 @@ } }, { - "id": 22189, + "id": 23431, "properties": { "facing": "west", "half": "top", @@ -238034,7 +261629,7 @@ } }, { - "id": 22190, + "id": 23432, "properties": { "facing": "west", "half": "top", @@ -238043,7 +261638,7 @@ } }, { - "id": 22191, + "id": 23433, "properties": { "facing": "west", "half": "top", @@ -238052,7 +261647,7 @@ } }, { - "id": 22192, + "id": 23434, "properties": { "facing": "west", "half": "top", @@ -238061,7 +261656,7 @@ } }, { - "id": 22193, + "id": 23435, "properties": { "facing": "west", "half": "top", @@ -238070,7 +261665,7 @@ } }, { - "id": 22194, + "id": 23436, "properties": { "facing": "west", "half": "top", @@ -238079,7 +261674,7 @@ } }, { - "id": 22195, + "id": 23437, "properties": { "facing": "west", "half": "top", @@ -238088,7 +261683,7 @@ } }, { - "id": 22196, + "id": 23438, "properties": { "facing": "west", "half": "bottom", @@ -238097,7 +261692,7 @@ } }, { - "id": 22197, + "id": 23439, "properties": { "facing": "west", "half": "bottom", @@ -238106,7 +261701,7 @@ } }, { - "id": 22198, + "id": 23440, "properties": { "facing": "west", "half": "bottom", @@ -238115,7 +261710,7 @@ } }, { - "id": 22199, + "id": 23441, "properties": { "facing": "west", "half": "bottom", @@ -238124,7 +261719,7 @@ } }, { - "id": 22200, + "id": 23442, "properties": { "facing": "west", "half": "bottom", @@ -238133,7 +261728,7 @@ } }, { - "id": 22201, + "id": 23443, "properties": { "facing": "west", "half": "bottom", @@ -238142,7 +261737,7 @@ } }, { - "id": 22202, + "id": 23444, "properties": { "facing": "west", "half": "bottom", @@ -238151,7 +261746,7 @@ } }, { - "id": 22203, + "id": 23445, "properties": { "facing": "west", "half": "bottom", @@ -238160,7 +261755,7 @@ } }, { - "id": 22204, + "id": 23446, "properties": { "facing": "west", "half": "bottom", @@ -238169,7 +261764,7 @@ } }, { - "id": 22205, + "id": 23447, "properties": { "facing": "west", "half": "bottom", @@ -238178,7 +261773,7 @@ } }, { - "id": 22206, + "id": 23448, "properties": { "facing": "east", "half": "top", @@ -238187,7 +261782,7 @@ } }, { - "id": 22207, + "id": 23449, "properties": { "facing": "east", "half": "top", @@ -238196,7 +261791,7 @@ } }, { - "id": 22208, + "id": 23450, "properties": { "facing": "east", "half": "top", @@ -238205,7 +261800,7 @@ } }, { - "id": 22209, + "id": 23451, "properties": { "facing": "east", "half": "top", @@ -238214,7 +261809,7 @@ } }, { - "id": 22210, + "id": 23452, "properties": { "facing": "east", "half": "top", @@ -238223,7 +261818,7 @@ } }, { - "id": 22211, + "id": 23453, "properties": { "facing": "east", "half": "top", @@ -238232,7 +261827,7 @@ } }, { - "id": 22212, + "id": 23454, "properties": { "facing": "east", "half": "top", @@ -238241,7 +261836,7 @@ } }, { - "id": 22213, + "id": 23455, "properties": { "facing": "east", "half": "top", @@ -238250,7 +261845,7 @@ } }, { - "id": 22214, + "id": 23456, "properties": { "facing": "east", "half": "top", @@ -238259,7 +261854,7 @@ } }, { - "id": 22215, + "id": 23457, "properties": { "facing": "east", "half": "top", @@ -238268,7 +261863,7 @@ } }, { - "id": 22216, + "id": 23458, "properties": { "facing": "east", "half": "bottom", @@ -238277,7 +261872,7 @@ } }, { - "id": 22217, + "id": 23459, "properties": { "facing": "east", "half": "bottom", @@ -238286,7 +261881,7 @@ } }, { - "id": 22218, + "id": 23460, "properties": { "facing": "east", "half": "bottom", @@ -238295,7 +261890,7 @@ } }, { - "id": 22219, + "id": 23461, "properties": { "facing": "east", "half": "bottom", @@ -238304,7 +261899,7 @@ } }, { - "id": 22220, + "id": 23462, "properties": { "facing": "east", "half": "bottom", @@ -238313,7 +261908,7 @@ } }, { - "id": 22221, + "id": 23463, "properties": { "facing": "east", "half": "bottom", @@ -238322,7 +261917,7 @@ } }, { - "id": 22222, + "id": 23464, "properties": { "facing": "east", "half": "bottom", @@ -238331,7 +261926,7 @@ } }, { - "id": 22223, + "id": 23465, "properties": { "facing": "east", "half": "bottom", @@ -238340,7 +261935,7 @@ } }, { - "id": 22224, + "id": 23466, "properties": { "facing": "east", "half": "bottom", @@ -238349,7 +261944,7 @@ } }, { - "id": 22225, + "id": 23467, "properties": { "facing": "east", "half": "bottom", @@ -238359,11 +261954,1423 @@ } ] }, + "minecraft:weathered_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22949 + } + ] + }, "minecraft:weathered_copper": { "states": [ { "default": true, - "id": 21705 + "id": 22940 + } + ] + }, + "minecraft:weathered_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24700, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24701, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24702, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24703, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23844, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23845, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23846, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23847, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23848, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23849, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23850, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23851, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23852, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23853, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23854, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23855, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23856, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23857, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23858, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23859, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23860, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23861, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23862, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23863, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23864, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23865, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23866, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23867, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23868, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23869, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23870, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23871, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23872, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23873, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23874, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23875, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23876, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23877, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23878, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23879, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23880, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23881, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23882, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23883, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23884, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23885, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23886, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23887, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23888, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23889, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23890, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23891, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23892, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23893, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23894, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23895, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23896, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23897, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23898, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23899, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23900, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23901, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23902, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23903, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23904, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23905, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23906, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23907, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24680, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24681, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24356, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24357, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24358, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24359, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24362, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24363, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24364, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24365, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24366, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24367, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24368, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24369, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24370, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24371, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24372, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24373, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24374, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24375, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24376, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24377, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24378, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24379, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24380, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24381, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24382, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24383, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24384, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24385, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24386, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24387, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24388, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24389, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24390, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24391, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24392, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24393, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24394, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24395, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24396, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24397, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24398, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24399, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24400, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24401, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24402, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24403, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24404, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24405, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24406, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24407, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24408, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24409, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24410, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24411, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24412, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24413, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24414, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24415, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24416, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24417, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24418, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24419, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, @@ -238371,7 +263378,7 @@ "states": [ { "default": true, - "id": 21711 + "id": 22945 } ] }, @@ -238389,21 +263396,21 @@ }, "states": [ { - "id": 22040, + "id": 23282, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22041, + "id": 23283, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22042, + "id": 23284, "properties": { "type": "bottom", "waterlogged": "true" @@ -238411,21 +263418,21 @@ }, { "default": true, - "id": 22043, + "id": 23285, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22044, + "id": 23286, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22045, + "id": 23287, "properties": { "type": "double", "waterlogged": "false" @@ -238459,7 +263466,7 @@ }, "states": [ { - "id": 21794, + "id": 23036, "properties": { "facing": "north", "half": "top", @@ -238468,7 +263475,7 @@ } }, { - "id": 21795, + "id": 23037, "properties": { "facing": "north", "half": "top", @@ -238477,7 +263484,7 @@ } }, { - "id": 21796, + "id": 23038, "properties": { "facing": "north", "half": "top", @@ -238486,7 +263493,7 @@ } }, { - "id": 21797, + "id": 23039, "properties": { "facing": "north", "half": "top", @@ -238495,7 +263502,7 @@ } }, { - "id": 21798, + "id": 23040, "properties": { "facing": "north", "half": "top", @@ -238504,7 +263511,7 @@ } }, { - "id": 21799, + "id": 23041, "properties": { "facing": "north", "half": "top", @@ -238513,7 +263520,7 @@ } }, { - "id": 21800, + "id": 23042, "properties": { "facing": "north", "half": "top", @@ -238522,7 +263529,7 @@ } }, { - "id": 21801, + "id": 23043, "properties": { "facing": "north", "half": "top", @@ -238531,7 +263538,7 @@ } }, { - "id": 21802, + "id": 23044, "properties": { "facing": "north", "half": "top", @@ -238540,7 +263547,7 @@ } }, { - "id": 21803, + "id": 23045, "properties": { "facing": "north", "half": "top", @@ -238549,7 +263556,7 @@ } }, { - "id": 21804, + "id": 23046, "properties": { "facing": "north", "half": "bottom", @@ -238559,7 +263566,7 @@ }, { "default": true, - "id": 21805, + "id": 23047, "properties": { "facing": "north", "half": "bottom", @@ -238568,7 +263575,7 @@ } }, { - "id": 21806, + "id": 23048, "properties": { "facing": "north", "half": "bottom", @@ -238577,7 +263584,7 @@ } }, { - "id": 21807, + "id": 23049, "properties": { "facing": "north", "half": "bottom", @@ -238586,7 +263593,7 @@ } }, { - "id": 21808, + "id": 23050, "properties": { "facing": "north", "half": "bottom", @@ -238595,7 +263602,7 @@ } }, { - "id": 21809, + "id": 23051, "properties": { "facing": "north", "half": "bottom", @@ -238604,7 +263611,7 @@ } }, { - "id": 21810, + "id": 23052, "properties": { "facing": "north", "half": "bottom", @@ -238613,7 +263620,7 @@ } }, { - "id": 21811, + "id": 23053, "properties": { "facing": "north", "half": "bottom", @@ -238622,7 +263629,7 @@ } }, { - "id": 21812, + "id": 23054, "properties": { "facing": "north", "half": "bottom", @@ -238631,7 +263638,7 @@ } }, { - "id": 21813, + "id": 23055, "properties": { "facing": "north", "half": "bottom", @@ -238640,7 +263647,7 @@ } }, { - "id": 21814, + "id": 23056, "properties": { "facing": "south", "half": "top", @@ -238649,7 +263656,7 @@ } }, { - "id": 21815, + "id": 23057, "properties": { "facing": "south", "half": "top", @@ -238658,7 +263665,7 @@ } }, { - "id": 21816, + "id": 23058, "properties": { "facing": "south", "half": "top", @@ -238667,7 +263674,7 @@ } }, { - "id": 21817, + "id": 23059, "properties": { "facing": "south", "half": "top", @@ -238676,7 +263683,7 @@ } }, { - "id": 21818, + "id": 23060, "properties": { "facing": "south", "half": "top", @@ -238685,7 +263692,7 @@ } }, { - "id": 21819, + "id": 23061, "properties": { "facing": "south", "half": "top", @@ -238694,7 +263701,7 @@ } }, { - "id": 21820, + "id": 23062, "properties": { "facing": "south", "half": "top", @@ -238703,7 +263710,7 @@ } }, { - "id": 21821, + "id": 23063, "properties": { "facing": "south", "half": "top", @@ -238712,7 +263719,7 @@ } }, { - "id": 21822, + "id": 23064, "properties": { "facing": "south", "half": "top", @@ -238721,7 +263728,7 @@ } }, { - "id": 21823, + "id": 23065, "properties": { "facing": "south", "half": "top", @@ -238730,7 +263737,7 @@ } }, { - "id": 21824, + "id": 23066, "properties": { "facing": "south", "half": "bottom", @@ -238739,7 +263746,7 @@ } }, { - "id": 21825, + "id": 23067, "properties": { "facing": "south", "half": "bottom", @@ -238748,7 +263755,7 @@ } }, { - "id": 21826, + "id": 23068, "properties": { "facing": "south", "half": "bottom", @@ -238757,7 +263764,7 @@ } }, { - "id": 21827, + "id": 23069, "properties": { "facing": "south", "half": "bottom", @@ -238766,7 +263773,7 @@ } }, { - "id": 21828, + "id": 23070, "properties": { "facing": "south", "half": "bottom", @@ -238775,7 +263782,7 @@ } }, { - "id": 21829, + "id": 23071, "properties": { "facing": "south", "half": "bottom", @@ -238784,7 +263791,7 @@ } }, { - "id": 21830, + "id": 23072, "properties": { "facing": "south", "half": "bottom", @@ -238793,7 +263800,7 @@ } }, { - "id": 21831, + "id": 23073, "properties": { "facing": "south", "half": "bottom", @@ -238802,7 +263809,7 @@ } }, { - "id": 21832, + "id": 23074, "properties": { "facing": "south", "half": "bottom", @@ -238811,7 +263818,7 @@ } }, { - "id": 21833, + "id": 23075, "properties": { "facing": "south", "half": "bottom", @@ -238820,7 +263827,7 @@ } }, { - "id": 21834, + "id": 23076, "properties": { "facing": "west", "half": "top", @@ -238829,7 +263836,7 @@ } }, { - "id": 21835, + "id": 23077, "properties": { "facing": "west", "half": "top", @@ -238838,7 +263845,7 @@ } }, { - "id": 21836, + "id": 23078, "properties": { "facing": "west", "half": "top", @@ -238847,7 +263854,7 @@ } }, { - "id": 21837, + "id": 23079, "properties": { "facing": "west", "half": "top", @@ -238856,7 +263863,7 @@ } }, { - "id": 21838, + "id": 23080, "properties": { "facing": "west", "half": "top", @@ -238865,7 +263872,7 @@ } }, { - "id": 21839, + "id": 23081, "properties": { "facing": "west", "half": "top", @@ -238874,7 +263881,7 @@ } }, { - "id": 21840, + "id": 23082, "properties": { "facing": "west", "half": "top", @@ -238883,7 +263890,7 @@ } }, { - "id": 21841, + "id": 23083, "properties": { "facing": "west", "half": "top", @@ -238892,7 +263899,7 @@ } }, { - "id": 21842, + "id": 23084, "properties": { "facing": "west", "half": "top", @@ -238901,7 +263908,7 @@ } }, { - "id": 21843, + "id": 23085, "properties": { "facing": "west", "half": "top", @@ -238910,7 +263917,7 @@ } }, { - "id": 21844, + "id": 23086, "properties": { "facing": "west", "half": "bottom", @@ -238919,7 +263926,7 @@ } }, { - "id": 21845, + "id": 23087, "properties": { "facing": "west", "half": "bottom", @@ -238928,7 +263935,7 @@ } }, { - "id": 21846, + "id": 23088, "properties": { "facing": "west", "half": "bottom", @@ -238937,7 +263944,7 @@ } }, { - "id": 21847, + "id": 23089, "properties": { "facing": "west", "half": "bottom", @@ -238946,7 +263953,7 @@ } }, { - "id": 21848, + "id": 23090, "properties": { "facing": "west", "half": "bottom", @@ -238955,7 +263962,7 @@ } }, { - "id": 21849, + "id": 23091, "properties": { "facing": "west", "half": "bottom", @@ -238964,7 +263971,7 @@ } }, { - "id": 21850, + "id": 23092, "properties": { "facing": "west", "half": "bottom", @@ -238973,7 +263980,7 @@ } }, { - "id": 21851, + "id": 23093, "properties": { "facing": "west", "half": "bottom", @@ -238982,7 +263989,7 @@ } }, { - "id": 21852, + "id": 23094, "properties": { "facing": "west", "half": "bottom", @@ -238991,7 +263998,7 @@ } }, { - "id": 21853, + "id": 23095, "properties": { "facing": "west", "half": "bottom", @@ -239000,7 +264007,7 @@ } }, { - "id": 21854, + "id": 23096, "properties": { "facing": "east", "half": "top", @@ -239009,7 +264016,7 @@ } }, { - "id": 21855, + "id": 23097, "properties": { "facing": "east", "half": "top", @@ -239018,7 +264025,7 @@ } }, { - "id": 21856, + "id": 23098, "properties": { "facing": "east", "half": "top", @@ -239027,7 +264034,7 @@ } }, { - "id": 21857, + "id": 23099, "properties": { "facing": "east", "half": "top", @@ -239036,7 +264043,7 @@ } }, { - "id": 21858, + "id": 23100, "properties": { "facing": "east", "half": "top", @@ -239045,7 +264052,7 @@ } }, { - "id": 21859, + "id": 23101, "properties": { "facing": "east", "half": "top", @@ -239054,7 +264061,7 @@ } }, { - "id": 21860, + "id": 23102, "properties": { "facing": "east", "half": "top", @@ -239063,7 +264070,7 @@ } }, { - "id": 21861, + "id": 23103, "properties": { "facing": "east", "half": "top", @@ -239072,7 +264079,7 @@ } }, { - "id": 21862, + "id": 23104, "properties": { "facing": "east", "half": "top", @@ -239081,7 +264088,7 @@ } }, { - "id": 21863, + "id": 23105, "properties": { "facing": "east", "half": "top", @@ -239090,7 +264097,7 @@ } }, { - "id": 21864, + "id": 23106, "properties": { "facing": "east", "half": "bottom", @@ -239099,7 +264106,7 @@ } }, { - "id": 21865, + "id": 23107, "properties": { "facing": "east", "half": "bottom", @@ -239108,7 +264115,7 @@ } }, { - "id": 21866, + "id": 23108, "properties": { "facing": "east", "half": "bottom", @@ -239117,7 +264124,7 @@ } }, { - "id": 21867, + "id": 23109, "properties": { "facing": "east", "half": "bottom", @@ -239126,7 +264133,7 @@ } }, { - "id": 21868, + "id": 23110, "properties": { "facing": "east", "half": "bottom", @@ -239135,7 +264142,7 @@ } }, { - "id": 21869, + "id": 23111, "properties": { "facing": "east", "half": "bottom", @@ -239144,7 +264151,7 @@ } }, { - "id": 21870, + "id": 23112, "properties": { "facing": "east", "half": "bottom", @@ -239153,7 +264160,7 @@ } }, { - "id": 21871, + "id": 23113, "properties": { "facing": "east", "half": "bottom", @@ -239162,7 +264169,7 @@ } }, { - "id": 21872, + "id": 23114, "properties": { "facing": "east", "half": "bottom", @@ -239171,7 +264178,7 @@ } }, { - "id": 21873, + "id": 23115, "properties": { "facing": "east", "half": "bottom", @@ -240011,7 +265018,7 @@ "states": [ { "default": true, - "id": 5946 + "id": 5945 } ] }, @@ -241315,7 +266322,7 @@ "states": [ { "default": true, - "id": 5950 + "id": 5949 } ] }, diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json index a0a07ba..eb7d7aa 100644 --- a/src/main/resources/dimension_registry.json +++ b/src/main/resources/dimension_registry.json @@ -254,12 +254,63 @@ { "name": { "type": "StringTag", - "value": "minecraft:say_command" + "value": "paper:raw" }, "id": { "type": "IntTag", "value": 4 }, + "element": { + "type": "CompoundTag", + "value": { + "chat": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "%s" + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "content" + ] + } + } + } + }, + "narration": { + "type": "CompoundTag", + "value": { + "translation_key": { + "type": "StringTag", + "value": "%s" + }, + "parameters": { + "type": "ListTag", + "value": { + "type": "StringTag", + "list": [ + "content" + ] + } + } + } + } + } + } + }, + { + "name": { + "type": "StringTag", + "value": "minecraft:say_command" + }, + "id": { + "type": "IntTag", + "value": 5 + }, "element": { "type": "CompoundTag", "value": { @@ -311,7 +362,7 @@ }, "id": { "type": "IntTag", - "value": 5 + "value": 6 }, "element": { "type": "CompoundTag", @@ -365,7 +416,7 @@ }, "id": { "type": "IntTag", - "value": 6 + "value": 7 }, "element": { "type": "CompoundTag", @@ -1588,10 +1639,6 @@ "type": "FloatTag", "value": 0 }, - "effects": { - "type": "StringTag", - "value": "drowning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1599,6 +1646,10 @@ "message_id": { "type": "StringTag", "value": "drown" + }, + "effects": { + "type": "StringTag", + "value": "drowning" } } } @@ -1785,10 +1836,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1796,6 +1843,10 @@ "message_id": { "type": "StringTag", "value": "fireball" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -1870,10 +1921,6 @@ "type": "FloatTag", "value": 0 }, - "effects": { - "type": "StringTag", - "value": "freezing" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1881,6 +1928,10 @@ "message_id": { "type": "StringTag", "value": "freeze" + }, + "effects": { + "type": "StringTag", + "value": "freezing" } } } @@ -1955,10 +2006,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1966,6 +2013,10 @@ "message_id": { "type": "StringTag", "value": "hotFloor" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -1986,10 +2037,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -1997,6 +2044,10 @@ "message_id": { "type": "StringTag", "value": "inFire" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -2071,10 +2122,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2082,6 +2129,10 @@ "message_id": { "type": "StringTag", "value": "lava" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -2237,10 +2288,6 @@ "type": "FloatTag", "value": 0 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2248,6 +2295,10 @@ "message_id": { "type": "StringTag", "value": "onFire" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -2484,10 +2535,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "poking" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2495,6 +2542,10 @@ "message_id": { "type": "StringTag", "value": "sweetBerryBush" + }, + "effects": { + "type": "StringTag", + "value": "poking" } } } @@ -2515,10 +2566,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "thorns" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2526,6 +2573,10 @@ "message_id": { "type": "StringTag", "value": "thorns" + }, + "effects": { + "type": "StringTag", + "value": "thorns" } } } @@ -2600,10 +2651,6 @@ "type": "FloatTag", "value": 0.1 }, - "effects": { - "type": "StringTag", - "value": "burning" - }, "scaling": { "type": "StringTag", "value": "when_caused_by_living_non_player" @@ -2611,6 +2658,10 @@ "message_id": { "type": "StringTag", "value": "onFire" + }, + "effects": { + "type": "StringTag", + "value": "burning" } } } @@ -2702,6 +2753,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -2734,33 +2789,33 @@ "type": "IntTag", "value": 9470285 }, - "foliage_color": { - "type": "IntTag", - "value": 10387789 - }, "water_fog_color": { "type": "IntTag", "value": 329011 }, - "fog_color": { + "foliage_color": { "type": "IntTag", - "value": 12638463 + "value": 10387789 }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2773,10 +2828,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -2800,9 +2851,17 @@ "type": "FloatTag", "value": 0.95 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -2824,33 +2883,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2863,10 +2918,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -2890,6 +2941,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -2957,25 +3012,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 6840176 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 6840176 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -2988,10 +3043,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3015,6 +3066,10 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { @@ -3026,25 +3081,25 @@ "type": "IntTag", "value": 7907327 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3057,10 +3112,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3084,9 +3135,17 @@ "type": "FloatTag", "value": 0.6 }, + "downfall": { + "type": "FloatTag", + "value": 0.6 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -3108,33 +3167,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3147,10 +3202,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.6 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3174,6 +3225,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { @@ -3206,11 +3261,15 @@ "type": "IntTag", "value": 11983713 }, + "water_fog_color": { + "type": "IntTag", + "value": 6141935 + }, "foliage_color": { "type": "IntTag", "value": 11983713 }, - "water_fog_color": { + "water_color": { "type": "IntTag", "value": 6141935 }, @@ -3218,21 +3277,17 @@ "type": "IntTag", "value": 12638463 }, - "water_color": { - "type": "IntTag", - "value": 6141935 - }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3245,10 +3300,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3272,6 +3323,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -3283,25 +3338,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4020182 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3314,10 +3369,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3341,6 +3392,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -3408,25 +3463,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 3343107 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 3343107 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3439,10 +3494,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -3466,6 +3517,10 @@ "type": "FloatTag", "value": 0.7 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { @@ -3502,25 +3557,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3533,10 +3588,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3560,6 +3611,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -3571,25 +3626,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4020182 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3602,10 +3657,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3629,9 +3680,17 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -3653,33 +3712,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3692,10 +3747,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3719,6 +3770,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -3730,25 +3785,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 3750089 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3761,10 +3816,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3792,6 +3843,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -3803,25 +3858,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4566514 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3834,10 +3889,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3861,6 +3912,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -3872,25 +3927,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3903,10 +3958,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -3930,9 +3981,17 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -3954,33 +4013,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -3993,10 +4048,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4020,9 +4071,17 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -4044,33 +4103,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4083,10 +4138,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4110,6 +4161,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4121,25 +4176,25 @@ "type": "IntTag", "value": 0 }, - "fog_color": { - "type": "IntTag", - "value": 10518688 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4152,10 +4207,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4179,6 +4230,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4190,25 +4245,25 @@ "type": "IntTag", "value": 0 }, - "fog_color": { - "type": "IntTag", - "value": 10518688 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4221,10 +4276,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4248,6 +4299,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4259,25 +4314,25 @@ "type": "IntTag", "value": 0 }, - "fog_color": { - "type": "IntTag", - "value": 10518688 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4290,10 +4345,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4317,6 +4368,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -4349,33 +4404,33 @@ "type": "IntTag", "value": 9470285 }, - "foliage_color": { - "type": "IntTag", - "value": 10387789 - }, "water_fog_color": { "type": "IntTag", "value": 329011 }, - "fog_color": { + "foliage_color": { "type": "IntTag", - "value": 12638463 + "value": 10387789 }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4388,10 +4443,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -4415,9 +4466,17 @@ "type": "FloatTag", "value": 0.7 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -4439,33 +4498,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4478,10 +4533,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4505,9 +4556,17 @@ "type": "FloatTag", "value": 0.7 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -4529,33 +4588,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4568,10 +4623,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4595,6 +4646,10 @@ "type": "FloatTag", "value": 0 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4606,25 +4661,25 @@ "type": "IntTag", "value": 8364543 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 3750089 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4637,10 +4692,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4668,9 +4719,17 @@ "type": "FloatTag", "value": -0.7 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -4692,33 +4751,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 8756735 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4731,10 +4786,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4758,6 +4809,10 @@ "type": "FloatTag", "value": 0 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4769,25 +4824,25 @@ "type": "IntTag", "value": 8364543 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 3750089 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4800,10 +4855,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4827,9 +4878,17 @@ "type": "FloatTag", "value": -0.2 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -4851,33 +4910,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 8495359 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4890,10 +4945,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4917,6 +4968,10 @@ "type": "FloatTag", "value": 0 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -4928,25 +4983,25 @@ "type": "IntTag", "value": 8364543 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -4959,10 +5014,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -4986,9 +5037,17 @@ "type": "FloatTag", "value": -0.7 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5010,33 +5069,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 8756735 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5049,10 +5104,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5076,9 +5127,17 @@ "type": "FloatTag", "value": 0.95 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5100,33 +5159,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5139,10 +5194,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5166,6 +5217,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -5177,25 +5232,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4566514 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5208,10 +5263,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5235,9 +5286,17 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5259,33 +5318,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5298,10 +5353,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5325,6 +5376,10 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { @@ -5357,33 +5412,33 @@ "type": "IntTag", "value": 7907327 }, - "foliage_color": { - "type": "IntTag", - "value": 9285927 - }, "water_fog_color": { "type": "IntTag", "value": 5077600 }, - "fog_color": { + "foliage_color": { "type": "IntTag", - "value": 12638463 + "value": 9285927 }, "water_color": { "type": "IntTag", "value": 3832426 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5396,10 +5451,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5423,9 +5474,17 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5447,33 +5506,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 937679 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5486,10 +5541,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5513,6 +5564,10 @@ "type": "FloatTag", "value": 0.9 }, + "downfall": { + "type": "FloatTag", + "value": 1 + }, "effects": { "type": "CompoundTag", "value": { @@ -5524,25 +5579,25 @@ "type": "IntTag", "value": 7842047 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5555,10 +5610,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 1 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5582,6 +5633,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -5631,25 +5686,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 3344392 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 3344392 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5662,10 +5717,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -5689,6 +5740,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -5700,25 +5755,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5731,10 +5786,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5758,9 +5809,17 @@ "type": "FloatTag", "value": 0.6 }, + "downfall": { + "type": "FloatTag", + "value": 0.6 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5782,33 +5841,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5821,10 +5876,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.6 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5848,9 +5899,17 @@ "type": "FloatTag", "value": 0.3 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5872,33 +5931,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -5911,10 +5966,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -5938,9 +5989,17 @@ "type": "FloatTag", "value": 0.25 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -5962,33 +6021,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6001,10 +6056,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6028,6 +6079,10 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { @@ -6039,25 +6094,25 @@ "type": "IntTag", "value": 7907327 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6070,10 +6125,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6097,6 +6148,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -6108,25 +6163,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6139,10 +6194,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6166,6 +6217,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -6177,25 +6232,25 @@ "type": "IntTag", "value": 7254527 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6208,10 +6263,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6235,6 +6286,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -6246,25 +6301,25 @@ "type": "IntTag", "value": 7254527 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6277,10 +6332,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6304,6 +6355,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -6315,25 +6370,25 @@ "type": "IntTag", "value": 0 }, - "fog_color": { - "type": "IntTag", - "value": 10518688 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6346,10 +6401,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6373,6 +6424,10 @@ "type": "FloatTag", "value": 0.05 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { @@ -6384,25 +6439,25 @@ "type": "IntTag", "value": 8364543 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4020182 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6415,10 +6470,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6442,6 +6493,10 @@ "type": "FloatTag", "value": 0 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -6453,25 +6508,25 @@ "type": "IntTag", "value": 8364543 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6484,10 +6539,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6511,9 +6562,17 @@ "type": "FloatTag", "value": -0.3 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -6535,33 +6594,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 8560639 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6574,10 +6629,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6601,6 +6652,10 @@ "type": "FloatTag", "value": -0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { @@ -6612,25 +6667,25 @@ "type": "IntTag", "value": 8625919 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4020182 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6643,10 +6698,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6670,6 +6721,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -6737,25 +6792,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 1787717 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 1787717 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6768,10 +6823,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -6795,9 +6846,17 @@ "type": "FloatTag", "value": 0.95 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -6819,33 +6878,29 @@ } } }, - "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 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6858,10 +6913,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6885,9 +6936,17 @@ "type": "FloatTag", "value": 1 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { + "water_fog_color": { + "type": "IntTag", + "value": 329011 + }, "music": { "type": "CompoundTag", "value": { @@ -6909,33 +6968,29 @@ } } }, - "water_fog_color": { - "type": "IntTag", - "value": 329011 - }, "sky_color": { "type": "IntTag", "value": 7776511 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -6948,10 +7003,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -6975,6 +7026,10 @@ "type": "FloatTag", "value": 0.2 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { @@ -6986,25 +7041,25 @@ "type": "IntTag", "value": 8233727 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7017,10 +7072,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7044,6 +7095,10 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.4 + }, "effects": { "type": "CompoundTag", "value": { @@ -7055,25 +7110,25 @@ "type": "IntTag", "value": 7907327 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7086,10 +7141,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.4 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7113,6 +7164,10 @@ "type": "FloatTag", "value": 0.8 }, + "downfall": { + "type": "FloatTag", + "value": 0.9 + }, "effects": { "type": "CompoundTag", "value": { @@ -7145,33 +7200,33 @@ "type": "IntTag", "value": 7907327 }, - "foliage_color": { - "type": "IntTag", - "value": 6975545 - }, "water_fog_color": { "type": "IntTag", "value": 2302743 }, - "fog_color": { + "foliage_color": { "type": "IntTag", - "value": 12638463 + "value": 6975545 }, "water_color": { "type": "IntTag", "value": 6388580 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7184,10 +7239,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.9 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7211,6 +7262,10 @@ "type": "FloatTag", "value": 0.25 }, + "downfall": { + "type": "FloatTag", + "value": 0.8 + }, "effects": { "type": "CompoundTag", "value": { @@ -7222,25 +7277,25 @@ "type": "IntTag", "value": 8233983 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7253,10 +7308,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.8 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7280,6 +7331,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -7291,25 +7346,25 @@ "type": "IntTag", "value": 0 }, - "fog_color": { - "type": "IntTag", - "value": 10518688 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 10518688 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7322,10 +7377,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7349,6 +7400,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -7360,25 +7415,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7391,10 +7446,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7418,6 +7469,10 @@ "type": "FloatTag", "value": 0.5 }, + "downfall": { + "type": "FloatTag", + "value": 0.5 + }, "effects": { "type": "CompoundTag", "value": { @@ -7429,25 +7484,25 @@ "type": "IntTag", "value": 8103167 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4445678 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7460,10 +7515,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.5 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7487,6 +7538,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -7554,25 +7609,25 @@ "type": "IntTag", "value": 329011 }, - "fog_color": { - "type": "IntTag", - "value": 1705242 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 1705242 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7585,10 +7640,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7612,6 +7663,10 @@ "type": "FloatTag", "value": 0.2 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { @@ -7623,25 +7678,25 @@ "type": "IntTag", "value": 8233727 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7654,10 +7709,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7681,6 +7732,10 @@ "type": "FloatTag", "value": 0.2 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { @@ -7692,25 +7747,25 @@ "type": "IntTag", "value": 8233727 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7723,10 +7778,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7750,6 +7801,10 @@ "type": "FloatTag", "value": 0.2 }, + "downfall": { + "type": "FloatTag", + "value": 0.3 + }, "effects": { "type": "CompoundTag", "value": { @@ -7761,25 +7816,25 @@ "type": "IntTag", "value": 8233727 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7792,10 +7847,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0.3 - }, "has_precipitation": { "type": "ByteTag", "value": 1 @@ -7819,6 +7870,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -7830,25 +7885,25 @@ "type": "IntTag", "value": 7254527 }, - "fog_color": { - "type": "IntTag", - "value": 12638463 - }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7861,10 +7916,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7888,6 +7939,10 @@ "type": "FloatTag", "value": 2 }, + "downfall": { + "type": "FloatTag", + "value": 0 + }, "effects": { "type": "CompoundTag", "value": { @@ -7920,33 +7975,33 @@ "type": "IntTag", "value": 9470285 }, - "foliage_color": { - "type": "IntTag", - "value": 10387789 - }, "water_fog_color": { "type": "IntTag", "value": 329011 }, - "fog_color": { + "foliage_color": { "type": "IntTag", - "value": 12638463 + "value": 10387789 }, "water_color": { "type": "IntTag", "value": 4159204 }, + "fog_color": { + "type": "IntTag", + "value": 12638463 + }, "mood_sound": { "type": "CompoundTag", "value": { - "tick_delay": { - "type": "IntTag", - "value": 6000 - }, "offset": { "type": "DoubleTag", "value": 2 }, + "tick_delay": { + "type": "IntTag", + "value": 6000 + }, "block_search_extent": { "type": "IntTag", "value": 8 @@ -7959,10 +8014,6 @@ } } }, - "downfall": { - "type": "FloatTag", - "value": 0 - }, "has_precipitation": { "type": "ByteTag", "value": 0 @@ -7999,10 +8050,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 1 - }, "description": { "type": "CompoundTag", "value": { @@ -8016,6 +8063,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 1 + }, "ingredient": { "type": "StringTag", "value": "minecraft:amethyst_shard" @@ -8039,10 +8090,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 0.5 - }, "description": { "type": "CompoundTag", "value": { @@ -8056,6 +8103,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.5 + }, "ingredient": { "type": "StringTag", "value": "minecraft:copper_ingot" @@ -8079,19 +8130,6 @@ "element": { "type": "CompoundTag", "value": { - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "diamond": { - "type": "StringTag", - "value": "diamond_darker" - } - } - }, - "item_model_index": { - "type": "FloatTag", - "value": 0.8 - }, "description": { "type": "CompoundTag", "value": { @@ -8105,6 +8143,19 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.8 + }, + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "diamond": { + "type": "StringTag", + "value": "diamond_darker" + } + } + }, "ingredient": { "type": "StringTag", "value": "minecraft:diamond" @@ -8128,10 +8179,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 0.7 - }, "description": { "type": "CompoundTag", "value": { @@ -8145,6 +8192,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.7 + }, "ingredient": { "type": "StringTag", "value": "minecraft:emerald" @@ -8168,19 +8219,6 @@ "element": { "type": "CompoundTag", "value": { - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "gold": { - "type": "StringTag", - "value": "gold_darker" - } - } - }, - "item_model_index": { - "type": "FloatTag", - "value": 0.6 - }, "description": { "type": "CompoundTag", "value": { @@ -8194,6 +8232,19 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.6 + }, + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "gold": { + "type": "StringTag", + "value": "gold_darker" + } + } + }, "ingredient": { "type": "StringTag", "value": "minecraft:gold_ingot" @@ -8217,19 +8268,6 @@ "element": { "type": "CompoundTag", "value": { - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "iron": { - "type": "StringTag", - "value": "iron_darker" - } - } - }, - "item_model_index": { - "type": "FloatTag", - "value": 0.2 - }, "description": { "type": "CompoundTag", "value": { @@ -8243,6 +8281,19 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.2 + }, + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "iron": { + "type": "StringTag", + "value": "iron_darker" + } + } + }, "ingredient": { "type": "StringTag", "value": "minecraft:iron_ingot" @@ -8266,10 +8317,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 0.9 - }, "description": { "type": "CompoundTag", "value": { @@ -8283,6 +8330,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.9 + }, "ingredient": { "type": "StringTag", "value": "minecraft:lapis_lazuli" @@ -8306,19 +8357,6 @@ "element": { "type": "CompoundTag", "value": { - "override_armor_materials": { - "type": "CompoundTag", - "value": { - "netherite": { - "type": "StringTag", - "value": "netherite_darker" - } - } - }, - "item_model_index": { - "type": "FloatTag", - "value": 0.3 - }, "description": { "type": "CompoundTag", "value": { @@ -8332,6 +8370,19 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.3 + }, + "override_armor_materials": { + "type": "CompoundTag", + "value": { + "netherite": { + "type": "StringTag", + "value": "netherite_darker" + } + } + }, "ingredient": { "type": "StringTag", "value": "minecraft:netherite_ingot" @@ -8355,10 +8406,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 0.1 - }, "description": { "type": "CompoundTag", "value": { @@ -8372,6 +8419,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.1 + }, "ingredient": { "type": "StringTag", "value": "minecraft:quartz" @@ -8395,10 +8446,6 @@ "element": { "type": "CompoundTag", "value": { - "item_model_index": { - "type": "FloatTag", - "value": 0.4 - }, "description": { "type": "CompoundTag", "value": { @@ -8412,6 +8459,10 @@ } } }, + "item_model_index": { + "type": "FloatTag", + "value": 0.4 + }, "ingredient": { "type": "StringTag", "value": "minecraft:redstone" diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json index 8725fe5..365880c 100644 --- a/src/main/resources/mapping.json +++ b/src/main/resources/mapping.json @@ -20,56 +20,56 @@ "ClientboundFinishConfigurationPacket": "0x02" }, "PlayIn": { - "0x14": "PacketPlayInKeepAlive", + "0x15": "PacketPlayInKeepAlive", "0x04": "ServerboundChatCommandPacket", "0x05": "PacketPlayInChat", - "0x16": "PacketPlayInPosition", - "0x17": "PacketPlayInPositionAndLook", - "0x18": "PacketPlayInRotation", - "0x0F": "PacketPlayInPluginMessaging", + "0x17": "PacketPlayInPosition", + "0x18": "PacketPlayInPositionAndLook", + "0x19": "PacketPlayInRotation", + "0x10": "PacketPlayInPluginMessaging", "0x0A": "PacketPlayInTabComplete", - "0x2B": "PacketPlayInHeldItemChange", - "0x27": "PacketPlayInResourcePackStatus", - "0x34": "PacketPlayInUseItem", - "0x35": "PacketPlayInBlockPlace", - "0x2E": "PacketPlayInSetCreativeSlot", + "0x2C": "PacketPlayInHeldItemChange", + "0x28": "ServerboundResourcePackPacket", + "0x35": "PacketPlayInUseItem", + "0x36": "PacketPlayInBlockPlace", + "0x2F": "PacketPlayInSetCreativeSlot", "0x0D": "PacketPlayInWindowClick", "0x0E": "PacketPlayInCloseWindow", - "0x1C": "PacketPlayInPickItem", - "0x20": "PacketPlayInBlockDig", - "0x26": "PacketPlayInItemName" + "0x1D": "PacketPlayInPickItem", + "0x21": "PacketPlayInBlockDig", + "0x27": "PacketPlayInItemName" }, "PlayOut": { "PacketPlayOutLogin": "0x29", "PacketPlayOutPositionAndLook": "0x3E", - "PacketPlayOutSpawnPosition": "0x52", - "ClientboundSystemChatPacket": "0x67", + "PacketPlayOutSpawnPosition": "0x54", + "ClientboundSystemChatPacket": "0x69", "PacketPlayOutPlayerAbilities": "0x36", "ClientboundLevelChunkWithLightPacket": "0x25", "PacketPlayOutUnloadChunk": "0x1F", - "PacketPlayOutKeepAlive": "0x24", + "PacketPlayOutKeepAlive": "0x15", "PacketPlayOutPlayerInfo": "0x3C", - "PacketPlayOutUpdateViewPosition": "0x50", + "PacketPlayOutUpdateViewPosition": "0x52", "PacketPlayOutDisconnect": "0x1B", "PacketPlayOutPluginMessaging": "0x18", "PacketPlayOutTabComplete": "0x10", "PacketPlayOutDeclareCommands": "0x11", - "PacketPlayOutRespawn": "0x43", + "PacketPlayOutRespawn": "0x45", "PacketPlayOutGameState": "0x20", "PacketPlayOutEntityDestroy": "0x40", - "PacketPlayOutEntityMetadata": "0x54", + "PacketPlayOutEntityMetadata": "0x56", "PacketPlayOutSpawnEntity": "0x01", - "PacketPlayOutHeldItemChange": "0x4F", - "PacketPlayOutPlayerListHeaderFooter": "0x68", - "PacketPlayOutResourcePackSend": "0x42", - "ClientboundSetTitlesAnimationPacket": "0x62", - "ClientboundSetTitleTextPacket": "0x61", - "ClientboundSetSubtitleTextPacket": "0x5F", - "ClientboundSetActionBarTextPacket": "0x48", + "PacketPlayOutHeldItemChange": "0x51", + "PacketPlayOutPlayerListHeaderFooter": "0x6A", + "ClientboundResourcePackPushPacket": "0x44", + "ClientboundSetTitlesAnimationPacket": "0x64", + "ClientboundSetTitleTextPacket": "0x63", + "ClientboundSetSubtitleTextPacket": "0x61", + "ClientboundSetActionBarTextPacket": "0x4A", "ClientboundClearTitlesPacket": "0x0F", "PacketPlayOutBoss": "0x0A", - "PacketPlayOutNamedSoundEffect": "0x64", - "PacketPlayOutStopSound": "0x66", + "PacketPlayOutNamedSoundEffect": "0x66", + "PacketPlayOutStopSound": "0x68", "PacketPlayOutWindowItems": "0x13", "PacketPlayOutSetSlot": "0x15", "PacketPlayOutOpenWindow": "0x31", diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json index fb9d3a8..4d3347c 100644 --- a/src/main/resources/registries.json +++ b/src/main/resources/registries.json @@ -85,46 +85,46 @@ "minecraft:attribute": { "entries": { "minecraft:generic.armor": { - "protocol_id": 8 - }, - "minecraft:generic.armor_toughness": { - "protocol_id": 9 - }, - "minecraft:generic.attack_damage": { - "protocol_id": 5 - }, - "minecraft:generic.attack_knockback": { - "protocol_id": 6 - }, - "minecraft:generic.attack_speed": { - "protocol_id": 7 - }, - "minecraft:generic.flying_speed": { - "protocol_id": 4 - }, - "minecraft:generic.follow_range": { - "protocol_id": 1 - }, - "minecraft:generic.knockback_resistance": { - "protocol_id": 2 - }, - "minecraft:generic.luck": { - "protocol_id": 10 - }, - "minecraft:generic.max_absorption": { - "protocol_id": 11 - }, - "minecraft:generic.max_health": { "protocol_id": 0 }, - "minecraft:generic.movement_speed": { + "minecraft:generic.armor_toughness": { + "protocol_id": 1 + }, + "minecraft:generic.attack_damage": { + "protocol_id": 2 + }, + "minecraft:generic.attack_knockback": { "protocol_id": 3 }, + "minecraft:generic.attack_speed": { + "protocol_id": 4 + }, + "minecraft:generic.flying_speed": { + "protocol_id": 5 + }, + "minecraft:generic.follow_range": { + "protocol_id": 6 + }, + "minecraft:generic.knockback_resistance": { + "protocol_id": 8 + }, + "minecraft:generic.luck": { + "protocol_id": 9 + }, + "minecraft:generic.max_absorption": { + "protocol_id": 10 + }, + "minecraft:generic.max_health": { + "protocol_id": 11 + }, + "minecraft:generic.movement_speed": { + "protocol_id": 12 + }, "minecraft:horse.jump_strength": { - "protocol_id": 13 + "protocol_id": 7 }, "minecraft:zombie.spawn_reinforcements": { - "protocol_id": 12 + "protocol_id": 13 } }, "protocol_id": 20 @@ -255,7 +255,7 @@ "protocol_id": 19 } }, - "protocol_id": 62 + "protocol_id": 64 }, "minecraft:block": { "default": "minecraft:air", @@ -300,7 +300,7 @@ "protocol_id": 457 }, "minecraft:acacia_trapdoor": { - "protocol_id": 289 + "protocol_id": 288 }, "minecraft:acacia_wall_hanging_sign": { "protocol_id": 222 @@ -351,7 +351,7 @@ "protocol_id": 313 }, "minecraft:azalea": { - "protocol_id": 959 + "protocol_id": 1012 }, "minecraft:azalea_leaves": { "protocol_id": 90 @@ -408,7 +408,7 @@ "protocol_id": 461 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 293 + "protocol_id": 292 }, "minecraft:bamboo_wall_hanging_sign": { "protocol_id": 229 @@ -423,7 +423,7 @@ "protocol_id": 464 }, "minecraft:basalt": { - "protocol_id": 259 + "protocol_id": 258 }, "minecraft:beacon": { "protocol_id": 352 @@ -444,10 +444,10 @@ "protocol_id": 783 }, "minecraft:big_dripleaf": { - "protocol_id": 964 + "protocol_id": 1017 }, "minecraft:big_dripleaf_stem": { - "protocol_id": 965 + "protocol_id": 1018 }, "minecraft:birch_button": { "protocol_id": 387 @@ -489,7 +489,7 @@ "protocol_id": 349 }, "minecraft:birch_trapdoor": { - "protocol_id": 287 + "protocol_id": 286 }, "minecraft:birch_wall_hanging_sign": { "protocol_id": 221 @@ -528,7 +528,7 @@ "protocol_id": 629 }, "minecraft:black_stained_glass": { - "protocol_id": 284 + "protocol_id": 283 }, "minecraft:black_stained_glass_pane": { "protocol_id": 456 @@ -591,7 +591,7 @@ "protocol_id": 625 }, "minecraft:blue_stained_glass": { - "protocol_id": 280 + "protocol_id": 279 }, "minecraft:blue_stained_glass_pane": { "protocol_id": 452 @@ -666,13 +666,13 @@ "protocol_id": 161 }, "minecraft:brown_mushroom_block": { - "protocol_id": 306 + "protocol_id": 305 }, "minecraft:brown_shulker_box": { "protocol_id": 626 }, "minecraft:brown_stained_glass": { - "protocol_id": 281 + "protocol_id": 280 }, "minecraft:brown_stained_glass_pane": { "protocol_id": 453 @@ -708,13 +708,13 @@ "protocol_id": 250 }, "minecraft:cake": { - "protocol_id": 267 + "protocol_id": 266 }, "minecraft:calcite": { - "protocol_id": 910 + "protocol_id": 923 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 914 + "protocol_id": 927 }, "minecraft:campfire": { "protocol_id": 786 @@ -732,7 +732,7 @@ "protocol_id": 777 }, "minecraft:carved_pumpkin": { - "protocol_id": 265 + "protocol_id": 264 }, "minecraft:cauldron": { "protocol_id": 331 @@ -741,13 +741,13 @@ "protocol_id": 730 }, "minecraft:cave_vines": { - "protocol_id": 956 + "protocol_id": 1009 }, "minecraft:cave_vines_plant": { - "protocol_id": 957 + "protocol_id": 1010 }, "minecraft:chain": { - "protocol_id": 310 + "protocol_id": 309 }, "minecraft:chain_command_block": { "protocol_id": 605 @@ -792,7 +792,7 @@ "protocol_id": 458 }, "minecraft:cherry_trapdoor": { - "protocol_id": 290 + "protocol_id": 289 }, "minecraft:cherry_wall_hanging_sign": { "protocol_id": 223 @@ -812,8 +812,11 @@ "minecraft:chiseled_bookshelf": { "protocol_id": 168 }, + "minecraft:chiseled_copper": { + "protocol_id": 945 + }, "minecraft:chiseled_deepslate": { - "protocol_id": 987 + "protocol_id": 1040 }, "minecraft:chiseled_nether_bricks": { "protocol_id": 866 @@ -831,7 +834,13 @@ "protocol_id": 100 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 297 + "protocol_id": 296 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 917 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 922 }, "minecraft:chorus_flower": { "protocol_id": 593 @@ -852,16 +861,16 @@ "protocol_id": 10 }, "minecraft:cobbled_deepslate": { - "protocol_id": 971 + "protocol_id": 1024 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 973 + "protocol_id": 1026 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 972 + "protocol_id": 1025 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 974 + "protocol_id": 1027 }, "minecraft:cobblestone": { "protocol_id": 12 @@ -894,19 +903,31 @@ "protocol_id": 725 }, "minecraft:copper_block": { - "protocol_id": 922 + "protocol_id": 932 + }, + "minecraft:copper_bulb": { + "protocol_id": 998 + }, + "minecraft:copper_door": { + "protocol_id": 974 + }, + "minecraft:copper_grate": { + "protocol_id": 990 }, "minecraft:copper_ore": { - "protocol_id": 923 + "protocol_id": 936 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 982 }, "minecraft:cornflower": { "protocol_id": 158 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 988 + "protocol_id": 1041 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 989 + "protocol_id": 1042 }, "minecraft:cracked_nether_bricks": { "protocol_id": 867 @@ -915,7 +936,10 @@ "protocol_id": 855 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 296 + "protocol_id": 295 + }, + "minecraft:crafter": { + "protocol_id": 1056 }, "minecraft:crafting_table": { "protocol_id": 182 @@ -984,13 +1008,13 @@ "protocol_id": 842 }, "minecraft:cut_copper": { - "protocol_id": 928 + "protocol_id": 941 }, "minecraft:cut_copper_slab": { - "protocol_id": 936 + "protocol_id": 957 }, "minecraft:cut_copper_stairs": { - "protocol_id": 932 + "protocol_id": 953 }, "minecraft:cut_red_sandstone": { "protocol_id": 537 @@ -1032,7 +1056,7 @@ "protocol_id": 623 }, "minecraft:cyan_stained_glass": { - "protocol_id": 278 + "protocol_id": 277 }, "minecraft:cyan_stained_glass_pane": { "protocol_id": 450 @@ -1092,7 +1116,7 @@ "protocol_id": 459 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 291 + "protocol_id": 290 }, "minecraft:dark_oak_wall_hanging_sign": { "protocol_id": 225 @@ -1179,28 +1203,28 @@ "protocol_id": 713 }, "minecraft:decorated_pot": { - "protocol_id": 1002 + "protocol_id": 1055 }, "minecraft:deepslate": { - "protocol_id": 970 + "protocol_id": 1023 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 985 + "protocol_id": 1038 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 984 + "protocol_id": 1037 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 986 + "protocol_id": 1039 }, "minecraft:deepslate_bricks": { - "protocol_id": 983 + "protocol_id": 1036 }, "minecraft:deepslate_coal_ore": { "protocol_id": 44 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 924 + "protocol_id": 937 }, "minecraft:deepslate_diamond_ore": { "protocol_id": 180 @@ -1221,16 +1245,16 @@ "protocol_id": 243 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 981 + "protocol_id": 1034 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 980 + "protocol_id": 1033 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 982 + "protocol_id": 1035 }, "minecraft:deepslate_tiles": { - "protocol_id": 979 + "protocol_id": 1032 }, "minecraft:detector_rail": { "protocol_id": 120 @@ -1275,7 +1299,7 @@ "protocol_id": 680 }, "minecraft:dripstone_block": { - "protocol_id": 955 + "protocol_id": 1008 }, "minecraft:dropper": { "protocol_id": 424 @@ -1319,17 +1343,32 @@ "minecraft:ender_chest": { "protocol_id": 344 }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 944 + }, "minecraft:exposed_copper": { - "protocol_id": 921 + "protocol_id": 933 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 999 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 975 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 991 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 983 }, "minecraft:exposed_cut_copper": { - "protocol_id": 927 + "protocol_id": 940 }, "minecraft:exposed_cut_copper_slab": { - "protocol_id": 935 + "protocol_id": 956 }, "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 931 + "protocol_id": 952 }, "minecraft:farmland": { "protocol_id": 184 @@ -1359,13 +1398,13 @@ "protocol_id": 355 }, "minecraft:flowering_azalea": { - "protocol_id": 960 + "protocol_id": 1013 }, "minecraft:flowering_azalea_leaves": { "protocol_id": 91 }, "minecraft:frogspawn": { - "protocol_id": 1000 + "protocol_id": 1053 }, "minecraft:frosted_ice": { "protocol_id": 606 @@ -1380,13 +1419,13 @@ "protocol_id": 94 }, "minecraft:glass_pane": { - "protocol_id": 311 + "protocol_id": 310 }, "minecraft:glow_lichen": { "protocol_id": 318 }, "minecraft:glowstone": { - "protocol_id": 263 + "protocol_id": 262 }, "minecraft:gold_block": { "protocol_id": 163 @@ -1406,9 +1445,6 @@ "minecraft:granite_wall": { "protocol_id": 763 }, - "minecraft:grass": { - "protocol_id": 123 - }, "minecraft:grass_block": { "protocol_id": 8 }, @@ -1443,7 +1479,7 @@ "protocol_id": 621 }, "minecraft:gray_stained_glass": { - "protocol_id": 276 + "protocol_id": 275 }, "minecraft:gray_stained_glass_pane": { "protocol_id": 448 @@ -1485,7 +1521,7 @@ "protocol_id": 627 }, "minecraft:green_stained_glass": { - "protocol_id": 282 + "protocol_id": 281 }, "minecraft:green_stained_glass_pane": { "protocol_id": 454 @@ -1503,7 +1539,7 @@ "protocol_id": 779 }, "minecraft:hanging_roots": { - "protocol_id": 967 + "protocol_id": 1020 }, "minecraft:hay_block": { "protocol_id": 477 @@ -1536,28 +1572,28 @@ "protocol_id": 248 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 305 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 301 - }, - "minecraft:infested_cracked_stone_bricks": { "protocol_id": 304 }, - "minecraft:infested_deepslate": { - "protocol_id": 990 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 303 - }, - "minecraft:infested_stone": { + "minecraft:infested_cobblestone": { "protocol_id": 300 }, - "minecraft:infested_stone_bricks": { + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 303 + }, + "minecraft:infested_deepslate": { + "protocol_id": 1043 + }, + "minecraft:infested_mossy_stone_bricks": { "protocol_id": 302 }, + "minecraft:infested_stone": { + "protocol_id": 299 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 301 + }, "minecraft:iron_bars": { - "protocol_id": 309 + "protocol_id": 308 }, "minecraft:iron_block": { "protocol_id": 164 @@ -1572,7 +1608,7 @@ "protocol_id": 466 }, "minecraft:jack_o_lantern": { - "protocol_id": 266 + "protocol_id": 265 }, "minecraft:jigsaw": { "protocol_id": 833 @@ -1620,7 +1656,7 @@ "protocol_id": 350 }, "minecraft:jungle_trapdoor": { - "protocol_id": 288 + "protocol_id": 287 }, "minecraft:jungle_wall_hanging_sign": { "protocol_id": 224 @@ -1698,7 +1734,7 @@ "protocol_id": 617 }, "minecraft:light_blue_stained_glass": { - "protocol_id": 272 + "protocol_id": 271 }, "minecraft:light_blue_stained_glass_pane": { "protocol_id": 444 @@ -1740,7 +1776,7 @@ "protocol_id": 622 }, "minecraft:light_gray_stained_glass": { - "protocol_id": 277 + "protocol_id": 276 }, "minecraft:light_gray_stained_glass_pane": { "protocol_id": 449 @@ -1758,7 +1794,7 @@ "protocol_id": 412 }, "minecraft:lightning_rod": { - "protocol_id": 953 + "protocol_id": 1006 }, "minecraft:lilac": { "protocol_id": 498 @@ -1797,7 +1833,7 @@ "protocol_id": 619 }, "minecraft:lime_stained_glass": { - "protocol_id": 274 + "protocol_id": 273 }, "minecraft:lime_stained_glass_pane": { "protocol_id": 446 @@ -1845,7 +1881,7 @@ "protocol_id": 616 }, "minecraft:magenta_stained_glass": { - "protocol_id": 271 + "protocol_id": 270 }, "minecraft:magenta_stained_glass_pane": { "protocol_id": 443 @@ -1905,7 +1941,7 @@ "protocol_id": 460 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 292 + "protocol_id": 291 }, "minecraft:mangrove_wall_hanging_sign": { "protocol_id": 226 @@ -1926,10 +1962,10 @@ "protocol_id": 316 }, "minecraft:moss_block": { - "protocol_id": 963 + "protocol_id": 1016 }, "minecraft:moss_carpet": { - "protocol_id": 961 + "protocol_id": 1014 }, "minecraft:mossy_cobblestone": { "protocol_id": 169 @@ -1953,13 +1989,13 @@ "protocol_id": 762 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 295 + "protocol_id": 294 }, "minecraft:moving_piston": { "protocol_id": 146 }, "minecraft:mud": { - "protocol_id": 969 + "protocol_id": 1022 }, "minecraft:mud_brick_slab": { "protocol_id": 557 @@ -1971,13 +2007,13 @@ "protocol_id": 765 }, "minecraft:mud_bricks": { - "protocol_id": 299 + "protocol_id": 298 }, "minecraft:muddy_mangrove_roots": { "protocol_id": 55 }, "minecraft:mushroom_stem": { - "protocol_id": 308 + "protocol_id": 307 }, "minecraft:mycelium": { "protocol_id": 323 @@ -2001,7 +2037,7 @@ "protocol_id": 45 }, "minecraft:nether_portal": { - "protocol_id": 264 + "protocol_id": 263 }, "minecraft:nether_quartz_ore": { "protocol_id": 417 @@ -2019,7 +2055,7 @@ "protocol_id": 840 }, "minecraft:netherrack": { - "protocol_id": 256 + "protocol_id": 255 }, "minecraft:note_block": { "protocol_id": 102 @@ -2064,7 +2100,7 @@ "protocol_id": 176 }, "minecraft:oak_trapdoor": { - "protocol_id": 285 + "protocol_id": 284 }, "minecraft:oak_wall_hanging_sign": { "protocol_id": 219 @@ -2082,7 +2118,7 @@ "protocol_id": 170 }, "minecraft:ochre_froglight": { - "protocol_id": 997 + "protocol_id": 1050 }, "minecraft:orange_banner": { "protocol_id": 504 @@ -2112,7 +2148,7 @@ "protocol_id": 615 }, "minecraft:orange_stained_glass": { - "protocol_id": 270 + "protocol_id": 269 }, "minecraft:orange_stained_glass_pane": { "protocol_id": 442 @@ -2132,26 +2168,41 @@ "minecraft:oxeye_daisy": { "protocol_id": 157 }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 942 + }, "minecraft:oxidized_copper": { - "protocol_id": 919 + "protocol_id": 935 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1001 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 976 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 993 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 984 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 925 + "protocol_id": 938 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 933 + "protocol_id": 954 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 929 + "protocol_id": 950 }, "minecraft:packed_ice": { "protocol_id": 496 }, "minecraft:packed_mud": { - "protocol_id": 298 + "protocol_id": 297 }, "minecraft:pearlescent_froglight": { - "protocol_id": 999 + "protocol_id": 1052 }, "minecraft:peony": { "protocol_id": 500 @@ -2190,13 +2241,13 @@ "protocol_id": 636 }, "minecraft:pink_petals": { - "protocol_id": 962 + "protocol_id": 1015 }, "minecraft:pink_shulker_box": { "protocol_id": 620 }, "minecraft:pink_stained_glass": { - "protocol_id": 275 + "protocol_id": 274 }, "minecraft:pink_stained_glass_pane": { "protocol_id": 447 @@ -2235,7 +2286,7 @@ "protocol_id": 11 }, "minecraft:pointed_dripstone": { - "protocol_id": 954 + "protocol_id": 1007 }, "minecraft:polished_andesite": { "protocol_id": 7 @@ -2247,7 +2298,7 @@ "protocol_id": 744 }, "minecraft:polished_basalt": { - "protocol_id": 260 + "protocol_id": 259 }, "minecraft:polished_blackstone": { "protocol_id": 853 @@ -2280,16 +2331,16 @@ "protocol_id": 865 }, "minecraft:polished_deepslate": { - "protocol_id": 975 + "protocol_id": 1028 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 977 + "protocol_id": 1030 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 976 + "protocol_id": 1029 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 978 + "protocol_id": 1031 }, "minecraft:polished_diorite": { "protocol_id": 5 @@ -2309,6 +2360,18 @@ "minecraft:polished_granite_stairs": { "protocol_id": 732 }, + "minecraft:polished_tuff": { + "protocol_id": 913 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 914 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 915 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 916 + }, "minecraft:poppy": { "protocol_id": 149 }, @@ -2322,7 +2385,7 @@ "protocol_id": 369 }, "minecraft:potted_azalea_bush": { - "protocol_id": 995 + "protocol_id": 1048 }, "minecraft:potted_azure_bluet": { "protocol_id": 370 @@ -2367,7 +2430,7 @@ "protocol_id": 365 }, "minecraft:potted_flowering_azalea_bush": { - "protocol_id": 996 + "protocol_id": 1049 }, "minecraft:potted_jungle_sapling": { "protocol_id": 360 @@ -2418,7 +2481,7 @@ "protocol_id": 378 }, "minecraft:powder_snow": { - "protocol_id": 912 + "protocol_id": 925 }, "minecraft:powder_snow_cauldron": { "protocol_id": 334 @@ -2448,7 +2511,7 @@ "protocol_id": 760 }, "minecraft:pumpkin": { - "protocol_id": 255 + "protocol_id": 311 }, "minecraft:pumpkin_stem": { "protocol_id": 315 @@ -2481,7 +2544,7 @@ "protocol_id": 624 }, "minecraft:purple_stained_glass": { - "protocol_id": 279 + "protocol_id": 278 }, "minecraft:purple_stained_glass_pane": { "protocol_id": 451 @@ -2526,13 +2589,13 @@ "protocol_id": 197 }, "minecraft:raw_copper_block": { - "protocol_id": 993 + "protocol_id": 1046 }, "minecraft:raw_gold_block": { - "protocol_id": 994 + "protocol_id": 1047 }, "minecraft:raw_iron_block": { - "protocol_id": 992 + "protocol_id": 1045 }, "minecraft:red_banner": { "protocol_id": 517 @@ -2562,7 +2625,7 @@ "protocol_id": 162 }, "minecraft:red_mushroom_block": { - "protocol_id": 307 + "protocol_id": 306 }, "minecraft:red_nether_brick_slab": { "protocol_id": 756 @@ -2595,7 +2658,7 @@ "protocol_id": 628 }, "minecraft:red_stained_glass": { - "protocol_id": 283 + "protocol_id": 282 }, "minecraft:red_stained_glass_pane": { "protocol_id": 455 @@ -2631,10 +2694,10 @@ "protocol_id": 178 }, "minecraft:reinforced_deepslate": { - "protocol_id": 1001 + "protocol_id": 1054 }, "minecraft:repeater": { - "protocol_id": 268 + "protocol_id": 267 }, "minecraft:repeating_command_block": { "protocol_id": 604 @@ -2643,7 +2706,7 @@ "protocol_id": 843 }, "minecraft:rooted_dirt": { - "protocol_id": 968 + "protocol_id": 1021 }, "minecraft:rose_bush": { "protocol_id": 499 @@ -2667,19 +2730,19 @@ "protocol_id": 772 }, "minecraft:sculk": { - "protocol_id": 915 + "protocol_id": 928 }, "minecraft:sculk_catalyst": { - "protocol_id": 917 + "protocol_id": 930 }, "minecraft:sculk_sensor": { - "protocol_id": 913 + "protocol_id": 926 }, "minecraft:sculk_shrieker": { - "protocol_id": 918 + "protocol_id": 931 }, "minecraft:sculk_vein": { - "protocol_id": 916 + "protocol_id": 929 }, "minecraft:sea_lantern": { "protocol_id": 476 @@ -2690,6 +2753,9 @@ "minecraft:seagrass": { "protocol_id": 126 }, + "minecraft:short_grass": { + "protocol_id": 123 + }, "minecraft:shroomlight": { "protocol_id": 804 }, @@ -2709,7 +2775,7 @@ "protocol_id": 908 }, "minecraft:small_dripleaf": { - "protocol_id": 966 + "protocol_id": 1019 }, "minecraft:smithing_table": { "protocol_id": 781 @@ -2718,7 +2784,7 @@ "protocol_id": 775 }, "minecraft:smooth_basalt": { - "protocol_id": 991 + "protocol_id": 1044 }, "minecraft:smooth_quartz": { "protocol_id": 565 @@ -2772,16 +2838,16 @@ "protocol_id": 785 }, "minecraft:soul_sand": { - "protocol_id": 257 + "protocol_id": 256 }, "minecraft:soul_soil": { - "protocol_id": 258 + "protocol_id": 257 }, "minecraft:soul_torch": { - "protocol_id": 261 + "protocol_id": 260 }, "minecraft:soul_wall_torch": { - "protocol_id": 262 + "protocol_id": 261 }, "minecraft:spawner": { "protocol_id": 175 @@ -2790,7 +2856,7 @@ "protocol_id": 92 }, "minecraft:spore_blossom": { - "protocol_id": 958 + "protocol_id": 1011 }, "minecraft:spruce_button": { "protocol_id": 386 @@ -2832,7 +2898,7 @@ "protocol_id": 348 }, "minecraft:spruce_trapdoor": { - "protocol_id": 286 + "protocol_id": 285 }, "minecraft:spruce_wall_hanging_sign": { "protocol_id": 220 @@ -2859,7 +2925,7 @@ "protocol_id": 764 }, "minecraft:stone_bricks": { - "protocol_id": 294 + "protocol_id": 293 }, "minecraft:stone_button": { "protocol_id": 246 @@ -2973,7 +3039,7 @@ "protocol_id": 494 }, "minecraft:tinted_glass": { - "protocol_id": 911 + "protocol_id": 924 }, "minecraft:tnt": { "protocol_id": 166 @@ -2990,6 +3056,9 @@ "minecraft:trapped_chest": { "protocol_id": 411 }, + "minecraft:trial_spawner": { + "protocol_id": 1057 + }, "minecraft:tripwire": { "protocol_id": 346 }, @@ -3011,6 +3080,27 @@ "minecraft:tuff": { "protocol_id": 909 }, + "minecraft:tuff_brick_slab": { + "protocol_id": 919 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 920 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 921 + }, + "minecraft:tuff_bricks": { + "protocol_id": 918 + }, + "minecraft:tuff_slab": { + "protocol_id": 910 + }, + "minecraft:tuff_stairs": { + "protocol_id": 911 + }, + "minecraft:tuff_wall": { + "protocol_id": 912 + }, "minecraft:turtle_egg": { "protocol_id": 681 }, @@ -3021,7 +3111,7 @@ "protocol_id": 808 }, "minecraft:verdant_froglight": { - "protocol_id": 998 + "protocol_id": 1051 }, "minecraft:vine": { "protocol_id": 317 @@ -3095,65 +3185,140 @@ "minecraft:water_cauldron": { "protocol_id": 332 }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 949 + }, "minecraft:waxed_copper_block": { - "protocol_id": 937 + "protocol_id": 958 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1002 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 978 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 994 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 986 }, "minecraft:waxed_cut_copper": { - "protocol_id": 944 + "protocol_id": 965 }, "minecraft:waxed_cut_copper_slab": { - "protocol_id": 952 + "protocol_id": 973 }, "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 969 + }, + "minecraft:waxed_exposed_chiseled_copper": { "protocol_id": 948 }, "minecraft:waxed_exposed_copper": { - "protocol_id": 939 + "protocol_id": 960 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1003 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 979 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 995 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 987 }, "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 943 + "protocol_id": 964 }, "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 951 + "protocol_id": 972 }, "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 947 + "protocol_id": 968 }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 940 - }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 941 - }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 949 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 945 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 938 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 942 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 950 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { + "minecraft:waxed_oxidized_chiseled_copper": { "protocol_id": 946 }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 961 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1005 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 980 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 997 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 988 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 962 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 970 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 966 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 947 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 959 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1004 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 981 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 996 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 989 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 963 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 971 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 967 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 943 + }, "minecraft:weathered_copper": { - "protocol_id": 920 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 926 - }, - "minecraft:weathered_cut_copper_slab": { "protocol_id": 934 }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1000 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 977 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 992 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 985 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 939 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 955 + }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 930 + "protocol_id": 951 }, "minecraft:weeping_vines": { "protocol_id": 805 @@ -3195,7 +3360,7 @@ "protocol_id": 614 }, "minecraft:white_stained_glass": { - "protocol_id": 269 + "protocol_id": 268 }, "minecraft:white_stained_glass_pane": { "protocol_id": 441 @@ -3249,7 +3414,7 @@ "protocol_id": 618 }, "minecraft:yellow_stained_glass": { - "protocol_id": 273 + "protocol_id": 272 }, "minecraft:yellow_stained_glass_pane": { "protocol_id": 445 @@ -3322,6 +3487,9 @@ "minecraft:conduit": { "protocol_id": 25 }, + "minecraft:crafter": { + "protocol_id": 41 + }, "minecraft:daylight_detector": { "protocol_id": 16 }, @@ -3396,6 +3564,9 @@ }, "minecraft:trapped_chest": { "protocol_id": 2 + }, + "minecraft:trial_spawner": { + "protocol_id": 42 } }, "protocol_id": 10 @@ -3441,6 +3612,728 @@ }, "protocol_id": 40 }, + "minecraft:block_type": { + "entries": { + "minecraft:air": { + "protocol_id": 1 + }, + "minecraft:amethyst": { + "protocol_id": 2 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 3 + }, + "minecraft:anvil": { + "protocol_id": 4 + }, + "minecraft:attached_stem": { + "protocol_id": 5 + }, + "minecraft:azalea": { + "protocol_id": 6 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 7 + }, + "minecraft:bamboo_stalk": { + "protocol_id": 8 + }, + "minecraft:banner": { + "protocol_id": 9 + }, + "minecraft:barrel": { + "protocol_id": 10 + }, + "minecraft:barrier": { + "protocol_id": 11 + }, + "minecraft:base_coral_fan": { + "protocol_id": 12 + }, + "minecraft:base_coral_plant": { + "protocol_id": 13 + }, + "minecraft:base_coral_wall_fan": { + "protocol_id": 14 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:bed": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 17 + }, + "minecraft:beetroot": { + "protocol_id": 18 + }, + "minecraft:bell": { + "protocol_id": 19 + }, + "minecraft:big_dripleaf": { + "protocol_id": 20 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 21 + }, + "minecraft:blast_furnace": { + "protocol_id": 22 + }, + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:brewing_stand": { + "protocol_id": 23 + }, + "minecraft:brushable": { + "protocol_id": 24 + }, + "minecraft:bubble_column": { + "protocol_id": 25 + }, + "minecraft:budding_amethyst": { + "protocol_id": 26 + }, + "minecraft:button": { + "protocol_id": 27 + }, + "minecraft:cactus": { + "protocol_id": 28 + }, + "minecraft:cake": { + "protocol_id": 29 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 30 + }, + "minecraft:campfire": { + "protocol_id": 31 + }, + "minecraft:candle": { + "protocol_id": 33 + }, + "minecraft:candle_cake": { + "protocol_id": 32 + }, + "minecraft:carpet": { + "protocol_id": 34 + }, + "minecraft:carrot": { + "protocol_id": 35 + }, + "minecraft:cartography_table": { + "protocol_id": 36 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 37 + }, + "minecraft:cauldron": { + "protocol_id": 38 + }, + "minecraft:cave_vines": { + "protocol_id": 39 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 40 + }, + "minecraft:ceiling_hanging_sign": { + "protocol_id": 41 + }, + "minecraft:chain": { + "protocol_id": 42 + }, + "minecraft:cherry_leaves": { + "protocol_id": 43 + }, + "minecraft:chest": { + "protocol_id": 44 + }, + "minecraft:chiseled_book_shelf": { + "protocol_id": 45 + }, + "minecraft:chorus_flower": { + "protocol_id": 46 + }, + "minecraft:chorus_plant": { + "protocol_id": 47 + }, + "minecraft:cocoa": { + "protocol_id": 48 + }, + "minecraft:colored_falling": { + "protocol_id": 49 + }, + "minecraft:command": { + "protocol_id": 50 + }, + "minecraft:comparator": { + "protocol_id": 51 + }, + "minecraft:composter": { + "protocol_id": 52 + }, + "minecraft:concrete_powder": { + "protocol_id": 53 + }, + "minecraft:conduit": { + "protocol_id": 54 + }, + "minecraft:copper_bulb_block": { + "protocol_id": 55 + }, + "minecraft:coral": { + "protocol_id": 56 + }, + "minecraft:coral_fan": { + "protocol_id": 57 + }, + "minecraft:coral_plant": { + "protocol_id": 58 + }, + "minecraft:coral_wall_fan": { + "protocol_id": 59 + }, + "minecraft:crafter": { + "protocol_id": 60 + }, + "minecraft:crafting_table": { + "protocol_id": 61 + }, + "minecraft:crop": { + "protocol_id": 62 + }, + "minecraft:crying_obsidian": { + "protocol_id": 63 + }, + "minecraft:daylight_detector": { + "protocol_id": 64 + }, + "minecraft:dead_bush": { + "protocol_id": 65 + }, + "minecraft:decorated_pot": { + "protocol_id": 66 + }, + "minecraft:detector_rail": { + "protocol_id": 67 + }, + "minecraft:dirt_path": { + "protocol_id": 68 + }, + "minecraft:dispenser": { + "protocol_id": 69 + }, + "minecraft:door": { + "protocol_id": 70 + }, + "minecraft:double_plant": { + "protocol_id": 71 + }, + "minecraft:dragon_egg": { + "protocol_id": 72 + }, + "minecraft:drop_experience": { + "protocol_id": 73 + }, + "minecraft:dropper": { + "protocol_id": 74 + }, + "minecraft:enchantment_table": { + "protocol_id": 75 + }, + "minecraft:end_gateway": { + "protocol_id": 77 + }, + "minecraft:end_portal": { + "protocol_id": 78 + }, + "minecraft:end_portal_frame": { + "protocol_id": 79 + }, + "minecraft:end_rod": { + "protocol_id": 80 + }, + "minecraft:ender_chest": { + "protocol_id": 76 + }, + "minecraft:farm": { + "protocol_id": 81 + }, + "minecraft:fence": { + "protocol_id": 82 + }, + "minecraft:fence_gate": { + "protocol_id": 83 + }, + "minecraft:fire": { + "protocol_id": 84 + }, + "minecraft:fletching_table": { + "protocol_id": 85 + }, + "minecraft:flower": { + "protocol_id": 86 + }, + "minecraft:flower_pot": { + "protocol_id": 87 + }, + "minecraft:frogspawn": { + "protocol_id": 88 + }, + "minecraft:frosted_ice": { + "protocol_id": 89 + }, + "minecraft:fungus": { + "protocol_id": 90 + }, + "minecraft:furnace": { + "protocol_id": 91 + }, + "minecraft:glazed_terracotta": { + "protocol_id": 92 + }, + "minecraft:glow_lichen": { + "protocol_id": 93 + }, + "minecraft:grass": { + "protocol_id": 94 + }, + "minecraft:grindstone": { + "protocol_id": 95 + }, + "minecraft:half_transparent": { + "protocol_id": 96 + }, + "minecraft:hanging_roots": { + "protocol_id": 97 + }, + "minecraft:hay": { + "protocol_id": 98 + }, + "minecraft:honey": { + "protocol_id": 99 + }, + "minecraft:hopper": { + "protocol_id": 100 + }, + "minecraft:huge_mushroom": { + "protocol_id": 101 + }, + "minecraft:ice": { + "protocol_id": 102 + }, + "minecraft:infested": { + "protocol_id": 103 + }, + "minecraft:infested_rotated_pillar": { + "protocol_id": 104 + }, + "minecraft:iron_bars": { + "protocol_id": 105 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 106 + }, + "minecraft:jigsaw": { + "protocol_id": 107 + }, + "minecraft:jukebox": { + "protocol_id": 108 + }, + "minecraft:kelp": { + "protocol_id": 109 + }, + "minecraft:kelp_plant": { + "protocol_id": 110 + }, + "minecraft:ladder": { + "protocol_id": 111 + }, + "minecraft:lantern": { + "protocol_id": 112 + }, + "minecraft:lava_cauldron": { + "protocol_id": 113 + }, + "minecraft:layered_cauldron": { + "protocol_id": 114 + }, + "minecraft:leaves": { + "protocol_id": 115 + }, + "minecraft:lectern": { + "protocol_id": 116 + }, + "minecraft:lever": { + "protocol_id": 117 + }, + "minecraft:light": { + "protocol_id": 118 + }, + "minecraft:lightning_rod": { + "protocol_id": 119 + }, + "minecraft:liquid": { + "protocol_id": 120 + }, + "minecraft:loom": { + "protocol_id": 121 + }, + "minecraft:magma": { + "protocol_id": 122 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 123 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 124 + }, + "minecraft:mangrove_roots": { + "protocol_id": 125 + }, + "minecraft:moss": { + "protocol_id": 126 + }, + "minecraft:moving_piston": { + "protocol_id": 127 + }, + "minecraft:mud": { + "protocol_id": 128 + }, + "minecraft:mushroom": { + "protocol_id": 129 + }, + "minecraft:mycelium": { + "protocol_id": 130 + }, + "minecraft:nether_portal": { + "protocol_id": 131 + }, + "minecraft:nether_sprouts": { + "protocol_id": 133 + }, + "minecraft:nether_wart": { + "protocol_id": 134 + }, + "minecraft:netherrack": { + "protocol_id": 132 + }, + "minecraft:note": { + "protocol_id": 135 + }, + "minecraft:nylium": { + "protocol_id": 136 + }, + "minecraft:observer": { + "protocol_id": 137 + }, + "minecraft:piglinwallskull": { + "protocol_id": 138 + }, + "minecraft:pink_petals": { + "protocol_id": 139 + }, + "minecraft:piston_base": { + "protocol_id": 140 + }, + "minecraft:piston_head": { + "protocol_id": 141 + }, + "minecraft:pitcher_crop": { + "protocol_id": 142 + }, + "minecraft:player_head": { + "protocol_id": 143 + }, + "minecraft:player_wall_head": { + "protocol_id": 144 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 145 + }, + "minecraft:potato": { + "protocol_id": 146 + }, + "minecraft:powder_snow": { + "protocol_id": 147 + }, + "minecraft:powered": { + "protocol_id": 148 + }, + "minecraft:powered_rail": { + "protocol_id": 149 + }, + "minecraft:pressure_plate": { + "protocol_id": 150 + }, + "minecraft:pumpkin": { + "protocol_id": 151 + }, + "minecraft:rail": { + "protocol_id": 152 + }, + "minecraft:redstone_lamp": { + "protocol_id": 153 + }, + "minecraft:redstone_ore": { + "protocol_id": 154 + }, + "minecraft:redstone_torch": { + "protocol_id": 155 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 156 + }, + "minecraft:redstone_wire": { + "protocol_id": 157 + }, + "minecraft:repeater": { + "protocol_id": 158 + }, + "minecraft:respawn_anchor": { + "protocol_id": 159 + }, + "minecraft:rooted_dirt": { + "protocol_id": 160 + }, + "minecraft:roots": { + "protocol_id": 161 + }, + "minecraft:rotated_pillar": { + "protocol_id": 162 + }, + "minecraft:sapling": { + "protocol_id": 163 + }, + "minecraft:scaffolding": { + "protocol_id": 164 + }, + "minecraft:sculk": { + "protocol_id": 166 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 165 + }, + "minecraft:sculk_sensor": { + "protocol_id": 167 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 168 + }, + "minecraft:sculk_vein": { + "protocol_id": 169 + }, + "minecraft:sea_pickle": { + "protocol_id": 171 + }, + "minecraft:seagrass": { + "protocol_id": 170 + }, + "minecraft:shulker_box": { + "protocol_id": 172 + }, + "minecraft:skull": { + "protocol_id": 173 + }, + "minecraft:slab": { + "protocol_id": 174 + }, + "minecraft:slime": { + "protocol_id": 175 + }, + "minecraft:small_dripleaf": { + "protocol_id": 176 + }, + "minecraft:smithing_table": { + "protocol_id": 177 + }, + "minecraft:smoker": { + "protocol_id": 178 + }, + "minecraft:sniffer_egg": { + "protocol_id": 179 + }, + "minecraft:snow_layer": { + "protocol_id": 180 + }, + "minecraft:snowy_dirt": { + "protocol_id": 181 + }, + "minecraft:soul_fire": { + "protocol_id": 182 + }, + "minecraft:soul_sand": { + "protocol_id": 183 + }, + "minecraft:spawner": { + "protocol_id": 184 + }, + "minecraft:sponge": { + "protocol_id": 185 + }, + "minecraft:spore_blossom": { + "protocol_id": 186 + }, + "minecraft:stained_glass": { + "protocol_id": 188 + }, + "minecraft:stained_glass_pane": { + "protocol_id": 187 + }, + "minecraft:stair": { + "protocol_id": 189 + }, + "minecraft:standing_sign": { + "protocol_id": 190 + }, + "minecraft:stem": { + "protocol_id": 191 + }, + "minecraft:stonecutter": { + "protocol_id": 192 + }, + "minecraft:structure": { + "protocol_id": 193 + }, + "minecraft:structure_void": { + "protocol_id": 194 + }, + "minecraft:sugar_cane": { + "protocol_id": 195 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 196 + }, + "minecraft:tall_flower": { + "protocol_id": 197 + }, + "minecraft:tall_grass": { + "protocol_id": 198 + }, + "minecraft:tall_seagrass": { + "protocol_id": 199 + }, + "minecraft:target": { + "protocol_id": 200 + }, + "minecraft:tinted_glass": { + "protocol_id": 201 + }, + "minecraft:tnt": { + "protocol_id": 202 + }, + "minecraft:torch": { + "protocol_id": 204 + }, + "minecraft:torchflower_crop": { + "protocol_id": 203 + }, + "minecraft:transparent": { + "protocol_id": 205 + }, + "minecraft:trapdoor": { + "protocol_id": 206 + }, + "minecraft:trapped_chest": { + "protocol_id": 207 + }, + "minecraft:trial_spawner": { + "protocol_id": 208 + }, + "minecraft:trip_wire_hook": { + "protocol_id": 209 + }, + "minecraft:tripwire": { + "protocol_id": 210 + }, + "minecraft:turtle_egg": { + "protocol_id": 211 + }, + "minecraft:twisting_vines": { + "protocol_id": 213 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 212 + }, + "minecraft:vine": { + "protocol_id": 214 + }, + "minecraft:wall": { + "protocol_id": 220 + }, + "minecraft:wall_banner": { + "protocol_id": 215 + }, + "minecraft:wall_hanging_sign": { + "protocol_id": 216 + }, + "minecraft:wall_sign": { + "protocol_id": 217 + }, + "minecraft:wall_skull": { + "protocol_id": 218 + }, + "minecraft:wall_torch": { + "protocol_id": 219 + }, + "minecraft:waterlily": { + "protocol_id": 221 + }, + "minecraft:waterlogged_transparent": { + "protocol_id": 222 + }, + "minecraft:weathering_copper_bulb": { + "protocol_id": 223 + }, + "minecraft:weathering_copper_door": { + "protocol_id": 224 + }, + "minecraft:weathering_copper_full": { + "protocol_id": 225 + }, + "minecraft:weathering_copper_grate": { + "protocol_id": 226 + }, + "minecraft:weathering_copper_slab": { + "protocol_id": 227 + }, + "minecraft:weathering_copper_stair": { + "protocol_id": 228 + }, + "minecraft:weathering_copper_trap_door": { + "protocol_id": 229 + }, + "minecraft:web": { + "protocol_id": 230 + }, + "minecraft:weeping_vines": { + "protocol_id": 232 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 231 + }, + "minecraft:weighted_pressure_plate": { + "protocol_id": 233 + }, + "minecraft:wet_sponge": { + "protocol_id": 234 + }, + "minecraft:wither_rose": { + "protocol_id": 235 + }, + "minecraft:wither_skull": { + "protocol_id": 236 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 237 + }, + "minecraft:wool_carpet": { + "protocol_id": 238 + } + }, + "protocol_id": 58 + }, "minecraft:cat_variant": { "entries": { "minecraft:all_black": { @@ -3477,7 +4370,7 @@ "protocol_id": 8 } }, - "protocol_id": 60 + "protocol_id": 62 }, "minecraft:chunk_status": { "default": "minecraft:empty", @@ -3542,7 +4435,7 @@ "protocol_id": 5 }, "minecraft:angle": { - "protocol_id": 26 + "protocol_id": 27 }, "minecraft:block_pos": { "protocol_id": 8 @@ -3563,106 +4456,109 @@ "protocol_id": 17 }, "minecraft:dimension": { - "protocol_id": 38 + "protocol_id": 39 }, "minecraft:entity": { "protocol_id": 6 }, "minecraft:entity_anchor": { - "protocol_id": 35 + "protocol_id": 36 }, "minecraft:float_range": { - "protocol_id": 37 + "protocol_id": 38 }, "minecraft:function": { - "protocol_id": 34 + "protocol_id": 35 }, "minecraft:game_profile": { "protocol_id": 7 }, "minecraft:gamemode": { - "protocol_id": 39 + "protocol_id": 40 }, "minecraft:heightmap": { - "protocol_id": 47 + "protocol_id": 48 }, "minecraft:int_range": { - "protocol_id": 36 + "protocol_id": 37 }, "minecraft:item_predicate": { "protocol_id": 15 }, "minecraft:item_slot": { - "protocol_id": 32 + "protocol_id": 33 }, "minecraft:item_stack": { "protocol_id": 14 }, "minecraft:message": { - "protocol_id": 18 - }, - "minecraft:nbt_compound_tag": { "protocol_id": 19 }, - "minecraft:nbt_path": { - "protocol_id": 21 - }, - "minecraft:nbt_tag": { + "minecraft:nbt_compound_tag": { "protocol_id": 20 }, - "minecraft:objective": { + "minecraft:nbt_path": { "protocol_id": 22 }, - "minecraft:objective_criteria": { + "minecraft:nbt_tag": { + "protocol_id": 21 + }, + "minecraft:objective": { "protocol_id": 23 }, - "minecraft:operation": { + "minecraft:objective_criteria": { "protocol_id": 24 }, - "minecraft:particle": { + "minecraft:operation": { "protocol_id": 25 }, - "minecraft:resource": { - "protocol_id": 43 + "minecraft:particle": { + "protocol_id": 26 }, - "minecraft:resource_key": { + "minecraft:resource": { "protocol_id": 44 }, - "minecraft:resource_location": { - "protocol_id": 33 - }, - "minecraft:resource_or_tag": { - "protocol_id": 41 - }, - "minecraft:resource_or_tag_key": { - "protocol_id": 42 - }, - "minecraft:rotation": { - "protocol_id": 27 - }, - "minecraft:score_holder": { - "protocol_id": 29 - }, - "minecraft:scoreboard_slot": { - "protocol_id": 28 - }, - "minecraft:swizzle": { - "protocol_id": 30 - }, - "minecraft:team": { - "protocol_id": 31 - }, - "minecraft:template_mirror": { + "minecraft:resource_key": { "protocol_id": 45 }, - "minecraft:template_rotation": { + "minecraft:resource_location": { + "protocol_id": 34 + }, + "minecraft:resource_or_tag": { + "protocol_id": 42 + }, + "minecraft:resource_or_tag_key": { + "protocol_id": 43 + }, + "minecraft:rotation": { + "protocol_id": 28 + }, + "minecraft:score_holder": { + "protocol_id": 30 + }, + "minecraft:scoreboard_slot": { + "protocol_id": 29 + }, + "minecraft:style": { + "protocol_id": 18 + }, + "minecraft:swizzle": { + "protocol_id": 31 + }, + "minecraft:team": { + "protocol_id": 32 + }, + "minecraft:template_mirror": { "protocol_id": 46 }, + "minecraft:template_rotation": { + "protocol_id": 47 + }, "minecraft:time": { - "protocol_id": 40 + "protocol_id": 41 }, "minecraft:uuid": { - "protocol_id": 48 + "protocol_id": 49 }, "minecraft:vec2": { "protocol_id": 11 @@ -3718,7 +4614,7 @@ "protocol_id": 7 } }, - "protocol_id": 65 + "protocol_id": 67 }, "minecraft:custom_stat": { "entries": { @@ -4019,7 +4915,7 @@ "protocol_id": 20 } }, - "protocol_id": 64 + "protocol_id": 66 }, "minecraft:enchantment": { "entries": { @@ -4176,347 +5072,353 @@ "minecraft:boat": { "protocol_id": 9 }, - "minecraft:camel": { + "minecraft:breeze": { "protocol_id": 10 }, - "minecraft:cat": { + "minecraft:camel": { "protocol_id": 11 }, - "minecraft:cave_spider": { + "minecraft:cat": { "protocol_id": 12 }, - "minecraft:chest_boat": { + "minecraft:cave_spider": { "protocol_id": 13 }, - "minecraft:chest_minecart": { + "minecraft:chest_boat": { "protocol_id": 14 }, - "minecraft:chicken": { + "minecraft:chest_minecart": { "protocol_id": 15 }, - "minecraft:cod": { + "minecraft:chicken": { "protocol_id": 16 }, - "minecraft:command_block_minecart": { + "minecraft:cod": { "protocol_id": 17 }, - "minecraft:cow": { + "minecraft:command_block_minecart": { "protocol_id": 18 }, - "minecraft:creeper": { + "minecraft:cow": { "protocol_id": 19 }, - "minecraft:dolphin": { + "minecraft:creeper": { "protocol_id": 20 }, - "minecraft:donkey": { + "minecraft:dolphin": { "protocol_id": 21 }, - "minecraft:dragon_fireball": { + "minecraft:donkey": { "protocol_id": 22 }, - "minecraft:drowned": { + "minecraft:dragon_fireball": { "protocol_id": 23 }, - "minecraft:egg": { + "minecraft:drowned": { "protocol_id": 24 }, - "minecraft:elder_guardian": { + "minecraft:egg": { "protocol_id": 25 }, - "minecraft:end_crystal": { + "minecraft:elder_guardian": { "protocol_id": 26 }, - "minecraft:ender_dragon": { + "minecraft:end_crystal": { "protocol_id": 27 }, - "minecraft:ender_pearl": { + "minecraft:ender_dragon": { "protocol_id": 28 }, - "minecraft:enderman": { + "minecraft:ender_pearl": { "protocol_id": 29 }, - "minecraft:endermite": { + "minecraft:enderman": { "protocol_id": 30 }, - "minecraft:evoker": { + "minecraft:endermite": { "protocol_id": 31 }, - "minecraft:evoker_fangs": { + "minecraft:evoker": { "protocol_id": 32 }, - "minecraft:experience_bottle": { + "minecraft:evoker_fangs": { "protocol_id": 33 }, - "minecraft:experience_orb": { + "minecraft:experience_bottle": { "protocol_id": 34 }, - "minecraft:eye_of_ender": { + "minecraft:experience_orb": { "protocol_id": 35 }, - "minecraft:falling_block": { + "minecraft:eye_of_ender": { "protocol_id": 36 }, - "minecraft:fireball": { - "protocol_id": 57 - }, - "minecraft:firework_rocket": { + "minecraft:falling_block": { "protocol_id": 37 }, - "minecraft:fishing_bobber": { - "protocol_id": 123 - }, - "minecraft:fox": { - "protocol_id": 38 - }, - "minecraft:frog": { - "protocol_id": 39 - }, - "minecraft:furnace_minecart": { - "protocol_id": 40 - }, - "minecraft:ghast": { - "protocol_id": 41 - }, - "minecraft:giant": { - "protocol_id": 42 - }, - "minecraft:glow_item_frame": { - "protocol_id": 43 - }, - "minecraft:glow_squid": { - "protocol_id": 44 - }, - "minecraft:goat": { - "protocol_id": 45 - }, - "minecraft:guardian": { - "protocol_id": 46 - }, - "minecraft:hoglin": { - "protocol_id": 47 - }, - "minecraft:hopper_minecart": { - "protocol_id": 48 - }, - "minecraft:horse": { - "protocol_id": 49 - }, - "minecraft:husk": { - "protocol_id": 50 - }, - "minecraft:illusioner": { - "protocol_id": 51 - }, - "minecraft:interaction": { - "protocol_id": 52 - }, - "minecraft:iron_golem": { - "protocol_id": 53 - }, - "minecraft:item": { - "protocol_id": 54 - }, - "minecraft:item_display": { - "protocol_id": 55 - }, - "minecraft:item_frame": { - "protocol_id": 56 - }, - "minecraft:leash_knot": { + "minecraft:fireball": { "protocol_id": 58 }, - "minecraft:lightning_bolt": { + "minecraft:firework_rocket": { + "protocol_id": 38 + }, + "minecraft:fishing_bobber": { + "protocol_id": 125 + }, + "minecraft:fox": { + "protocol_id": 39 + }, + "minecraft:frog": { + "protocol_id": 40 + }, + "minecraft:furnace_minecart": { + "protocol_id": 41 + }, + "minecraft:ghast": { + "protocol_id": 42 + }, + "minecraft:giant": { + "protocol_id": 43 + }, + "minecraft:glow_item_frame": { + "protocol_id": 44 + }, + "minecraft:glow_squid": { + "protocol_id": 45 + }, + "minecraft:goat": { + "protocol_id": 46 + }, + "minecraft:guardian": { + "protocol_id": 47 + }, + "minecraft:hoglin": { + "protocol_id": 48 + }, + "minecraft:hopper_minecart": { + "protocol_id": 49 + }, + "minecraft:horse": { + "protocol_id": 50 + }, + "minecraft:husk": { + "protocol_id": 51 + }, + "minecraft:illusioner": { + "protocol_id": 52 + }, + "minecraft:interaction": { + "protocol_id": 53 + }, + "minecraft:iron_golem": { + "protocol_id": 54 + }, + "minecraft:item": { + "protocol_id": 55 + }, + "minecraft:item_display": { + "protocol_id": 56 + }, + "minecraft:item_frame": { + "protocol_id": 57 + }, + "minecraft:leash_knot": { "protocol_id": 59 }, - "minecraft:llama": { + "minecraft:lightning_bolt": { "protocol_id": 60 }, - "minecraft:llama_spit": { + "minecraft:llama": { "protocol_id": 61 }, - "minecraft:magma_cube": { + "minecraft:llama_spit": { "protocol_id": 62 }, - "minecraft:marker": { + "minecraft:magma_cube": { "protocol_id": 63 }, - "minecraft:minecart": { + "minecraft:marker": { "protocol_id": 64 }, - "minecraft:mooshroom": { + "minecraft:minecart": { "protocol_id": 65 }, - "minecraft:mule": { + "minecraft:mooshroom": { "protocol_id": 66 }, - "minecraft:ocelot": { + "minecraft:mule": { "protocol_id": 67 }, - "minecraft:painting": { + "minecraft:ocelot": { "protocol_id": 68 }, - "minecraft:panda": { + "minecraft:painting": { "protocol_id": 69 }, - "minecraft:parrot": { + "minecraft:panda": { "protocol_id": 70 }, - "minecraft:phantom": { + "minecraft:parrot": { "protocol_id": 71 }, - "minecraft:pig": { + "minecraft:phantom": { "protocol_id": 72 }, - "minecraft:piglin": { + "minecraft:pig": { "protocol_id": 73 }, - "minecraft:piglin_brute": { + "minecraft:piglin": { "protocol_id": 74 }, - "minecraft:pillager": { + "minecraft:piglin_brute": { "protocol_id": 75 }, - "minecraft:player": { - "protocol_id": 122 - }, - "minecraft:polar_bear": { + "minecraft:pillager": { "protocol_id": 76 }, - "minecraft:potion": { + "minecraft:player": { + "protocol_id": 124 + }, + "minecraft:polar_bear": { "protocol_id": 77 }, - "minecraft:pufferfish": { + "minecraft:potion": { "protocol_id": 78 }, - "minecraft:rabbit": { + "minecraft:pufferfish": { "protocol_id": 79 }, - "minecraft:ravager": { + "minecraft:rabbit": { "protocol_id": 80 }, - "minecraft:salmon": { + "minecraft:ravager": { "protocol_id": 81 }, - "minecraft:sheep": { + "minecraft:salmon": { "protocol_id": 82 }, - "minecraft:shulker": { + "minecraft:sheep": { "protocol_id": 83 }, - "minecraft:shulker_bullet": { + "minecraft:shulker": { "protocol_id": 84 }, - "minecraft:silverfish": { + "minecraft:shulker_bullet": { "protocol_id": 85 }, - "minecraft:skeleton": { + "minecraft:silverfish": { "protocol_id": 86 }, - "minecraft:skeleton_horse": { + "minecraft:skeleton": { "protocol_id": 87 }, - "minecraft:slime": { + "minecraft:skeleton_horse": { "protocol_id": 88 }, - "minecraft:small_fireball": { + "minecraft:slime": { "protocol_id": 89 }, - "minecraft:sniffer": { + "minecraft:small_fireball": { "protocol_id": 90 }, - "minecraft:snow_golem": { + "minecraft:sniffer": { "protocol_id": 91 }, - "minecraft:snowball": { + "minecraft:snow_golem": { "protocol_id": 92 }, - "minecraft:spawner_minecart": { + "minecraft:snowball": { "protocol_id": 93 }, - "minecraft:spectral_arrow": { + "minecraft:spawner_minecart": { "protocol_id": 94 }, - "minecraft:spider": { + "minecraft:spectral_arrow": { "protocol_id": 95 }, - "minecraft:squid": { + "minecraft:spider": { "protocol_id": 96 }, - "minecraft:stray": { + "minecraft:squid": { "protocol_id": 97 }, - "minecraft:strider": { + "minecraft:stray": { "protocol_id": 98 }, - "minecraft:tadpole": { + "minecraft:strider": { "protocol_id": 99 }, - "minecraft:text_display": { + "minecraft:tadpole": { "protocol_id": 100 }, - "minecraft:tnt": { + "minecraft:text_display": { "protocol_id": 101 }, - "minecraft:tnt_minecart": { + "minecraft:tnt": { "protocol_id": 102 }, - "minecraft:trader_llama": { + "minecraft:tnt_minecart": { "protocol_id": 103 }, - "minecraft:trident": { + "minecraft:trader_llama": { "protocol_id": 104 }, - "minecraft:tropical_fish": { + "minecraft:trident": { "protocol_id": 105 }, - "minecraft:turtle": { + "minecraft:tropical_fish": { "protocol_id": 106 }, - "minecraft:vex": { + "minecraft:turtle": { "protocol_id": 107 }, - "minecraft:villager": { + "minecraft:vex": { "protocol_id": 108 }, - "minecraft:vindicator": { + "minecraft:villager": { "protocol_id": 109 }, - "minecraft:wandering_trader": { + "minecraft:vindicator": { "protocol_id": 110 }, - "minecraft:warden": { + "minecraft:wandering_trader": { "protocol_id": 111 }, - "minecraft:witch": { + "minecraft:warden": { "protocol_id": 112 }, - "minecraft:wither": { + "minecraft:wind_charge": { "protocol_id": 113 }, - "minecraft:wither_skeleton": { + "minecraft:witch": { "protocol_id": 114 }, - "minecraft:wither_skull": { + "minecraft:wither": { "protocol_id": 115 }, - "minecraft:wolf": { + "minecraft:wither_skeleton": { "protocol_id": 116 }, - "minecraft:zoglin": { + "minecraft:wither_skull": { "protocol_id": 117 }, - "minecraft:zombie": { + "minecraft:wolf": { "protocol_id": 118 }, - "minecraft:zombie_horse": { + "minecraft:zoglin": { "protocol_id": 119 }, - "minecraft:zombie_villager": { + "minecraft:zombie": { "protocol_id": 120 }, - "minecraft:zombified_piglin": { + "minecraft:zombie_horse": { "protocol_id": 121 + }, + "minecraft:zombie_villager": { + "protocol_id": 122 + }, + "minecraft:zombified_piglin": { + "protocol_id": 123 } }, "protocol_id": 6 @@ -4571,7 +5473,7 @@ "protocol_id": 1 } }, - "protocol_id": 61 + "protocol_id": 63 }, "minecraft:game_event": { "default": "minecraft:step", @@ -4809,7 +5711,7 @@ "protocol_id": 6 } }, - "protocol_id": 63 + "protocol_id": 65 }, "minecraft:int_provider_type": { "entries": { @@ -4838,3769 +5740,3940 @@ "default": "minecraft:air", "entries": { "minecraft:acacia_boat": { - "protocol_id": 744 + "protocol_id": 781 }, "minecraft:acacia_button": { - "protocol_id": 666 + "protocol_id": 687 }, "minecraft:acacia_chest_boat": { - "protocol_id": 745 + "protocol_id": 782 }, "minecraft:acacia_door": { - "protocol_id": 693 + "protocol_id": 714 }, "minecraft:acacia_fence": { - "protocol_id": 293 + "protocol_id": 314 }, "minecraft:acacia_fence_gate": { - "protocol_id": 716 + "protocol_id": 753 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 861 + "protocol_id": 898 }, "minecraft:acacia_leaves": { - "protocol_id": 158 + "protocol_id": 179 }, "minecraft:acacia_log": { - "protocol_id": 114 + "protocol_id": 135 }, "minecraft:acacia_planks": { - "protocol_id": 27 + "protocol_id": 40 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 681 + "protocol_id": 702 }, "minecraft:acacia_sapling": { - "protocol_id": 39 + "protocol_id": 52 }, "minecraft:acacia_sign": { - "protocol_id": 850 + "protocol_id": 887 }, "minecraft:acacia_slab": { - "protocol_id": 234 + "protocol_id": 255 }, "minecraft:acacia_stairs": { - "protocol_id": 365 + "protocol_id": 386 }, "minecraft:acacia_trapdoor": { - "protocol_id": 705 + "protocol_id": 734 }, "minecraft:acacia_wood": { - "protocol_id": 148 + "protocol_id": 169 }, "minecraft:activator_rail": { - "protocol_id": 726 + "protocol_id": 763 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 967 + "protocol_id": 1005 }, "minecraft:allium": { - "protocol_id": 199 + "protocol_id": 220 }, "minecraft:amethyst_block": { - "protocol_id": 72 + "protocol_id": 85 }, "minecraft:amethyst_cluster": { - "protocol_id": 1210 + "protocol_id": 1249 }, "minecraft:amethyst_shard": { - "protocol_id": 768 + "protocol_id": 805 }, "minecraft:ancient_debris": { - "protocol_id": 67 + "protocol_id": 80 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 626 + "protocol_id": 647 }, "minecraft:andesite_stairs": { - "protocol_id": 609 + "protocol_id": 630 }, "minecraft:andesite_wall": { - "protocol_id": 385 + "protocol_id": 406 }, "minecraft:angler_pottery_sherd": { - "protocol_id": 1235 + "protocol_id": 1274 }, "minecraft:anvil": { - "protocol_id": 397 + "protocol_id": 418 }, "minecraft:apple": { - "protocol_id": 759 + "protocol_id": 796 }, "minecraft:archer_pottery_sherd": { - "protocol_id": 1236 + "protocol_id": 1275 }, "minecraft:armor_stand": { - "protocol_id": 1077 + "protocol_id": 1116 }, "minecraft:arms_up_pottery_sherd": { - "protocol_id": 1237 + "protocol_id": 1276 }, "minecraft:arrow": { - "protocol_id": 761 + "protocol_id": 798 }, "minecraft:axolotl_bucket": { - "protocol_id": 879 - }, - "minecraft:axolotl_spawn_egg": { - "protocol_id": 968 - }, - "minecraft:azalea": { - "protocol_id": 175 - }, - "minecraft:azalea_leaves": { - "protocol_id": 162 - }, - "minecraft:azure_bluet": { - "protocol_id": 200 - }, - "minecraft:baked_potato": { - "protocol_id": 1053 - }, - "minecraft:bamboo": { - "protocol_id": 229 - }, - "minecraft:bamboo_block": { - "protocol_id": 122 - }, - "minecraft:bamboo_button": { - "protocol_id": 670 - }, - "minecraft:bamboo_chest_raft": { - "protocol_id": 753 - }, - "minecraft:bamboo_door": { - "protocol_id": 697 - }, - "minecraft:bamboo_fence": { - "protocol_id": 297 - }, - "minecraft:bamboo_fence_gate": { - "protocol_id": 720 - }, - "minecraft:bamboo_hanging_sign": { - "protocol_id": 865 - }, - "minecraft:bamboo_mosaic": { - "protocol_id": 34 - }, - "minecraft:bamboo_mosaic_slab": { - "protocol_id": 239 - }, - "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 370 - }, - "minecraft:bamboo_planks": { - "protocol_id": 31 - }, - "minecraft:bamboo_pressure_plate": { - "protocol_id": 685 - }, - "minecraft:bamboo_raft": { - "protocol_id": 752 - }, - "minecraft:bamboo_sign": { - "protocol_id": 854 - }, - "minecraft:bamboo_slab": { - "protocol_id": 238 - }, - "minecraft:bamboo_stairs": { - "protocol_id": 369 - }, - "minecraft:bamboo_trapdoor": { - "protocol_id": 709 - }, - "minecraft:barrel": { - "protocol_id": 1154 - }, - "minecraft:barrier": { - "protocol_id": 421 - }, - "minecraft:basalt": { - "protocol_id": 306 - }, - "minecraft:bat_spawn_egg": { - "protocol_id": 969 - }, - "minecraft:beacon": { - "protocol_id": 374 - }, - "minecraft:bedrock": { - "protocol_id": 43 - }, - "minecraft:bee_nest": { - "protocol_id": 1171 - }, - "minecraft:bee_spawn_egg": { - "protocol_id": 970 - }, - "minecraft:beef": { - "protocol_id": 947 - }, - "minecraft:beehive": { - "protocol_id": 1172 - }, - "minecraft:beetroot": { - "protocol_id": 1108 - }, - "minecraft:beetroot_seeds": { - "protocol_id": 1109 - }, - "minecraft:beetroot_soup": { - "protocol_id": 1110 - }, - "minecraft:bell": { - "protocol_id": 1162 - }, - "minecraft:big_dripleaf": { - "protocol_id": 227 - }, - "minecraft:birch_boat": { - "protocol_id": 740 - }, - "minecraft:birch_button": { - "protocol_id": 664 - }, - "minecraft:birch_chest_boat": { - "protocol_id": 741 - }, - "minecraft:birch_door": { - "protocol_id": 691 - }, - "minecraft:birch_fence": { - "protocol_id": 291 - }, - "minecraft:birch_fence_gate": { - "protocol_id": 714 - }, - "minecraft:birch_hanging_sign": { - "protocol_id": 859 - }, - "minecraft:birch_leaves": { - "protocol_id": 156 - }, - "minecraft:birch_log": { - "protocol_id": 112 - }, - "minecraft:birch_planks": { - "protocol_id": 25 - }, - "minecraft:birch_pressure_plate": { - "protocol_id": 679 - }, - "minecraft:birch_sapling": { - "protocol_id": 37 - }, - "minecraft:birch_sign": { - "protocol_id": 848 - }, - "minecraft:birch_slab": { - "protocol_id": 232 - }, - "minecraft:birch_stairs": { - "protocol_id": 363 - }, - "minecraft:birch_trapdoor": { - "protocol_id": 703 - }, - "minecraft:birch_wood": { - "protocol_id": 146 - }, - "minecraft:black_banner": { - "protocol_id": 1102 - }, - "minecraft:black_bed": { - "protocol_id": 939 - }, - "minecraft:black_candle": { - "protocol_id": 1206 - }, - "minecraft:black_carpet": { - "protocol_id": 439 - }, - "minecraft:black_concrete": { - "protocol_id": 548 - }, - "minecraft:black_concrete_powder": { - "protocol_id": 564 - }, - "minecraft:black_dye": { - "protocol_id": 919 - }, - "minecraft:black_glazed_terracotta": { - "protocol_id": 532 - }, - "minecraft:black_shulker_box": { - "protocol_id": 516 - }, - "minecraft:black_stained_glass": { - "protocol_id": 464 - }, - "minecraft:black_stained_glass_pane": { - "protocol_id": 480 - }, - "minecraft:black_terracotta": { - "protocol_id": 420 - }, - "minecraft:black_wool": { - "protocol_id": 195 - }, - "minecraft:blackstone": { - "protocol_id": 1177 - }, - "minecraft:blackstone_slab": { - "protocol_id": 1178 - }, - "minecraft:blackstone_stairs": { - "protocol_id": 1179 - }, - "minecraft:blackstone_wall": { - "protocol_id": 390 - }, - "minecraft:blade_pottery_sherd": { - "protocol_id": 1238 - }, - "minecraft:blast_furnace": { - "protocol_id": 1156 - }, - "minecraft:blaze_powder": { - "protocol_id": 961 - }, - "minecraft:blaze_rod": { - "protocol_id": 953 - }, - "minecraft:blaze_spawn_egg": { - "protocol_id": 971 - }, - "minecraft:blue_banner": { - "protocol_id": 1098 - }, - "minecraft:blue_bed": { - "protocol_id": 935 - }, - "minecraft:blue_candle": { - "protocol_id": 1202 - }, - "minecraft:blue_carpet": { - "protocol_id": 435 - }, - "minecraft:blue_concrete": { - "protocol_id": 544 - }, - "minecraft:blue_concrete_powder": { - "protocol_id": 560 - }, - "minecraft:blue_dye": { - "protocol_id": 915 - }, - "minecraft:blue_glazed_terracotta": { - "protocol_id": 528 - }, - "minecraft:blue_ice": { - "protocol_id": 597 - }, - "minecraft:blue_orchid": { - "protocol_id": 198 - }, - "minecraft:blue_shulker_box": { - "protocol_id": 512 - }, - "minecraft:blue_stained_glass": { - "protocol_id": 460 - }, - "minecraft:blue_stained_glass_pane": { - "protocol_id": 476 - }, - "minecraft:blue_terracotta": { - "protocol_id": 416 - }, - "minecraft:blue_wool": { - "protocol_id": 191 - }, - "minecraft:bone": { - "protocol_id": 921 - }, - "minecraft:bone_block": { - "protocol_id": 498 - }, - "minecraft:bone_meal": { - "protocol_id": 920 - }, - "minecraft:book": { - "protocol_id": 885 - }, - "minecraft:bookshelf": { - "protocol_id": 264 - }, - "minecraft:bow": { - "protocol_id": 760 - }, - "minecraft:bowl": { - "protocol_id": 808 - }, - "minecraft:brain_coral": { - "protocol_id": 578 - }, - "minecraft:brain_coral_block": { - "protocol_id": 573 - }, - "minecraft:brain_coral_fan": { - "protocol_id": 588 - }, - "minecraft:bread": { - "protocol_id": 815 - }, - "minecraft:brewer_pottery_sherd": { - "protocol_id": 1239 - }, - "minecraft:brewing_stand": { - "protocol_id": 963 - }, - "minecraft:brick": { - "protocol_id": 881 - }, - "minecraft:brick_slab": { - "protocol_id": 248 - }, - "minecraft:brick_stairs": { - "protocol_id": 339 - }, - "minecraft:brick_wall": { - "protocol_id": 377 - }, - "minecraft:bricks": { - "protocol_id": 263 - }, - "minecraft:brown_banner": { - "protocol_id": 1099 - }, - "minecraft:brown_bed": { - "protocol_id": 936 - }, - "minecraft:brown_candle": { - "protocol_id": 1203 - }, - "minecraft:brown_carpet": { - "protocol_id": 436 - }, - "minecraft:brown_concrete": { - "protocol_id": 545 - }, - "minecraft:brown_concrete_powder": { - "protocol_id": 561 - }, - "minecraft:brown_dye": { "protocol_id": 916 }, - "minecraft:brown_glazed_terracotta": { - "protocol_id": 529 + "minecraft:axolotl_spawn_egg": { + "protocol_id": 1006 }, - "minecraft:brown_mushroom": { - "protocol_id": 212 + "minecraft:azalea": { + "protocol_id": 196 }, - "minecraft:brown_mushroom_block": { - "protocol_id": 330 + "minecraft:azalea_leaves": { + "protocol_id": 183 }, - "minecraft:brown_shulker_box": { - "protocol_id": 513 + "minecraft:azure_bluet": { + "protocol_id": 221 }, - "minecraft:brown_stained_glass": { - "protocol_id": 461 + "minecraft:baked_potato": { + "protocol_id": 1092 }, - "minecraft:brown_stained_glass_pane": { - "protocol_id": 477 + "minecraft:bamboo": { + "protocol_id": 250 }, - "minecraft:brown_terracotta": { - "protocol_id": 417 + "minecraft:bamboo_block": { + "protocol_id": 143 }, - "minecraft:brown_wool": { - "protocol_id": 192 + "minecraft:bamboo_button": { + "protocol_id": 691 }, - "minecraft:brush": { + "minecraft:bamboo_chest_raft": { + "protocol_id": 790 + }, + "minecraft:bamboo_door": { + "protocol_id": 718 + }, + "minecraft:bamboo_fence": { + "protocol_id": 318 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 757 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 902 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 47 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 260 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 391 + }, + "minecraft:bamboo_planks": { + "protocol_id": 44 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 706 + }, + "minecraft:bamboo_raft": { + "protocol_id": 789 + }, + "minecraft:bamboo_sign": { + "protocol_id": 891 + }, + "minecraft:bamboo_slab": { + "protocol_id": 259 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 390 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 738 + }, + "minecraft:barrel": { + "protocol_id": 1193 + }, + "minecraft:barrier": { + "protocol_id": 442 + }, + "minecraft:basalt": { + "protocol_id": 327 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 1007 + }, + "minecraft:beacon": { + "protocol_id": 395 + }, + "minecraft:bedrock": { + "protocol_id": 56 + }, + "minecraft:bee_nest": { + "protocol_id": 1210 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 1008 + }, + "minecraft:beef": { + "protocol_id": 985 + }, + "minecraft:beehive": { + "protocol_id": 1211 + }, + "minecraft:beetroot": { + "protocol_id": 1147 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1148 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1149 + }, + "minecraft:bell": { + "protocol_id": 1201 + }, + "minecraft:big_dripleaf": { + "protocol_id": 248 + }, + "minecraft:birch_boat": { + "protocol_id": 777 + }, + "minecraft:birch_button": { + "protocol_id": 685 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 778 + }, + "minecraft:birch_door": { + "protocol_id": 712 + }, + "minecraft:birch_fence": { + "protocol_id": 312 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 751 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 896 + }, + "minecraft:birch_leaves": { + "protocol_id": 177 + }, + "minecraft:birch_log": { + "protocol_id": 133 + }, + "minecraft:birch_planks": { + "protocol_id": 38 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 700 + }, + "minecraft:birch_sapling": { + "protocol_id": 50 + }, + "minecraft:birch_sign": { + "protocol_id": 885 + }, + "minecraft:birch_slab": { + "protocol_id": 253 + }, + "minecraft:birch_stairs": { + "protocol_id": 384 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 732 + }, + "minecraft:birch_wood": { + "protocol_id": 167 + }, + "minecraft:black_banner": { + "protocol_id": 1141 + }, + "minecraft:black_bed": { + "protocol_id": 976 + }, + "minecraft:black_candle": { + "protocol_id": 1245 + }, + "minecraft:black_carpet": { + "protocol_id": 460 + }, + "minecraft:black_concrete": { + "protocol_id": 569 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 585 + }, + "minecraft:black_dye": { + "protocol_id": 956 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 553 + }, + "minecraft:black_shulker_box": { + "protocol_id": 537 + }, + "minecraft:black_stained_glass": { + "protocol_id": 485 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 501 + }, + "minecraft:black_terracotta": { + "protocol_id": 441 + }, + "minecraft:black_wool": { + "protocol_id": 216 + }, + "minecraft:blackstone": { + "protocol_id": 1216 + }, + "minecraft:blackstone_slab": { "protocol_id": 1217 }, + "minecraft:blackstone_stairs": { + "protocol_id": 1218 + }, + "minecraft:blackstone_wall": { + "protocol_id": 411 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1277 + }, + "minecraft:blast_furnace": { + "protocol_id": 1195 + }, + "minecraft:blaze_powder": { + "protocol_id": 999 + }, + "minecraft:blaze_rod": { + "protocol_id": 991 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1009 + }, + "minecraft:blue_banner": { + "protocol_id": 1137 + }, + "minecraft:blue_bed": { + "protocol_id": 972 + }, + "minecraft:blue_candle": { + "protocol_id": 1241 + }, + "minecraft:blue_carpet": { + "protocol_id": 456 + }, + "minecraft:blue_concrete": { + "protocol_id": 565 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 581 + }, + "minecraft:blue_dye": { + "protocol_id": 952 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 549 + }, + "minecraft:blue_ice": { + "protocol_id": 618 + }, + "minecraft:blue_orchid": { + "protocol_id": 219 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 533 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 481 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 497 + }, + "minecraft:blue_terracotta": { + "protocol_id": 437 + }, + "minecraft:blue_wool": { + "protocol_id": 212 + }, + "minecraft:bone": { + "protocol_id": 958 + }, + "minecraft:bone_block": { + "protocol_id": 519 + }, + "minecraft:bone_meal": { + "protocol_id": 957 + }, + "minecraft:book": { + "protocol_id": 922 + }, + "minecraft:bookshelf": { + "protocol_id": 285 + }, + "minecraft:bow": { + "protocol_id": 797 + }, + "minecraft:bowl": { + "protocol_id": 845 + }, + "minecraft:brain_coral": { + "protocol_id": 599 + }, + "minecraft:brain_coral_block": { + "protocol_id": 594 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 609 + }, + "minecraft:bread": { + "protocol_id": 852 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1010 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1278 + }, + "minecraft:brewing_stand": { + "protocol_id": 1001 + }, + "minecraft:brick": { + "protocol_id": 918 + }, + "minecraft:brick_slab": { + "protocol_id": 269 + }, + "minecraft:brick_stairs": { + "protocol_id": 360 + }, + "minecraft:brick_wall": { + "protocol_id": 398 + }, + "minecraft:bricks": { + "protocol_id": 284 + }, + "minecraft:brown_banner": { + "protocol_id": 1138 + }, + "minecraft:brown_bed": { + "protocol_id": 973 + }, + "minecraft:brown_candle": { + "protocol_id": 1242 + }, + "minecraft:brown_carpet": { + "protocol_id": 457 + }, + "minecraft:brown_concrete": { + "protocol_id": 566 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 582 + }, + "minecraft:brown_dye": { + "protocol_id": 953 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 550 + }, + "minecraft:brown_mushroom": { + "protocol_id": 233 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 351 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 534 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 482 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 498 + }, + "minecraft:brown_terracotta": { + "protocol_id": 438 + }, + "minecraft:brown_wool": { + "protocol_id": 213 + }, + "minecraft:brush": { + "protocol_id": 1256 + }, "minecraft:bubble_coral": { - "protocol_id": 579 + "protocol_id": 600 }, "minecraft:bubble_coral_block": { - "protocol_id": 574 + "protocol_id": 595 }, "minecraft:bubble_coral_fan": { - "protocol_id": 589 + "protocol_id": 610 }, "minecraft:bucket": { - "protocol_id": 868 + "protocol_id": 905 }, "minecraft:budding_amethyst": { - "protocol_id": 73 + "protocol_id": 86 }, "minecraft:bundle": { - "protocol_id": 890 + "protocol_id": 927 }, "minecraft:burn_pottery_sherd": { - "protocol_id": 1240 + "protocol_id": 1279 }, "minecraft:cactus": { - "protocol_id": 286 + "protocol_id": 307 }, "minecraft:cake": { - "protocol_id": 923 + "protocol_id": 960 }, "minecraft:calcite": { "protocol_id": 11 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 654 + "protocol_id": 675 }, "minecraft:camel_spawn_egg": { - "protocol_id": 973 + "protocol_id": 1012 }, "minecraft:campfire": { - "protocol_id": 1167 + "protocol_id": 1206 }, "minecraft:candle": { - "protocol_id": 1190 + "protocol_id": 1229 }, "minecraft:carrot": { - "protocol_id": 1051 + "protocol_id": 1090 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 733 + "protocol_id": 770 }, "minecraft:cartography_table": { - "protocol_id": 1157 + "protocol_id": 1196 }, "minecraft:carved_pumpkin": { - "protocol_id": 301 + "protocol_id": 322 }, "minecraft:cat_spawn_egg": { - "protocol_id": 972 + "protocol_id": 1011 }, "minecraft:cauldron": { - "protocol_id": 964 + "protocol_id": 1002 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 974 + "protocol_id": 1013 }, "minecraft:chain": { - "protocol_id": 334 + "protocol_id": 355 }, "minecraft:chain_command_block": { - "protocol_id": 493 + "protocol_id": 514 }, "minecraft:chainmail_boots": { - "protocol_id": 823 + "protocol_id": 860 }, "minecraft:chainmail_chestplate": { - "protocol_id": 821 + "protocol_id": 858 }, "minecraft:chainmail_helmet": { - "protocol_id": 820 + "protocol_id": 857 }, "minecraft:chainmail_leggings": { - "protocol_id": 822 + "protocol_id": 859 }, "minecraft:charcoal": { - "protocol_id": 763 + "protocol_id": 800 }, "minecraft:cherry_boat": { - "protocol_id": 746 + "protocol_id": 783 }, "minecraft:cherry_button": { - "protocol_id": 667 + "protocol_id": 688 }, "minecraft:cherry_chest_boat": { - "protocol_id": 747 + "protocol_id": 784 }, "minecraft:cherry_door": { - "protocol_id": 694 + "protocol_id": 715 }, "minecraft:cherry_fence": { - "protocol_id": 294 + "protocol_id": 315 }, "minecraft:cherry_fence_gate": { - "protocol_id": 717 + "protocol_id": 754 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 862 + "protocol_id": 899 }, "minecraft:cherry_leaves": { - "protocol_id": 159 + "protocol_id": 180 }, "minecraft:cherry_log": { - "protocol_id": 115 + "protocol_id": 136 }, "minecraft:cherry_planks": { - "protocol_id": 28 + "protocol_id": 41 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 682 + "protocol_id": 703 }, "minecraft:cherry_sapling": { - "protocol_id": 40 + "protocol_id": 53 }, "minecraft:cherry_sign": { - "protocol_id": 851 + "protocol_id": 888 }, "minecraft:cherry_slab": { - "protocol_id": 235 + "protocol_id": 256 }, "minecraft:cherry_stairs": { - "protocol_id": 366 + "protocol_id": 387 }, "minecraft:cherry_trapdoor": { - "protocol_id": 706 + "protocol_id": 735 }, "minecraft:cherry_wood": { - "protocol_id": 149 - }, - "minecraft:chest": { - "protocol_id": 277 - }, - "minecraft:chest_minecart": { - "protocol_id": 729 - }, - "minecraft:chicken": { - "protocol_id": 949 - }, - "minecraft:chicken_spawn_egg": { - "protocol_id": 975 - }, - "minecraft:chipped_anvil": { - "protocol_id": 398 - }, - "minecraft:chiseled_bookshelf": { - "protocol_id": 265 - }, - "minecraft:chiseled_deepslate": { - "protocol_id": 328 - }, - "minecraft:chiseled_nether_bricks": { - "protocol_id": 346 - }, - "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1184 - }, - "minecraft:chiseled_quartz_block": { - "protocol_id": 400 - }, - "minecraft:chiseled_red_sandstone": { - "protocol_id": 489 - }, - "minecraft:chiseled_sandstone": { "protocol_id": 170 }, + "minecraft:chest": { + "protocol_id": 298 + }, + "minecraft:chest_minecart": { + "protocol_id": 766 + }, + "minecraft:chicken": { + "protocol_id": 987 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 1014 + }, + "minecraft:chipped_anvil": { + "protocol_id": 419 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 286 + }, + "minecraft:chiseled_copper": { + "protocol_id": 95 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 349 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 367 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1223 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 421 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 510 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 191 + }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 321 + "protocol_id": 342 }, - "minecraft:chorus_flower": { - "protocol_id": 272 - }, - "minecraft:chorus_fruit": { - "protocol_id": 1104 - }, - "minecraft:chorus_plant": { - "protocol_id": 271 - }, - "minecraft:clay": { - "protocol_id": 287 - }, - "minecraft:clay_ball": { - "protocol_id": 882 - }, - "minecraft:clock": { - "protocol_id": 892 - }, - "minecraft:coal": { - "protocol_id": 762 - }, - "minecraft:coal_block": { - "protocol_id": 68 - }, - "minecraft:coal_ore": { - "protocol_id": 49 - }, - "minecraft:coarse_dirt": { + "minecraft:chiseled_tuff": { "protocol_id": 16 }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 25 + }, + "minecraft:chorus_flower": { + "protocol_id": 293 + }, + "minecraft:chorus_fruit": { + "protocol_id": 1143 + }, + "minecraft:chorus_plant": { + "protocol_id": 292 + }, + "minecraft:clay": { + "protocol_id": 308 + }, + "minecraft:clay_ball": { + "protocol_id": 919 + }, + "minecraft:clock": { + "protocol_id": 929 + }, + "minecraft:coal": { + "protocol_id": 799 + }, + "minecraft:coal_block": { + "protocol_id": 81 + }, + "minecraft:coal_ore": { + "protocol_id": 62 + }, + "minecraft:coarse_dirt": { + "protocol_id": 29 + }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1221 + "protocol_id": 1260 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 630 + "protocol_id": 651 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 613 + "protocol_id": 634 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 393 - }, - "minecraft:cobblestone": { - "protocol_id": 22 - }, - "minecraft:cobblestone_slab": { - "protocol_id": 247 - }, - "minecraft:cobblestone_stairs": { - "protocol_id": 282 - }, - "minecraft:cobblestone_wall": { - "protocol_id": 375 - }, - "minecraft:cobweb": { - "protocol_id": 172 - }, - "minecraft:cocoa_beans": { - "protocol_id": 903 - }, - "minecraft:cod": { - "protocol_id": 895 - }, - "minecraft:cod_bucket": { - "protocol_id": 877 - }, - "minecraft:cod_spawn_egg": { - "protocol_id": 976 - }, - "minecraft:command_block": { - "protocol_id": 373 - }, - "minecraft:command_block_minecart": { - "protocol_id": 1084 - }, - "minecraft:comparator": { - "protocol_id": 639 - }, - "minecraft:compass": { - "protocol_id": 888 - }, - "minecraft:composter": { - "protocol_id": 1153 - }, - "minecraft:conduit": { - "protocol_id": 598 - }, - "minecraft:cooked_beef": { - "protocol_id": 948 - }, - "minecraft:cooked_chicken": { - "protocol_id": 950 - }, - "minecraft:cooked_cod": { - "protocol_id": 899 - }, - "minecraft:cooked_mutton": { - "protocol_id": 1086 - }, - "minecraft:cooked_porkchop": { - "protocol_id": 842 - }, - "minecraft:cooked_rabbit": { - "protocol_id": 1073 - }, - "minecraft:cooked_salmon": { - "protocol_id": 900 - }, - "minecraft:cookie": { - "protocol_id": 940 - }, - "minecraft:copper_block": { - "protocol_id": 75 - }, - "minecraft:copper_ingot": { - "protocol_id": 772 - }, - "minecraft:copper_ore": { - "protocol_id": 53 - }, - "minecraft:cornflower": { - "protocol_id": 206 - }, - "minecraft:cow_spawn_egg": { - "protocol_id": 977 - }, - "minecraft:cracked_deepslate_bricks": { - "protocol_id": 325 - }, - "minecraft:cracked_deepslate_tiles": { - "protocol_id": 327 - }, - "minecraft:cracked_nether_bricks": { - "protocol_id": 345 - }, - "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1188 - }, - "minecraft:cracked_stone_bricks": { - "protocol_id": 320 - }, - "minecraft:crafting_table": { - "protocol_id": 278 - }, - "minecraft:creeper_banner_pattern": { - "protocol_id": 1147 - }, - "minecraft:creeper_head": { - "protocol_id": 1061 - }, - "minecraft:creeper_spawn_egg": { - "protocol_id": 978 - }, - "minecraft:crimson_button": { - "protocol_id": 671 - }, - "minecraft:crimson_door": { - "protocol_id": 698 - }, - "minecraft:crimson_fence": { - "protocol_id": 298 - }, - "minecraft:crimson_fence_gate": { - "protocol_id": 721 - }, - "minecraft:crimson_fungus": { - "protocol_id": 214 - }, - "minecraft:crimson_hanging_sign": { - "protocol_id": 866 - }, - "minecraft:crimson_hyphae": { - "protocol_id": 152 - }, - "minecraft:crimson_nylium": { - "protocol_id": 20 - }, - "minecraft:crimson_planks": { - "protocol_id": 32 - }, - "minecraft:crimson_pressure_plate": { - "protocol_id": 686 - }, - "minecraft:crimson_roots": { - "protocol_id": 216 - }, - "minecraft:crimson_sign": { - "protocol_id": 855 - }, - "minecraft:crimson_slab": { - "protocol_id": 240 - }, - "minecraft:crimson_stairs": { - "protocol_id": 371 - }, - "minecraft:crimson_stem": { - "protocol_id": 120 - }, - "minecraft:crimson_trapdoor": { - "protocol_id": 710 - }, - "minecraft:crossbow": { - "protocol_id": 1143 - }, - "minecraft:crying_obsidian": { - "protocol_id": 1176 - }, - "minecraft:cut_copper": { - "protocol_id": 82 - }, - "minecraft:cut_copper_slab": { - "protocol_id": 90 - }, - "minecraft:cut_copper_stairs": { - "protocol_id": 86 - }, - "minecraft:cut_red_sandstone": { - "protocol_id": 490 - }, - "minecraft:cut_red_sandstone_slab": { - "protocol_id": 254 - }, - "minecraft:cut_sandstone": { - "protocol_id": 171 - }, - "minecraft:cut_sandstone_slab": { - "protocol_id": 245 - }, - "minecraft:cyan_banner": { - "protocol_id": 1096 - }, - "minecraft:cyan_bed": { - "protocol_id": 933 - }, - "minecraft:cyan_candle": { - "protocol_id": 1200 - }, - "minecraft:cyan_carpet": { - "protocol_id": 433 - }, - "minecraft:cyan_concrete": { - "protocol_id": 542 - }, - "minecraft:cyan_concrete_powder": { - "protocol_id": 558 - }, - "minecraft:cyan_dye": { - "protocol_id": 913 - }, - "minecraft:cyan_glazed_terracotta": { - "protocol_id": 526 - }, - "minecraft:cyan_shulker_box": { - "protocol_id": 510 - }, - "minecraft:cyan_stained_glass": { - "protocol_id": 458 - }, - "minecraft:cyan_stained_glass_pane": { - "protocol_id": 474 - }, - "minecraft:cyan_terracotta": { "protocol_id": 414 }, - "minecraft:cyan_wool": { - "protocol_id": 189 + "minecraft:cobblestone": { + "protocol_id": 35 }, - "minecraft:damaged_anvil": { - "protocol_id": 399 + "minecraft:cobblestone_slab": { + "protocol_id": 268 }, - "minecraft:dandelion": { - "protocol_id": 196 + "minecraft:cobblestone_stairs": { + "protocol_id": 303 }, - "minecraft:danger_pottery_sherd": { - "protocol_id": 1241 + "minecraft:cobblestone_wall": { + "protocol_id": 396 }, - "minecraft:dark_oak_boat": { - "protocol_id": 748 + "minecraft:cobweb": { + "protocol_id": 193 }, - "minecraft:dark_oak_button": { - "protocol_id": 668 + "minecraft:cocoa_beans": { + "protocol_id": 940 }, - "minecraft:dark_oak_chest_boat": { - "protocol_id": 749 + "minecraft:cod": { + "protocol_id": 932 }, - "minecraft:dark_oak_door": { - "protocol_id": 695 + "minecraft:cod_bucket": { + "protocol_id": 914 }, - "minecraft:dark_oak_fence": { - "protocol_id": 295 + "minecraft:cod_spawn_egg": { + "protocol_id": 1015 }, - "minecraft:dark_oak_fence_gate": { - "protocol_id": 718 + "minecraft:command_block": { + "protocol_id": 394 }, - "minecraft:dark_oak_hanging_sign": { - "protocol_id": 863 + "minecraft:command_block_minecart": { + "protocol_id": 1123 }, - "minecraft:dark_oak_leaves": { - "protocol_id": 160 + "minecraft:comparator": { + "protocol_id": 660 }, - "minecraft:dark_oak_log": { - "protocol_id": 116 + "minecraft:compass": { + "protocol_id": 925 }, - "minecraft:dark_oak_planks": { - "protocol_id": 29 + "minecraft:composter": { + "protocol_id": 1192 }, - "minecraft:dark_oak_pressure_plate": { - "protocol_id": 683 + "minecraft:conduit": { + "protocol_id": 619 }, - "minecraft:dark_oak_sapling": { - "protocol_id": 41 + "minecraft:cooked_beef": { + "protocol_id": 986 }, - "minecraft:dark_oak_sign": { - "protocol_id": 852 + "minecraft:cooked_chicken": { + "protocol_id": 988 }, - "minecraft:dark_oak_slab": { - "protocol_id": 236 + "minecraft:cooked_cod": { + "protocol_id": 936 }, - "minecraft:dark_oak_stairs": { - "protocol_id": 367 + "minecraft:cooked_mutton": { + "protocol_id": 1125 }, - "minecraft:dark_oak_trapdoor": { + "minecraft:cooked_porkchop": { + "protocol_id": 879 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1112 + }, + "minecraft:cooked_salmon": { + "protocol_id": 937 + }, + "minecraft:cookie": { + "protocol_id": 977 + }, + "minecraft:copper_block": { + "protocol_id": 88 + }, + "minecraft:copper_bulb": { + "protocol_id": 1302 + }, + "minecraft:copper_door": { + "protocol_id": 721 + }, + "minecraft:copper_grate": { + "protocol_id": 1294 + }, + "minecraft:copper_ingot": { + "protocol_id": 809 + }, + "minecraft:copper_ore": { + "protocol_id": 66 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 741 + }, + "minecraft:cornflower": { + "protocol_id": 227 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 1016 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 346 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 348 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 366 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1227 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 341 + }, + "minecraft:crafter": { + "protocol_id": 978 + }, + "minecraft:crafting_table": { + "protocol_id": 299 + }, + "minecraft:creeper_banner_pattern": { + "protocol_id": 1186 + }, + "minecraft:creeper_head": { + "protocol_id": 1100 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 1017 + }, + "minecraft:crimson_button": { + "protocol_id": 692 + }, + "minecraft:crimson_door": { + "protocol_id": 719 + }, + "minecraft:crimson_fence": { + "protocol_id": 319 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 758 + }, + "minecraft:crimson_fungus": { + "protocol_id": 235 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 903 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 173 + }, + "minecraft:crimson_nylium": { + "protocol_id": 33 + }, + "minecraft:crimson_planks": { + "protocol_id": 45 + }, + "minecraft:crimson_pressure_plate": { "protocol_id": 707 }, + "minecraft:crimson_roots": { + "protocol_id": 237 + }, + "minecraft:crimson_sign": { + "protocol_id": 892 + }, + "minecraft:crimson_slab": { + "protocol_id": 261 + }, + "minecraft:crimson_stairs": { + "protocol_id": 392 + }, + "minecraft:crimson_stem": { + "protocol_id": 141 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 739 + }, + "minecraft:crossbow": { + "protocol_id": 1182 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1215 + }, + "minecraft:cut_copper": { + "protocol_id": 99 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 107 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 103 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 511 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 275 + }, + "minecraft:cut_sandstone": { + "protocol_id": 192 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 266 + }, + "minecraft:cyan_banner": { + "protocol_id": 1135 + }, + "minecraft:cyan_bed": { + "protocol_id": 970 + }, + "minecraft:cyan_candle": { + "protocol_id": 1239 + }, + "minecraft:cyan_carpet": { + "protocol_id": 454 + }, + "minecraft:cyan_concrete": { + "protocol_id": 563 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 579 + }, + "minecraft:cyan_dye": { + "protocol_id": 950 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 547 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 531 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 479 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 495 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 435 + }, + "minecraft:cyan_wool": { + "protocol_id": 210 + }, + "minecraft:damaged_anvil": { + "protocol_id": 420 + }, + "minecraft:dandelion": { + "protocol_id": 217 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1280 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 785 + }, + "minecraft:dark_oak_button": { + "protocol_id": 689 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 786 + }, + "minecraft:dark_oak_door": { + "protocol_id": 716 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 316 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 755 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 900 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 181 + }, + "minecraft:dark_oak_log": { + "protocol_id": 137 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 42 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 704 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 54 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 889 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 257 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 388 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 736 + }, "minecraft:dark_oak_wood": { - "protocol_id": 150 + "protocol_id": 171 }, "minecraft:dark_prismarine": { - "protocol_id": 483 + "protocol_id": 504 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 258 + "protocol_id": 279 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 486 + "protocol_id": 507 }, "minecraft:daylight_detector": { - "protocol_id": 652 + "protocol_id": 673 }, "minecraft:dead_brain_coral": { - "protocol_id": 582 + "protocol_id": 603 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 568 + "protocol_id": 589 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 593 + "protocol_id": 614 }, "minecraft:dead_bubble_coral": { - "protocol_id": 583 + "protocol_id": 604 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 569 + "protocol_id": 590 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 594 + "protocol_id": 615 }, "minecraft:dead_bush": { - "protocol_id": 177 + "protocol_id": 198 }, "minecraft:dead_fire_coral": { - "protocol_id": 584 + "protocol_id": 605 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 570 + "protocol_id": 591 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 595 + "protocol_id": 616 }, "minecraft:dead_horn_coral": { - "protocol_id": 585 + "protocol_id": 606 }, "minecraft:dead_horn_coral_block": { - "protocol_id": 571 - }, - "minecraft:dead_horn_coral_fan": { - "protocol_id": 596 - }, - "minecraft:dead_tube_coral": { - "protocol_id": 586 - }, - "minecraft:dead_tube_coral_block": { - "protocol_id": 567 - }, - "minecraft:dead_tube_coral_fan": { "protocol_id": 592 }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 617 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 607 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 588 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 613 + }, "minecraft:debug_stick": { - "protocol_id": 1121 + "protocol_id": 1160 }, "minecraft:decorated_pot": { - "protocol_id": 266 + "protocol_id": 287 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 632 + "protocol_id": 653 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 615 + "protocol_id": 636 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 395 + "protocol_id": 416 }, "minecraft:deepslate_bricks": { - "protocol_id": 324 + "protocol_id": 345 }, "minecraft:deepslate_coal_ore": { - "protocol_id": 50 - }, - "minecraft:deepslate_copper_ore": { - "protocol_id": 54 - }, - "minecraft:deepslate_diamond_ore": { - "protocol_id": 64 - }, - "minecraft:deepslate_emerald_ore": { - "protocol_id": 60 - }, - "minecraft:deepslate_gold_ore": { - "protocol_id": 56 - }, - "minecraft:deepslate_iron_ore": { - "protocol_id": 52 - }, - "minecraft:deepslate_lapis_ore": { - "protocol_id": 62 - }, - "minecraft:deepslate_redstone_ore": { - "protocol_id": 58 - }, - "minecraft:deepslate_tile_slab": { - "protocol_id": 633 - }, - "minecraft:deepslate_tile_stairs": { - "protocol_id": 616 - }, - "minecraft:deepslate_tile_wall": { - "protocol_id": 396 - }, - "minecraft:deepslate_tiles": { - "protocol_id": 326 - }, - "minecraft:detector_rail": { - "protocol_id": 724 - }, - "minecraft:diamond": { - "protocol_id": 764 - }, - "minecraft:diamond_axe": { - "protocol_id": 800 - }, - "minecraft:diamond_block": { - "protocol_id": 77 - }, - "minecraft:diamond_boots": { - "protocol_id": 831 - }, - "minecraft:diamond_chestplate": { - "protocol_id": 829 - }, - "minecraft:diamond_helmet": { - "protocol_id": 828 - }, - "minecraft:diamond_hoe": { - "protocol_id": 801 - }, - "minecraft:diamond_horse_armor": { - "protocol_id": 1080 - }, - "minecraft:diamond_leggings": { - "protocol_id": 830 - }, - "minecraft:diamond_ore": { "protocol_id": 63 }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 67 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 77 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 73 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 69 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 65 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 75 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 71 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 654 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 637 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 417 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 347 + }, + "minecraft:detector_rail": { + "protocol_id": 761 + }, + "minecraft:diamond": { + "protocol_id": 801 + }, + "minecraft:diamond_axe": { + "protocol_id": 837 + }, + "minecraft:diamond_block": { + "protocol_id": 90 + }, + "minecraft:diamond_boots": { + "protocol_id": 868 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 866 + }, + "minecraft:diamond_helmet": { + "protocol_id": 865 + }, + "minecraft:diamond_hoe": { + "protocol_id": 838 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1119 + }, + "minecraft:diamond_leggings": { + "protocol_id": 867 + }, + "minecraft:diamond_ore": { + "protocol_id": 76 + }, "minecraft:diamond_pickaxe": { - "protocol_id": 799 + "protocol_id": 836 }, "minecraft:diamond_shovel": { - "protocol_id": 798 + "protocol_id": 835 }, "minecraft:diamond_sword": { - "protocol_id": 797 + "protocol_id": 834 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 629 + "protocol_id": 650 }, "minecraft:diorite_stairs": { - "protocol_id": 612 + "protocol_id": 633 }, "minecraft:diorite_wall": { - "protocol_id": 389 + "protocol_id": 410 }, "minecraft:dirt": { - "protocol_id": 15 + "protocol_id": 28 }, "minecraft:dirt_path": { - "protocol_id": 442 + "protocol_id": 463 }, "minecraft:disc_fragment_5": { - "protocol_id": 1138 + "protocol_id": 1177 }, "minecraft:dispenser": { - "protocol_id": 646 + "protocol_id": 667 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 979 + "protocol_id": 1018 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 980 + "protocol_id": 1019 }, "minecraft:dragon_breath": { - "protocol_id": 1111 - }, - "minecraft:dragon_egg": { - "protocol_id": 357 - }, - "minecraft:dragon_head": { - "protocol_id": 1062 - }, - "minecraft:dried_kelp": { - "protocol_id": 944 - }, - "minecraft:dried_kelp_block": { - "protocol_id": 883 - }, - "minecraft:dripstone_block": { - "protocol_id": 13 - }, - "minecraft:dropper": { - "protocol_id": 647 - }, - "minecraft:drowned_spawn_egg": { - "protocol_id": 981 - }, - "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1220 - }, - "minecraft:echo_shard": { - "protocol_id": 1216 - }, - "minecraft:egg": { - "protocol_id": 887 - }, - "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 982 - }, - "minecraft:elytra": { - "protocol_id": 735 - }, - "minecraft:emerald": { - "protocol_id": 765 - }, - "minecraft:emerald_block": { - "protocol_id": 360 - }, - "minecraft:emerald_ore": { - "protocol_id": 59 - }, - "minecraft:enchanted_book": { - "protocol_id": 1068 - }, - "minecraft:enchanted_golden_apple": { - "protocol_id": 845 - }, - "minecraft:enchanting_table": { - "protocol_id": 353 - }, - "minecraft:end_crystal": { - "protocol_id": 1103 - }, - "minecraft:end_portal_frame": { - "protocol_id": 354 - }, - "minecraft:end_rod": { - "protocol_id": 270 - }, - "minecraft:end_stone": { - "protocol_id": 355 - }, - "minecraft:end_stone_brick_slab": { - "protocol_id": 622 - }, - "minecraft:end_stone_brick_stairs": { - "protocol_id": 604 - }, - "minecraft:end_stone_brick_wall": { - "protocol_id": 388 - }, - "minecraft:end_stone_bricks": { - "protocol_id": 356 - }, - "minecraft:ender_chest": { - "protocol_id": 359 - }, - "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 983 - }, - "minecraft:ender_eye": { - "protocol_id": 965 - }, - "minecraft:ender_pearl": { - "protocol_id": 952 - }, - "minecraft:enderman_spawn_egg": { - "protocol_id": 984 - }, - "minecraft:endermite_spawn_egg": { - "protocol_id": 985 - }, - "minecraft:evoker_spawn_egg": { - "protocol_id": 986 - }, - "minecraft:experience_bottle": { - "protocol_id": 1044 - }, - "minecraft:explorer_pottery_sherd": { - "protocol_id": 1242 - }, - "minecraft:exposed_copper": { - "protocol_id": 79 - }, - "minecraft:exposed_cut_copper": { - "protocol_id": 83 - }, - "minecraft:exposed_cut_copper_slab": { - "protocol_id": 91 - }, - "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 87 - }, - "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1224 - }, - "minecraft:farmland": { - "protocol_id": 279 - }, - "minecraft:feather": { - "protocol_id": 811 - }, - "minecraft:fermented_spider_eye": { - "protocol_id": 960 - }, - "minecraft:fern": { - "protocol_id": 174 - }, - "minecraft:filled_map": { - "protocol_id": 941 - }, - "minecraft:fire_charge": { - "protocol_id": 1045 - }, - "minecraft:fire_coral": { - "protocol_id": 580 - }, - "minecraft:fire_coral_block": { - "protocol_id": 575 - }, - "minecraft:fire_coral_fan": { - "protocol_id": 590 - }, - "minecraft:firework_rocket": { - "protocol_id": 1066 - }, - "minecraft:firework_star": { - "protocol_id": 1067 - }, - "minecraft:fishing_rod": { - "protocol_id": 891 - }, - "minecraft:fletching_table": { - "protocol_id": 1158 - }, - "minecraft:flint": { - "protocol_id": 840 - }, - "minecraft:flint_and_steel": { - "protocol_id": 758 - }, - "minecraft:flower_banner_pattern": { - "protocol_id": 1146 - }, - "minecraft:flower_pot": { - "protocol_id": 1050 - }, - "minecraft:flowering_azalea": { - "protocol_id": 176 - }, - "minecraft:flowering_azalea_leaves": { - "protocol_id": 163 - }, - "minecraft:fox_spawn_egg": { - "protocol_id": 987 - }, - "minecraft:friend_pottery_sherd": { - "protocol_id": 1243 - }, - "minecraft:frog_spawn_egg": { - "protocol_id": 988 - }, - "minecraft:frogspawn": { - "protocol_id": 1215 - }, - "minecraft:furnace": { - "protocol_id": 280 - }, - "minecraft:furnace_minecart": { - "protocol_id": 730 - }, - "minecraft:ghast_spawn_egg": { - "protocol_id": 989 - }, - "minecraft:ghast_tear": { - "protocol_id": 954 - }, - "minecraft:gilded_blackstone": { - "protocol_id": 1180 - }, - "minecraft:glass": { - "protocol_id": 166 - }, - "minecraft:glass_bottle": { - "protocol_id": 958 - }, - "minecraft:glass_pane": { - "protocol_id": 335 - }, - "minecraft:glistering_melon_slice": { - "protocol_id": 966 - }, - "minecraft:globe_banner_pattern": { "protocol_id": 1150 }, - "minecraft:glow_berries": { - "protocol_id": 1166 + "minecraft:dragon_egg": { + "protocol_id": 378 }, - "minecraft:glow_ink_sac": { - "protocol_id": 902 + "minecraft:dragon_head": { + "protocol_id": 1101 }, - "minecraft:glow_item_frame": { - "protocol_id": 1049 + "minecraft:dried_kelp": { + "protocol_id": 982 }, - "minecraft:glow_lichen": { - "protocol_id": 338 + "minecraft:dried_kelp_block": { + "protocol_id": 920 }, - "minecraft:glow_squid_spawn_egg": { + "minecraft:dripstone_block": { + "protocol_id": 26 + }, + "minecraft:dropper": { + "protocol_id": 668 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 1020 + }, + "minecraft:dune_armor_trim_smithing_template": { + "protocol_id": 1259 + }, + "minecraft:echo_shard": { + "protocol_id": 1255 + }, + "minecraft:egg": { + "protocol_id": 924 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 1021 + }, + "minecraft:elytra": { + "protocol_id": 772 + }, + "minecraft:emerald": { + "protocol_id": 802 + }, + "minecraft:emerald_block": { + "protocol_id": 381 + }, + "minecraft:emerald_ore": { + "protocol_id": 72 + }, + "minecraft:enchanted_book": { + "protocol_id": 1107 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 882 + }, + "minecraft:enchanting_table": { + "protocol_id": 374 + }, + "minecraft:end_crystal": { + "protocol_id": 1142 + }, + "minecraft:end_portal_frame": { + "protocol_id": 375 + }, + "minecraft:end_rod": { + "protocol_id": 291 + }, + "minecraft:end_stone": { + "protocol_id": 376 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 643 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 625 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 409 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 377 + }, + "minecraft:ender_chest": { + "protocol_id": 380 + }, + "minecraft:ender_dragon_spawn_egg": { + "protocol_id": 1022 + }, + "minecraft:ender_eye": { + "protocol_id": 1003 + }, + "minecraft:ender_pearl": { "protocol_id": 990 }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 1023 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 1024 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 1025 + }, + "minecraft:experience_bottle": { + "protocol_id": 1083 + }, + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1281 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 96 + }, + "minecraft:exposed_copper": { + "protocol_id": 92 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1303 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 722 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1295 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 742 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 100 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 108 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 104 + }, + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1263 + }, + "minecraft:farmland": { + "protocol_id": 300 + }, + "minecraft:feather": { + "protocol_id": 848 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 998 + }, + "minecraft:fern": { + "protocol_id": 195 + }, + "minecraft:filled_map": { + "protocol_id": 979 + }, + "minecraft:fire_charge": { + "protocol_id": 1084 + }, + "minecraft:fire_coral": { + "protocol_id": 601 + }, + "minecraft:fire_coral_block": { + "protocol_id": 596 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 611 + }, + "minecraft:firework_rocket": { + "protocol_id": 1105 + }, + "minecraft:firework_star": { + "protocol_id": 1106 + }, + "minecraft:fishing_rod": { + "protocol_id": 928 + }, + "minecraft:fletching_table": { + "protocol_id": 1197 + }, + "minecraft:flint": { + "protocol_id": 877 + }, + "minecraft:flint_and_steel": { + "protocol_id": 795 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1185 + }, + "minecraft:flower_pot": { + "protocol_id": 1089 + }, + "minecraft:flowering_azalea": { + "protocol_id": 197 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 184 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 1026 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1282 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 1027 + }, + "minecraft:frogspawn": { + "protocol_id": 1254 + }, + "minecraft:furnace": { + "protocol_id": 301 + }, + "minecraft:furnace_minecart": { + "protocol_id": 767 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 1028 + }, + "minecraft:ghast_tear": { + "protocol_id": 992 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1219 + }, + "minecraft:glass": { + "protocol_id": 187 + }, + "minecraft:glass_bottle": { + "protocol_id": 996 + }, + "minecraft:glass_pane": { + "protocol_id": 356 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 1004 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1189 + }, + "minecraft:glow_berries": { + "protocol_id": 1205 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 939 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1088 + }, + "minecraft:glow_lichen": { + "protocol_id": 359 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 1029 + }, "minecraft:glowstone": { - "protocol_id": 310 + "protocol_id": 331 }, "minecraft:glowstone_dust": { - "protocol_id": 894 + "protocol_id": 931 }, "minecraft:goat_horn": { - "protocol_id": 1152 + "protocol_id": 1191 }, "minecraft:goat_spawn_egg": { - "protocol_id": 991 + "protocol_id": 1030 }, "minecraft:gold_block": { - "protocol_id": 76 + "protocol_id": 89 }, "minecraft:gold_ingot": { - "protocol_id": 774 + "protocol_id": 811 }, "minecraft:gold_nugget": { - "protocol_id": 955 + "protocol_id": 993 }, "minecraft:gold_ore": { - "protocol_id": 55 + "protocol_id": 68 }, "minecraft:golden_apple": { - "protocol_id": 844 + "protocol_id": 881 }, "minecraft:golden_axe": { - "protocol_id": 790 + "protocol_id": 827 }, "minecraft:golden_boots": { - "protocol_id": 835 + "protocol_id": 872 }, "minecraft:golden_carrot": { - "protocol_id": 1056 + "protocol_id": 1095 }, "minecraft:golden_chestplate": { - "protocol_id": 833 + "protocol_id": 870 }, "minecraft:golden_helmet": { - "protocol_id": 832 + "protocol_id": 869 }, "minecraft:golden_hoe": { - "protocol_id": 791 + "protocol_id": 828 }, "minecraft:golden_horse_armor": { - "protocol_id": 1079 + "protocol_id": 1118 }, "minecraft:golden_leggings": { - "protocol_id": 834 + "protocol_id": 871 }, "minecraft:golden_pickaxe": { - "protocol_id": 789 + "protocol_id": 826 }, "minecraft:golden_shovel": { - "protocol_id": 788 + "protocol_id": 825 }, "minecraft:golden_sword": { - "protocol_id": 787 + "protocol_id": 824 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 625 + "protocol_id": 646 }, "minecraft:granite_stairs": { - "protocol_id": 608 + "protocol_id": 629 }, "minecraft:granite_wall": { - "protocol_id": 381 - }, - "minecraft:grass": { - "protocol_id": 173 + "protocol_id": 402 }, "minecraft:grass_block": { - "protocol_id": 14 + "protocol_id": 27 }, "minecraft:gravel": { - "protocol_id": 48 - }, - "minecraft:gray_banner": { - "protocol_id": 1094 - }, - "minecraft:gray_bed": { - "protocol_id": 931 - }, - "minecraft:gray_candle": { - "protocol_id": 1198 - }, - "minecraft:gray_carpet": { - "protocol_id": 431 - }, - "minecraft:gray_concrete": { - "protocol_id": 540 - }, - "minecraft:gray_concrete_powder": { - "protocol_id": 556 - }, - "minecraft:gray_dye": { - "protocol_id": 911 - }, - "minecraft:gray_glazed_terracotta": { - "protocol_id": 524 - }, - "minecraft:gray_shulker_box": { - "protocol_id": 508 - }, - "minecraft:gray_stained_glass": { - "protocol_id": 456 - }, - "minecraft:gray_stained_glass_pane": { - "protocol_id": 472 - }, - "minecraft:gray_terracotta": { - "protocol_id": 412 - }, - "minecraft:gray_wool": { - "protocol_id": 187 - }, - "minecraft:green_banner": { - "protocol_id": 1100 - }, - "minecraft:green_bed": { - "protocol_id": 937 - }, - "minecraft:green_candle": { - "protocol_id": 1204 - }, - "minecraft:green_carpet": { - "protocol_id": 437 - }, - "minecraft:green_concrete": { - "protocol_id": 546 - }, - "minecraft:green_concrete_powder": { - "protocol_id": 562 - }, - "minecraft:green_dye": { - "protocol_id": 917 - }, - "minecraft:green_glazed_terracotta": { - "protocol_id": 530 - }, - "minecraft:green_shulker_box": { - "protocol_id": 514 - }, - "minecraft:green_stained_glass": { - "protocol_id": 462 - }, - "minecraft:green_stained_glass_pane": { - "protocol_id": 478 - }, - "minecraft:green_terracotta": { - "protocol_id": 418 - }, - "minecraft:green_wool": { - "protocol_id": 193 - }, - "minecraft:grindstone": { - "protocol_id": 1159 - }, - "minecraft:guardian_spawn_egg": { - "protocol_id": 992 - }, - "minecraft:gunpowder": { - "protocol_id": 812 - }, - "minecraft:hanging_roots": { - "protocol_id": 226 - }, - "minecraft:hay_block": { - "protocol_id": 423 - }, - "minecraft:heart_of_the_sea": { - "protocol_id": 1142 - }, - "minecraft:heart_pottery_sherd": { - "protocol_id": 1244 - }, - "minecraft:heartbreak_pottery_sherd": { - "protocol_id": 1245 - }, - "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 676 - }, - "minecraft:hoglin_spawn_egg": { - "protocol_id": 993 - }, - "minecraft:honey_block": { - "protocol_id": 643 - }, - "minecraft:honey_bottle": { - "protocol_id": 1173 - }, - "minecraft:honeycomb": { - "protocol_id": 1170 - }, - "minecraft:honeycomb_block": { - "protocol_id": 1174 - }, - "minecraft:hopper": { - "protocol_id": 645 - }, - "minecraft:hopper_minecart": { - "protocol_id": 732 - }, - "minecraft:horn_coral": { - "protocol_id": 581 - }, - "minecraft:horn_coral_block": { - "protocol_id": 576 - }, - "minecraft:horn_coral_fan": { - "protocol_id": 591 - }, - "minecraft:horse_spawn_egg": { - "protocol_id": 994 - }, - "minecraft:host_armor_trim_smithing_template": { - "protocol_id": 1234 - }, - "minecraft:howl_pottery_sherd": { - "protocol_id": 1246 - }, - "minecraft:husk_spawn_egg": { - "protocol_id": 995 - }, - "minecraft:ice": { - "protocol_id": 284 - }, - "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 316 - }, - "minecraft:infested_cobblestone": { - "protocol_id": 312 - }, - "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 315 - }, - "minecraft:infested_deepslate": { - "protocol_id": 317 - }, - "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 314 - }, - "minecraft:infested_stone": { - "protocol_id": 311 - }, - "minecraft:infested_stone_bricks": { - "protocol_id": 313 - }, - "minecraft:ink_sac": { - "protocol_id": 901 - }, - "minecraft:iron_axe": { - "protocol_id": 795 - }, - "minecraft:iron_bars": { - "protocol_id": 333 - }, - "minecraft:iron_block": { - "protocol_id": 74 - }, - "minecraft:iron_boots": { - "protocol_id": 827 - }, - "minecraft:iron_chestplate": { - "protocol_id": 825 - }, - "minecraft:iron_door": { - "protocol_id": 688 - }, - "minecraft:iron_golem_spawn_egg": { - "protocol_id": 996 - }, - "minecraft:iron_helmet": { - "protocol_id": 824 - }, - "minecraft:iron_hoe": { - "protocol_id": 796 - }, - "minecraft:iron_horse_armor": { - "protocol_id": 1078 - }, - "minecraft:iron_ingot": { - "protocol_id": 770 - }, - "minecraft:iron_leggings": { - "protocol_id": 826 - }, - "minecraft:iron_nugget": { - "protocol_id": 1119 - }, - "minecraft:iron_ore": { - "protocol_id": 51 - }, - "minecraft:iron_pickaxe": { - "protocol_id": 794 - }, - "minecraft:iron_shovel": { - "protocol_id": 793 - }, - "minecraft:iron_sword": { - "protocol_id": 792 - }, - "minecraft:iron_trapdoor": { - "protocol_id": 700 - }, - "minecraft:item_frame": { - "protocol_id": 1048 - }, - "minecraft:jack_o_lantern": { - "protocol_id": 302 - }, - "minecraft:jigsaw": { - "protocol_id": 755 - }, - "minecraft:jukebox": { - "protocol_id": 288 - }, - "minecraft:jungle_boat": { - "protocol_id": 742 - }, - "minecraft:jungle_button": { - "protocol_id": 665 - }, - "minecraft:jungle_chest_boat": { - "protocol_id": 743 - }, - "minecraft:jungle_door": { - "protocol_id": 692 - }, - "minecraft:jungle_fence": { - "protocol_id": 292 - }, - "minecraft:jungle_fence_gate": { - "protocol_id": 715 - }, - "minecraft:jungle_hanging_sign": { - "protocol_id": 860 - }, - "minecraft:jungle_leaves": { - "protocol_id": 157 - }, - "minecraft:jungle_log": { - "protocol_id": 113 - }, - "minecraft:jungle_planks": { - "protocol_id": 26 - }, - "minecraft:jungle_pressure_plate": { - "protocol_id": 680 - }, - "minecraft:jungle_sapling": { - "protocol_id": 38 - }, - "minecraft:jungle_sign": { - "protocol_id": 849 - }, - "minecraft:jungle_slab": { - "protocol_id": 233 - }, - "minecraft:jungle_stairs": { - "protocol_id": 364 - }, - "minecraft:jungle_trapdoor": { - "protocol_id": 704 - }, - "minecraft:jungle_wood": { - "protocol_id": 147 - }, - "minecraft:kelp": { - "protocol_id": 222 - }, - "minecraft:knowledge_book": { - "protocol_id": 1120 - }, - "minecraft:ladder": { - "protocol_id": 281 - }, - "minecraft:lantern": { - "protocol_id": 1163 - }, - "minecraft:lapis_block": { - "protocol_id": 168 - }, - "minecraft:lapis_lazuli": { - "protocol_id": 766 - }, - "minecraft:lapis_ore": { "protocol_id": 61 }, - "minecraft:large_amethyst_bud": { - "protocol_id": 1209 - }, - "minecraft:large_fern": { - "protocol_id": 448 - }, - "minecraft:lava_bucket": { - "protocol_id": 870 - }, - "minecraft:lead": { - "protocol_id": 1082 - }, - "minecraft:leather": { - "protocol_id": 873 - }, - "minecraft:leather_boots": { - "protocol_id": 819 - }, - "minecraft:leather_chestplate": { - "protocol_id": 817 - }, - "minecraft:leather_helmet": { - "protocol_id": 816 - }, - "minecraft:leather_horse_armor": { - "protocol_id": 1081 - }, - "minecraft:leather_leggings": { - "protocol_id": 818 - }, - "minecraft:lectern": { - "protocol_id": 648 - }, - "minecraft:lever": { - "protocol_id": 650 - }, - "minecraft:light": { - "protocol_id": 422 - }, - "minecraft:light_blue_banner": { - "protocol_id": 1090 - }, - "minecraft:light_blue_bed": { - "protocol_id": 927 - }, - "minecraft:light_blue_candle": { - "protocol_id": 1194 - }, - "minecraft:light_blue_carpet": { - "protocol_id": 427 - }, - "minecraft:light_blue_concrete": { - "protocol_id": 536 - }, - "minecraft:light_blue_concrete_powder": { - "protocol_id": 552 - }, - "minecraft:light_blue_dye": { - "protocol_id": 907 - }, - "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 520 - }, - "minecraft:light_blue_shulker_box": { - "protocol_id": 504 - }, - "minecraft:light_blue_stained_glass": { - "protocol_id": 452 - }, - "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 468 - }, - "minecraft:light_blue_terracotta": { - "protocol_id": 408 - }, - "minecraft:light_blue_wool": { - "protocol_id": 183 - }, - "minecraft:light_gray_banner": { - "protocol_id": 1095 - }, - "minecraft:light_gray_bed": { - "protocol_id": 932 - }, - "minecraft:light_gray_candle": { - "protocol_id": 1199 - }, - "minecraft:light_gray_carpet": { - "protocol_id": 432 - }, - "minecraft:light_gray_concrete": { - "protocol_id": 541 - }, - "minecraft:light_gray_concrete_powder": { - "protocol_id": 557 - }, - "minecraft:light_gray_dye": { - "protocol_id": 912 - }, - "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 525 - }, - "minecraft:light_gray_shulker_box": { - "protocol_id": 509 - }, - "minecraft:light_gray_stained_glass": { - "protocol_id": 457 - }, - "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 473 - }, - "minecraft:light_gray_terracotta": { - "protocol_id": 413 - }, - "minecraft:light_gray_wool": { - "protocol_id": 188 - }, - "minecraft:light_weighted_pressure_plate": { - "protocol_id": 675 - }, - "minecraft:lightning_rod": { - "protocol_id": 651 - }, - "minecraft:lilac": { - "protocol_id": 444 - }, - "minecraft:lily_of_the_valley": { - "protocol_id": 207 - }, - "minecraft:lily_pad": { - "protocol_id": 343 - }, - "minecraft:lime_banner": { - "protocol_id": 1092 - }, - "minecraft:lime_bed": { - "protocol_id": 929 - }, - "minecraft:lime_candle": { - "protocol_id": 1196 - }, - "minecraft:lime_carpet": { - "protocol_id": 429 - }, - "minecraft:lime_concrete": { - "protocol_id": 538 - }, - "minecraft:lime_concrete_powder": { - "protocol_id": 554 - }, - "minecraft:lime_dye": { - "protocol_id": 909 - }, - "minecraft:lime_glazed_terracotta": { - "protocol_id": 522 - }, - "minecraft:lime_shulker_box": { - "protocol_id": 506 - }, - "minecraft:lime_stained_glass": { - "protocol_id": 454 - }, - "minecraft:lime_stained_glass_pane": { - "protocol_id": 470 - }, - "minecraft:lime_terracotta": { - "protocol_id": 410 - }, - "minecraft:lime_wool": { - "protocol_id": 185 - }, - "minecraft:lingering_potion": { - "protocol_id": 1115 - }, - "minecraft:llama_spawn_egg": { - "protocol_id": 997 - }, - "minecraft:lodestone": { - "protocol_id": 1175 - }, - "minecraft:loom": { - "protocol_id": 1145 - }, - "minecraft:magenta_banner": { - "protocol_id": 1089 - }, - "minecraft:magenta_bed": { - "protocol_id": 926 - }, - "minecraft:magenta_candle": { - "protocol_id": 1193 - }, - "minecraft:magenta_carpet": { - "protocol_id": 426 - }, - "minecraft:magenta_concrete": { - "protocol_id": 535 - }, - "minecraft:magenta_concrete_powder": { - "protocol_id": 551 - }, - "minecraft:magenta_dye": { - "protocol_id": 906 - }, - "minecraft:magenta_glazed_terracotta": { - "protocol_id": 519 - }, - "minecraft:magenta_shulker_box": { - "protocol_id": 503 - }, - "minecraft:magenta_stained_glass": { - "protocol_id": 451 - }, - "minecraft:magenta_stained_glass_pane": { - "protocol_id": 467 - }, - "minecraft:magenta_terracotta": { - "protocol_id": 407 - }, - "minecraft:magenta_wool": { - "protocol_id": 182 - }, - "minecraft:magma_block": { - "protocol_id": 494 - }, - "minecraft:magma_cream": { - "protocol_id": 962 - }, - "minecraft:magma_cube_spawn_egg": { - "protocol_id": 998 - }, - "minecraft:mangrove_boat": { - "protocol_id": 750 - }, - "minecraft:mangrove_button": { - "protocol_id": 669 - }, - "minecraft:mangrove_chest_boat": { - "protocol_id": 751 - }, - "minecraft:mangrove_door": { - "protocol_id": 696 - }, - "minecraft:mangrove_fence": { - "protocol_id": 296 - }, - "minecraft:mangrove_fence_gate": { - "protocol_id": 719 - }, - "minecraft:mangrove_hanging_sign": { - "protocol_id": 864 - }, - "minecraft:mangrove_leaves": { - "protocol_id": 161 - }, - "minecraft:mangrove_log": { - "protocol_id": 117 - }, - "minecraft:mangrove_planks": { - "protocol_id": 30 - }, - "minecraft:mangrove_pressure_plate": { - "protocol_id": 684 - }, - "minecraft:mangrove_propagule": { - "protocol_id": 42 - }, - "minecraft:mangrove_roots": { - "protocol_id": 118 - }, - "minecraft:mangrove_sign": { - "protocol_id": 853 - }, - "minecraft:mangrove_slab": { - "protocol_id": 237 - }, - "minecraft:mangrove_stairs": { - "protocol_id": 368 - }, - "minecraft:mangrove_trapdoor": { - "protocol_id": 708 - }, - "minecraft:mangrove_wood": { - "protocol_id": 151 - }, - "minecraft:map": { - "protocol_id": 1055 - }, - "minecraft:medium_amethyst_bud": { - "protocol_id": 1208 - }, - "minecraft:melon": { - "protocol_id": 336 - }, - "minecraft:melon_seeds": { - "protocol_id": 946 - }, - "minecraft:melon_slice": { - "protocol_id": 943 - }, - "minecraft:milk_bucket": { - "protocol_id": 874 - }, - "minecraft:minecart": { - "protocol_id": 728 - }, - "minecraft:miner_pottery_sherd": { - "protocol_id": 1247 - }, - "minecraft:mojang_banner_pattern": { - "protocol_id": 1149 - }, - "minecraft:mooshroom_spawn_egg": { - "protocol_id": 999 - }, - "minecraft:moss_block": { - "protocol_id": 225 - }, - "minecraft:moss_carpet": { - "protocol_id": 223 - }, - "minecraft:mossy_cobblestone": { - "protocol_id": 267 - }, - "minecraft:mossy_cobblestone_slab": { - "protocol_id": 621 - }, - "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 603 - }, - "minecraft:mossy_cobblestone_wall": { - "protocol_id": 376 - }, - "minecraft:mossy_stone_brick_slab": { - "protocol_id": 619 - }, - "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 601 - }, - "minecraft:mossy_stone_brick_wall": { - "protocol_id": 380 - }, - "minecraft:mossy_stone_bricks": { - "protocol_id": 319 - }, - "minecraft:mourner_pottery_sherd": { - "protocol_id": 1248 - }, - "minecraft:mud": { - "protocol_id": 19 - }, - "minecraft:mud_brick_slab": { - "protocol_id": 250 - }, - "minecraft:mud_brick_stairs": { - "protocol_id": 341 - }, - "minecraft:mud_brick_wall": { - "protocol_id": 383 - }, - "minecraft:mud_bricks": { - "protocol_id": 323 - }, - "minecraft:muddy_mangrove_roots": { - "protocol_id": 119 - }, - "minecraft:mule_spawn_egg": { - "protocol_id": 1000 - }, - "minecraft:mushroom_stem": { - "protocol_id": 332 - }, - "minecraft:mushroom_stew": { - "protocol_id": 809 - }, - "minecraft:music_disc_11": { - "protocol_id": 1132 - }, - "minecraft:music_disc_13": { - "protocol_id": 1122 - }, - "minecraft:music_disc_5": { - "protocol_id": 1136 - }, - "minecraft:music_disc_blocks": { - "protocol_id": 1124 - }, - "minecraft:music_disc_cat": { - "protocol_id": 1123 - }, - "minecraft:music_disc_chirp": { - "protocol_id": 1125 - }, - "minecraft:music_disc_far": { - "protocol_id": 1126 - }, - "minecraft:music_disc_mall": { - "protocol_id": 1127 - }, - "minecraft:music_disc_mellohi": { - "protocol_id": 1128 - }, - "minecraft:music_disc_otherside": { - "protocol_id": 1134 - }, - "minecraft:music_disc_pigstep": { - "protocol_id": 1137 - }, - "minecraft:music_disc_relic": { - "protocol_id": 1135 - }, - "minecraft:music_disc_stal": { - "protocol_id": 1129 - }, - "minecraft:music_disc_strad": { - "protocol_id": 1130 - }, - "minecraft:music_disc_wait": { + "minecraft:gray_banner": { "protocol_id": 1133 }, - "minecraft:music_disc_ward": { - "protocol_id": 1131 + "minecraft:gray_bed": { + "protocol_id": 968 }, - "minecraft:mutton": { - "protocol_id": 1085 + "minecraft:gray_candle": { + "protocol_id": 1237 }, - "minecraft:mycelium": { - "protocol_id": 342 + "minecraft:gray_carpet": { + "protocol_id": 452 }, - "minecraft:name_tag": { - "protocol_id": 1083 + "minecraft:gray_concrete": { + "protocol_id": 561 }, - "minecraft:nautilus_shell": { - "protocol_id": 1141 + "minecraft:gray_concrete_powder": { + "protocol_id": 577 }, - "minecraft:nether_brick": { - "protocol_id": 1069 + "minecraft:gray_dye": { + "protocol_id": 948 }, - "minecraft:nether_brick_fence": { - "protocol_id": 347 + "minecraft:gray_glazed_terracotta": { + "protocol_id": 545 }, - "minecraft:nether_brick_slab": { - "protocol_id": 251 + "minecraft:gray_shulker_box": { + "protocol_id": 529 }, - "minecraft:nether_brick_stairs": { - "protocol_id": 348 + "minecraft:gray_stained_glass": { + "protocol_id": 477 }, - "minecraft:nether_brick_wall": { - "protocol_id": 384 + "minecraft:gray_stained_glass_pane": { + "protocol_id": 493 }, - "minecraft:nether_bricks": { - "protocol_id": 344 + "minecraft:gray_terracotta": { + "protocol_id": 433 }, - "minecraft:nether_gold_ore": { - "protocol_id": 65 + "minecraft:gray_wool": { + "protocol_id": 208 }, - "minecraft:nether_quartz_ore": { - "protocol_id": 66 + "minecraft:green_banner": { + "protocol_id": 1139 }, - "minecraft:nether_sprouts": { - "protocol_id": 218 + "minecraft:green_bed": { + "protocol_id": 974 }, - "minecraft:nether_star": { - "protocol_id": 1064 + "minecraft:green_candle": { + "protocol_id": 1243 }, - "minecraft:nether_wart": { - "protocol_id": 956 + "minecraft:green_carpet": { + "protocol_id": 458 }, - "minecraft:nether_wart_block": { - "protocol_id": 495 + "minecraft:green_concrete": { + "protocol_id": 567 }, - "minecraft:netherite_axe": { - "protocol_id": 805 + "minecraft:green_concrete_powder": { + "protocol_id": 583 }, - "minecraft:netherite_block": { - "protocol_id": 78 + "minecraft:green_dye": { + "protocol_id": 954 }, - "minecraft:netherite_boots": { - "protocol_id": 839 + "minecraft:green_glazed_terracotta": { + "protocol_id": 551 }, - "minecraft:netherite_chestplate": { - "protocol_id": 837 + "minecraft:green_shulker_box": { + "protocol_id": 535 }, - "minecraft:netherite_helmet": { - "protocol_id": 836 + "minecraft:green_stained_glass": { + "protocol_id": 483 }, - "minecraft:netherite_hoe": { - "protocol_id": 806 + "minecraft:green_stained_glass_pane": { + "protocol_id": 499 }, - "minecraft:netherite_ingot": { - "protocol_id": 775 + "minecraft:green_terracotta": { + "protocol_id": 439 }, - "minecraft:netherite_leggings": { - "protocol_id": 838 + "minecraft:green_wool": { + "protocol_id": 214 }, - "minecraft:netherite_pickaxe": { - "protocol_id": 804 + "minecraft:grindstone": { + "protocol_id": 1198 }, - "minecraft:netherite_scrap": { - "protocol_id": 776 + "minecraft:guardian_spawn_egg": { + "protocol_id": 1031 }, - "minecraft:netherite_shovel": { - "protocol_id": 803 + "minecraft:gunpowder": { + "protocol_id": 849 }, - "minecraft:netherite_sword": { - "protocol_id": 802 + "minecraft:hanging_roots": { + "protocol_id": 247 }, - "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1218 + "minecraft:hay_block": { + "protocol_id": 444 }, - "minecraft:netherrack": { - "protocol_id": 303 + "minecraft:heart_of_the_sea": { + "protocol_id": 1181 }, - "minecraft:note_block": { - "protocol_id": 659 + "minecraft:heart_pottery_sherd": { + "protocol_id": 1283 }, - "minecraft:oak_boat": { - "protocol_id": 736 + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1284 }, - "minecraft:oak_button": { - "protocol_id": 662 + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 697 }, - "minecraft:oak_chest_boat": { - "protocol_id": 737 + "minecraft:hoglin_spawn_egg": { + "protocol_id": 1032 }, - "minecraft:oak_door": { - "protocol_id": 689 + "minecraft:honey_block": { + "protocol_id": 664 }, - "minecraft:oak_fence": { - "protocol_id": 289 - }, - "minecraft:oak_fence_gate": { - "protocol_id": 712 - }, - "minecraft:oak_hanging_sign": { - "protocol_id": 857 - }, - "minecraft:oak_leaves": { - "protocol_id": 154 - }, - "minecraft:oak_log": { - "protocol_id": 110 - }, - "minecraft:oak_planks": { - "protocol_id": 23 - }, - "minecraft:oak_pressure_plate": { - "protocol_id": 677 - }, - "minecraft:oak_sapling": { - "protocol_id": 35 - }, - "minecraft:oak_sign": { - "protocol_id": 846 - }, - "minecraft:oak_slab": { - "protocol_id": 230 - }, - "minecraft:oak_stairs": { - "protocol_id": 361 - }, - "minecraft:oak_trapdoor": { - "protocol_id": 701 - }, - "minecraft:oak_wood": { - "protocol_id": 144 - }, - "minecraft:observer": { - "protocol_id": 644 - }, - "minecraft:obsidian": { - "protocol_id": 268 - }, - "minecraft:ocelot_spawn_egg": { - "protocol_id": 1001 - }, - "minecraft:ochre_froglight": { + "minecraft:honey_bottle": { "protocol_id": 1212 }, - "minecraft:orange_banner": { - "protocol_id": 1088 + "minecraft:honeycomb": { + "protocol_id": 1209 }, - "minecraft:orange_bed": { - "protocol_id": 925 + "minecraft:honeycomb_block": { + "protocol_id": 1213 }, - "minecraft:orange_candle": { - "protocol_id": 1192 + "minecraft:hopper": { + "protocol_id": 666 }, - "minecraft:orange_carpet": { - "protocol_id": 425 + "minecraft:hopper_minecart": { + "protocol_id": 769 }, - "minecraft:orange_concrete": { - "protocol_id": 534 + "minecraft:horn_coral": { + "protocol_id": 602 }, - "minecraft:orange_concrete_powder": { - "protocol_id": 550 + "minecraft:horn_coral_block": { + "protocol_id": 597 }, - "minecraft:orange_dye": { - "protocol_id": 905 + "minecraft:horn_coral_fan": { + "protocol_id": 612 }, - "minecraft:orange_glazed_terracotta": { - "protocol_id": 518 + "minecraft:horse_spawn_egg": { + "protocol_id": 1033 }, - "minecraft:orange_shulker_box": { - "protocol_id": 502 + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1273 }, - "minecraft:orange_stained_glass": { - "protocol_id": 450 + "minecraft:howl_pottery_sherd": { + "protocol_id": 1285 }, - "minecraft:orange_stained_glass_pane": { - "protocol_id": 466 + "minecraft:husk_spawn_egg": { + "protocol_id": 1034 }, - "minecraft:orange_terracotta": { - "protocol_id": 406 + "minecraft:ice": { + "protocol_id": 305 }, - "minecraft:orange_tulip": { - "protocol_id": 202 + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 337 }, - "minecraft:orange_wool": { - "protocol_id": 181 + "minecraft:infested_cobblestone": { + "protocol_id": 333 }, - "minecraft:oxeye_daisy": { - "protocol_id": 205 + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 336 }, - "minecraft:oxidized_copper": { - "protocol_id": 81 + "minecraft:infested_deepslate": { + "protocol_id": 338 }, - "minecraft:oxidized_cut_copper": { - "protocol_id": 85 + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 335 }, - "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 93 + "minecraft:infested_stone": { + "protocol_id": 332 }, - "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 89 + "minecraft:infested_stone_bricks": { + "protocol_id": 334 }, - "minecraft:packed_ice": { - "protocol_id": 441 + "minecraft:ink_sac": { + "protocol_id": 938 }, - "minecraft:packed_mud": { - "protocol_id": 322 + "minecraft:iron_axe": { + "protocol_id": 832 }, - "minecraft:painting": { - "protocol_id": 843 + "minecraft:iron_bars": { + "protocol_id": 354 }, - "minecraft:panda_spawn_egg": { - "protocol_id": 1002 + "minecraft:iron_block": { + "protocol_id": 87 }, - "minecraft:paper": { - "protocol_id": 884 + "minecraft:iron_boots": { + "protocol_id": 864 }, - "minecraft:parrot_spawn_egg": { - "protocol_id": 1003 + "minecraft:iron_chestplate": { + "protocol_id": 862 }, - "minecraft:pearlescent_froglight": { - "protocol_id": 1214 + "minecraft:iron_door": { + "protocol_id": 709 }, - "minecraft:peony": { - "protocol_id": 446 + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 1035 }, - "minecraft:petrified_oak_slab": { - "protocol_id": 246 + "minecraft:iron_helmet": { + "protocol_id": 861 }, - "minecraft:phantom_membrane": { - "protocol_id": 1140 + "minecraft:iron_hoe": { + "protocol_id": 833 }, - "minecraft:phantom_spawn_egg": { - "protocol_id": 1004 + "minecraft:iron_horse_armor": { + "protocol_id": 1117 }, - "minecraft:pig_spawn_egg": { - "protocol_id": 1005 + "minecraft:iron_ingot": { + "protocol_id": 807 }, - "minecraft:piglin_banner_pattern": { - "protocol_id": 1151 + "minecraft:iron_leggings": { + "protocol_id": 863 }, - "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1007 + "minecraft:iron_nugget": { + "protocol_id": 1158 }, - "minecraft:piglin_head": { - "protocol_id": 1063 + "minecraft:iron_ore": { + "protocol_id": 64 }, - "minecraft:piglin_spawn_egg": { - "protocol_id": 1006 + "minecraft:iron_pickaxe": { + "protocol_id": 831 }, - "minecraft:pillager_spawn_egg": { - "protocol_id": 1008 + "minecraft:iron_shovel": { + "protocol_id": 830 }, - "minecraft:pink_banner": { - "protocol_id": 1093 + "minecraft:iron_sword": { + "protocol_id": 829 }, - "minecraft:pink_bed": { - "protocol_id": 930 + "minecraft:iron_trapdoor": { + "protocol_id": 729 }, - "minecraft:pink_candle": { - "protocol_id": 1197 + "minecraft:item_frame": { + "protocol_id": 1087 }, - "minecraft:pink_carpet": { - "protocol_id": 430 + "minecraft:jack_o_lantern": { + "protocol_id": 323 }, - "minecraft:pink_concrete": { - "protocol_id": 539 + "minecraft:jigsaw": { + "protocol_id": 792 }, - "minecraft:pink_concrete_powder": { - "protocol_id": 555 + "minecraft:jukebox": { + "protocol_id": 309 }, - "minecraft:pink_dye": { + "minecraft:jungle_boat": { + "protocol_id": 779 + }, + "minecraft:jungle_button": { + "protocol_id": 686 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 780 + }, + "minecraft:jungle_door": { + "protocol_id": 713 + }, + "minecraft:jungle_fence": { + "protocol_id": 313 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 752 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 897 + }, + "minecraft:jungle_leaves": { + "protocol_id": 178 + }, + "minecraft:jungle_log": { + "protocol_id": 134 + }, + "minecraft:jungle_planks": { + "protocol_id": 39 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 701 + }, + "minecraft:jungle_sapling": { + "protocol_id": 51 + }, + "minecraft:jungle_sign": { + "protocol_id": 886 + }, + "minecraft:jungle_slab": { + "protocol_id": 254 + }, + "minecraft:jungle_stairs": { + "protocol_id": 385 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 733 + }, + "minecraft:jungle_wood": { + "protocol_id": 168 + }, + "minecraft:kelp": { + "protocol_id": 243 + }, + "minecraft:knowledge_book": { + "protocol_id": 1159 + }, + "minecraft:ladder": { + "protocol_id": 302 + }, + "minecraft:lantern": { + "protocol_id": 1202 + }, + "minecraft:lapis_block": { + "protocol_id": 189 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 803 + }, + "minecraft:lapis_ore": { + "protocol_id": 74 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1248 + }, + "minecraft:large_fern": { + "protocol_id": 469 + }, + "minecraft:lava_bucket": { + "protocol_id": 907 + }, + "minecraft:lead": { + "protocol_id": 1121 + }, + "minecraft:leather": { "protocol_id": 910 }, - "minecraft:pink_glazed_terracotta": { - "protocol_id": 523 + "minecraft:leather_boots": { + "protocol_id": 856 }, - "minecraft:pink_petals": { - "protocol_id": 224 + "minecraft:leather_chestplate": { + "protocol_id": 854 }, - "minecraft:pink_shulker_box": { - "protocol_id": 507 + "minecraft:leather_helmet": { + "protocol_id": 853 }, - "minecraft:pink_stained_glass": { - "protocol_id": 455 + "minecraft:leather_horse_armor": { + "protocol_id": 1120 }, - "minecraft:pink_stained_glass_pane": { - "protocol_id": 471 + "minecraft:leather_leggings": { + "protocol_id": 855 }, - "minecraft:pink_terracotta": { - "protocol_id": 411 + "minecraft:lectern": { + "protocol_id": 669 }, - "minecraft:pink_tulip": { + "minecraft:lever": { + "protocol_id": 671 + }, + "minecraft:light": { + "protocol_id": 443 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1129 + }, + "minecraft:light_blue_bed": { + "protocol_id": 964 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1233 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 448 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 557 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 573 + }, + "minecraft:light_blue_dye": { + "protocol_id": 944 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 541 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 525 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 473 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 489 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 429 + }, + "minecraft:light_blue_wool": { "protocol_id": 204 }, - "minecraft:pink_wool": { - "protocol_id": 186 + "minecraft:light_gray_banner": { + "protocol_id": 1134 }, - "minecraft:piston": { + "minecraft:light_gray_bed": { + "protocol_id": 969 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1238 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 453 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 562 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 578 + }, + "minecraft:light_gray_dye": { + "protocol_id": 949 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 546 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 530 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 478 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 494 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 434 + }, + "minecraft:light_gray_wool": { + "protocol_id": 209 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 696 + }, + "minecraft:lightning_rod": { + "protocol_id": 672 + }, + "minecraft:lilac": { + "protocol_id": 465 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 228 + }, + "minecraft:lily_pad": { + "protocol_id": 364 + }, + "minecraft:lime_banner": { + "protocol_id": 1131 + }, + "minecraft:lime_bed": { + "protocol_id": 966 + }, + "minecraft:lime_candle": { + "protocol_id": 1235 + }, + "minecraft:lime_carpet": { + "protocol_id": 450 + }, + "minecraft:lime_concrete": { + "protocol_id": 559 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 575 + }, + "minecraft:lime_dye": { + "protocol_id": 946 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 543 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 527 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 475 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 491 + }, + "minecraft:lime_terracotta": { + "protocol_id": 431 + }, + "minecraft:lime_wool": { + "protocol_id": 206 + }, + "minecraft:lingering_potion": { + "protocol_id": 1154 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1036 + }, + "minecraft:lodestone": { + "protocol_id": 1214 + }, + "minecraft:loom": { + "protocol_id": 1184 + }, + "minecraft:magenta_banner": { + "protocol_id": 1128 + }, + "minecraft:magenta_bed": { + "protocol_id": 963 + }, + "minecraft:magenta_candle": { + "protocol_id": 1232 + }, + "minecraft:magenta_carpet": { + "protocol_id": 447 + }, + "minecraft:magenta_concrete": { + "protocol_id": 556 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 572 + }, + "minecraft:magenta_dye": { + "protocol_id": 943 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 540 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 524 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 472 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 488 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 428 + }, + "minecraft:magenta_wool": { + "protocol_id": 203 + }, + "minecraft:magma_block": { + "protocol_id": 515 + }, + "minecraft:magma_cream": { + "protocol_id": 1000 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 1037 + }, + "minecraft:mangrove_boat": { + "protocol_id": 787 + }, + "minecraft:mangrove_button": { + "protocol_id": 690 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 788 + }, + "minecraft:mangrove_door": { + "protocol_id": 717 + }, + "minecraft:mangrove_fence": { + "protocol_id": 317 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 756 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 901 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 182 + }, + "minecraft:mangrove_log": { + "protocol_id": 138 + }, + "minecraft:mangrove_planks": { + "protocol_id": 43 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 705 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 55 + }, + "minecraft:mangrove_roots": { + "protocol_id": 139 + }, + "minecraft:mangrove_sign": { + "protocol_id": 890 + }, + "minecraft:mangrove_slab": { + "protocol_id": 258 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 389 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 737 + }, + "minecraft:mangrove_wood": { + "protocol_id": 172 + }, + "minecraft:map": { + "protocol_id": 1094 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1247 + }, + "minecraft:melon": { + "protocol_id": 357 + }, + "minecraft:melon_seeds": { + "protocol_id": 984 + }, + "minecraft:melon_slice": { + "protocol_id": 981 + }, + "minecraft:milk_bucket": { + "protocol_id": 911 + }, + "minecraft:minecart": { + "protocol_id": 765 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1286 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1188 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 1038 + }, + "minecraft:moss_block": { + "protocol_id": 246 + }, + "minecraft:moss_carpet": { + "protocol_id": 244 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 288 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 642 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 624 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 397 + }, + "minecraft:mossy_stone_brick_slab": { "protocol_id": 640 }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 622 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 401 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 340 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1287 + }, + "minecraft:mud": { + "protocol_id": 32 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 271 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 362 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 404 + }, + "minecraft:mud_bricks": { + "protocol_id": 344 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 140 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 1039 + }, + "minecraft:mushroom_stem": { + "protocol_id": 353 + }, + "minecraft:mushroom_stew": { + "protocol_id": 846 + }, + "minecraft:music_disc_11": { + "protocol_id": 1171 + }, + "minecraft:music_disc_13": { + "protocol_id": 1161 + }, + "minecraft:music_disc_5": { + "protocol_id": 1175 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1163 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1162 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1164 + }, + "minecraft:music_disc_far": { + "protocol_id": 1165 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1166 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1167 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1173 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1176 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1174 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1168 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1169 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1172 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1170 + }, + "minecraft:mutton": { + "protocol_id": 1124 + }, + "minecraft:mycelium": { + "protocol_id": 363 + }, + "minecraft:name_tag": { + "protocol_id": 1122 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1180 + }, + "minecraft:nether_brick": { + "protocol_id": 1108 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 368 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 272 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 369 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 405 + }, + "minecraft:nether_bricks": { + "protocol_id": 365 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 78 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 79 + }, + "minecraft:nether_sprouts": { + "protocol_id": 239 + }, + "minecraft:nether_star": { + "protocol_id": 1103 + }, + "minecraft:nether_wart": { + "protocol_id": 994 + }, + "minecraft:nether_wart_block": { + "protocol_id": 516 + }, + "minecraft:netherite_axe": { + "protocol_id": 842 + }, + "minecraft:netherite_block": { + "protocol_id": 91 + }, + "minecraft:netherite_boots": { + "protocol_id": 876 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 874 + }, + "minecraft:netherite_helmet": { + "protocol_id": 873 + }, + "minecraft:netherite_hoe": { + "protocol_id": 843 + }, + "minecraft:netherite_ingot": { + "protocol_id": 812 + }, + "minecraft:netherite_leggings": { + "protocol_id": 875 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 841 + }, + "minecraft:netherite_scrap": { + "protocol_id": 813 + }, + "minecraft:netherite_shovel": { + "protocol_id": 840 + }, + "minecraft:netherite_sword": { + "protocol_id": 839 + }, + "minecraft:netherite_upgrade_smithing_template": { + "protocol_id": 1257 + }, + "minecraft:netherrack": { + "protocol_id": 324 + }, + "minecraft:note_block": { + "protocol_id": 680 + }, + "minecraft:oak_boat": { + "protocol_id": 773 + }, + "minecraft:oak_button": { + "protocol_id": 683 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 774 + }, + "minecraft:oak_door": { + "protocol_id": 710 + }, + "minecraft:oak_fence": { + "protocol_id": 310 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 749 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 894 + }, + "minecraft:oak_leaves": { + "protocol_id": 175 + }, + "minecraft:oak_log": { + "protocol_id": 131 + }, + "minecraft:oak_planks": { + "protocol_id": 36 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 698 + }, + "minecraft:oak_sapling": { + "protocol_id": 48 + }, + "minecraft:oak_sign": { + "protocol_id": 883 + }, + "minecraft:oak_slab": { + "protocol_id": 251 + }, + "minecraft:oak_stairs": { + "protocol_id": 382 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 730 + }, + "minecraft:oak_wood": { + "protocol_id": 165 + }, + "minecraft:observer": { + "protocol_id": 665 + }, + "minecraft:obsidian": { + "protocol_id": 289 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 1040 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1251 + }, + "minecraft:orange_banner": { + "protocol_id": 1127 + }, + "minecraft:orange_bed": { + "protocol_id": 962 + }, + "minecraft:orange_candle": { + "protocol_id": 1231 + }, + "minecraft:orange_carpet": { + "protocol_id": 446 + }, + "minecraft:orange_concrete": { + "protocol_id": 555 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 571 + }, + "minecraft:orange_dye": { + "protocol_id": 942 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 539 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 523 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 471 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 487 + }, + "minecraft:orange_terracotta": { + "protocol_id": 427 + }, + "minecraft:orange_tulip": { + "protocol_id": 223 + }, + "minecraft:orange_wool": { + "protocol_id": 202 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 226 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 98 + }, + "minecraft:oxidized_copper": { + "protocol_id": 94 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1305 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 724 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1297 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 744 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 102 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 110 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 106 + }, + "minecraft:packed_ice": { + "protocol_id": 462 + }, + "minecraft:packed_mud": { + "protocol_id": 343 + }, + "minecraft:painting": { + "protocol_id": 880 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 1041 + }, + "minecraft:paper": { + "protocol_id": 921 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1042 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1253 + }, + "minecraft:peony": { + "protocol_id": 467 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 267 + }, + "minecraft:phantom_membrane": { + "protocol_id": 1179 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 1043 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1044 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1190 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1046 + }, + "minecraft:piglin_head": { + "protocol_id": 1102 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1045 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1047 + }, + "minecraft:pink_banner": { + "protocol_id": 1132 + }, + "minecraft:pink_bed": { + "protocol_id": 967 + }, + "minecraft:pink_candle": { + "protocol_id": 1236 + }, + "minecraft:pink_carpet": { + "protocol_id": 451 + }, + "minecraft:pink_concrete": { + "protocol_id": 560 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 576 + }, + "minecraft:pink_dye": { + "protocol_id": 947 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 544 + }, + "minecraft:pink_petals": { + "protocol_id": 245 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 528 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 476 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 492 + }, + "minecraft:pink_terracotta": { + "protocol_id": 432 + }, + "minecraft:pink_tulip": { + "protocol_id": 225 + }, + "minecraft:pink_wool": { + "protocol_id": 207 + }, + "minecraft:piston": { + "protocol_id": 661 + }, "minecraft:pitcher_plant": { - "protocol_id": 210 + "protocol_id": 231 }, "minecraft:pitcher_pod": { - "protocol_id": 1107 + "protocol_id": 1146 }, "minecraft:player_head": { - "protocol_id": 1059 + "protocol_id": 1098 }, "minecraft:plenty_pottery_sherd": { - "protocol_id": 1249 + "protocol_id": 1288 }, "minecraft:podzol": { - "protocol_id": 17 + "protocol_id": 30 }, "minecraft:pointed_dripstone": { - "protocol_id": 1211 + "protocol_id": 1250 }, "minecraft:poisonous_potato": { - "protocol_id": 1054 + "protocol_id": 1093 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1009 + "protocol_id": 1048 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 628 + "protocol_id": 649 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 611 + "protocol_id": 632 }, "minecraft:polished_basalt": { - "protocol_id": 307 + "protocol_id": 328 }, "minecraft:polished_blackstone": { - "protocol_id": 1181 + "protocol_id": 1220 }, "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1186 + "protocol_id": 1225 }, "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1187 + "protocol_id": 1226 }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 392 + "protocol_id": 413 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1185 + "protocol_id": 1224 }, "minecraft:polished_blackstone_button": { - "protocol_id": 661 + "protocol_id": 682 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 674 + "protocol_id": 695 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1182 + "protocol_id": 1221 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1183 + "protocol_id": 1222 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 391 + "protocol_id": 412 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 631 + "protocol_id": 652 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 614 + "protocol_id": 635 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 394 + "protocol_id": 415 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 620 + "protocol_id": 641 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 602 + "protocol_id": 623 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 617 - }, - "minecraft:polished_granite_stairs": { - "protocol_id": 599 - }, - "minecraft:popped_chorus_fruit": { - "protocol_id": 1105 - }, - "minecraft:poppy": { - "protocol_id": 197 - }, - "minecraft:porkchop": { - "protocol_id": 841 - }, - "minecraft:potato": { - "protocol_id": 1052 - }, - "minecraft:potion": { - "protocol_id": 957 - }, - "minecraft:powder_snow_bucket": { - "protocol_id": 871 - }, - "minecraft:powered_rail": { - "protocol_id": 723 - }, - "minecraft:prismarine": { - "protocol_id": 481 - }, - "minecraft:prismarine_brick_slab": { - "protocol_id": 257 - }, - "minecraft:prismarine_brick_stairs": { - "protocol_id": 485 - }, - "minecraft:prismarine_bricks": { - "protocol_id": 482 - }, - "minecraft:prismarine_crystals": { - "protocol_id": 1071 - }, - "minecraft:prismarine_shard": { - "protocol_id": 1070 - }, - "minecraft:prismarine_slab": { - "protocol_id": 256 - }, - "minecraft:prismarine_stairs": { - "protocol_id": 484 - }, - "minecraft:prismarine_wall": { - "protocol_id": 378 - }, - "minecraft:prize_pottery_sherd": { - "protocol_id": 1250 - }, - "minecraft:pufferfish": { - "protocol_id": 898 - }, - "minecraft:pufferfish_bucket": { - "protocol_id": 875 - }, - "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1010 - }, - "minecraft:pumpkin": { - "protocol_id": 300 - }, - "minecraft:pumpkin_pie": { - "protocol_id": 1065 - }, - "minecraft:pumpkin_seeds": { - "protocol_id": 945 - }, - "minecraft:purple_banner": { - "protocol_id": 1097 - }, - "minecraft:purple_bed": { - "protocol_id": 934 - }, - "minecraft:purple_candle": { - "protocol_id": 1201 - }, - "minecraft:purple_carpet": { - "protocol_id": 434 - }, - "minecraft:purple_concrete": { - "protocol_id": 543 - }, - "minecraft:purple_concrete_powder": { - "protocol_id": 559 - }, - "minecraft:purple_dye": { - "protocol_id": 914 - }, - "minecraft:purple_glazed_terracotta": { - "protocol_id": 527 - }, - "minecraft:purple_shulker_box": { - "protocol_id": 511 - }, - "minecraft:purple_stained_glass": { - "protocol_id": 459 - }, - "minecraft:purple_stained_glass_pane": { - "protocol_id": 475 - }, - "minecraft:purple_terracotta": { - "protocol_id": 415 - }, - "minecraft:purple_wool": { - "protocol_id": 190 - }, - "minecraft:purpur_block": { - "protocol_id": 273 - }, - "minecraft:purpur_pillar": { - "protocol_id": 274 - }, - "minecraft:purpur_slab": { - "protocol_id": 255 - }, - "minecraft:purpur_stairs": { - "protocol_id": 275 - }, - "minecraft:quartz": { - "protocol_id": 767 - }, - "minecraft:quartz_block": { - "protocol_id": 401 - }, - "minecraft:quartz_bricks": { - "protocol_id": 402 - }, - "minecraft:quartz_pillar": { - "protocol_id": 403 - }, - "minecraft:quartz_slab": { - "protocol_id": 252 - }, - "minecraft:quartz_stairs": { - "protocol_id": 404 - }, - "minecraft:rabbit": { - "protocol_id": 1072 - }, - "minecraft:rabbit_foot": { - "protocol_id": 1075 - }, - "minecraft:rabbit_hide": { - "protocol_id": 1076 - }, - "minecraft:rabbit_spawn_egg": { - "protocol_id": 1011 - }, - "minecraft:rabbit_stew": { - "protocol_id": 1074 - }, - "minecraft:rail": { - "protocol_id": 725 - }, - "minecraft:raiser_armor_trim_smithing_template": { - "protocol_id": 1233 - }, - "minecraft:ravager_spawn_egg": { - "protocol_id": 1012 - }, - "minecraft:raw_copper": { - "protocol_id": 771 - }, - "minecraft:raw_copper_block": { - "protocol_id": 70 - }, - "minecraft:raw_gold": { - "protocol_id": 773 - }, - "minecraft:raw_gold_block": { - "protocol_id": 71 - }, - "minecraft:raw_iron": { - "protocol_id": 769 - }, - "minecraft:raw_iron_block": { - "protocol_id": 69 - }, - "minecraft:recovery_compass": { - "protocol_id": 889 - }, - "minecraft:red_banner": { - "protocol_id": 1101 - }, - "minecraft:red_bed": { - "protocol_id": 938 - }, - "minecraft:red_candle": { - "protocol_id": 1205 - }, - "minecraft:red_carpet": { - "protocol_id": 438 - }, - "minecraft:red_concrete": { - "protocol_id": 547 - }, - "minecraft:red_concrete_powder": { - "protocol_id": 563 - }, - "minecraft:red_dye": { - "protocol_id": 918 - }, - "minecraft:red_glazed_terracotta": { - "protocol_id": 531 - }, - "minecraft:red_mushroom": { - "protocol_id": 213 - }, - "minecraft:red_mushroom_block": { - "protocol_id": 331 - }, - "minecraft:red_nether_brick_slab": { - "protocol_id": 627 - }, - "minecraft:red_nether_brick_stairs": { - "protocol_id": 610 - }, - "minecraft:red_nether_brick_wall": { - "protocol_id": 386 - }, - "minecraft:red_nether_bricks": { - "protocol_id": 497 - }, - "minecraft:red_sand": { - "protocol_id": 47 - }, - "minecraft:red_sandstone": { - "protocol_id": 488 - }, - "minecraft:red_sandstone_slab": { - "protocol_id": 253 - }, - "minecraft:red_sandstone_stairs": { - "protocol_id": 491 - }, - "minecraft:red_sandstone_wall": { - "protocol_id": 379 - }, - "minecraft:red_shulker_box": { - "protocol_id": 515 - }, - "minecraft:red_stained_glass": { - "protocol_id": 463 - }, - "minecraft:red_stained_glass_pane": { - "protocol_id": 479 - }, - "minecraft:red_terracotta": { - "protocol_id": 419 - }, - "minecraft:red_tulip": { - "protocol_id": 201 - }, - "minecraft:red_wool": { - "protocol_id": 194 - }, - "minecraft:redstone": { - "protocol_id": 635 - }, - "minecraft:redstone_block": { - "protocol_id": 637 - }, - "minecraft:redstone_lamp": { - "protocol_id": 658 - }, - "minecraft:redstone_ore": { - "protocol_id": 57 - }, - "minecraft:redstone_torch": { - "protocol_id": 636 - }, - "minecraft:reinforced_deepslate": { - "protocol_id": 329 - }, - "minecraft:repeater": { "protocol_id": 638 }, - "minecraft:repeating_command_block": { - "protocol_id": 492 + "minecraft:polished_granite_stairs": { + "protocol_id": 620 }, - "minecraft:respawn_anchor": { - "protocol_id": 1189 + "minecraft:polished_tuff": { + "protocol_id": 17 }, - "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1228 - }, - "minecraft:rooted_dirt": { + "minecraft:polished_tuff_slab": { "protocol_id": 18 }, - "minecraft:rose_bush": { - "protocol_id": 445 + "minecraft:polished_tuff_stairs": { + "protocol_id": 19 }, - "minecraft:rotten_flesh": { + "minecraft:polished_tuff_wall": { + "protocol_id": 20 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 1144 + }, + "minecraft:poppy": { + "protocol_id": 218 + }, + "minecraft:porkchop": { + "protocol_id": 878 + }, + "minecraft:potato": { + "protocol_id": 1091 + }, + "minecraft:potion": { + "protocol_id": 995 + }, + "minecraft:powder_snow_bucket": { + "protocol_id": 908 + }, + "minecraft:powered_rail": { + "protocol_id": 760 + }, + "minecraft:prismarine": { + "protocol_id": 502 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 278 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 506 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 503 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 1110 + }, + "minecraft:prismarine_shard": { + "protocol_id": 1109 + }, + "minecraft:prismarine_slab": { + "protocol_id": 277 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 505 + }, + "minecraft:prismarine_wall": { + "protocol_id": 399 + }, + "minecraft:prize_pottery_sherd": { + "protocol_id": 1289 + }, + "minecraft:pufferfish": { + "protocol_id": 935 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 912 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1049 + }, + "minecraft:pumpkin": { + "protocol_id": 321 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 1104 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 983 + }, + "minecraft:purple_banner": { + "protocol_id": 1136 + }, + "minecraft:purple_bed": { + "protocol_id": 971 + }, + "minecraft:purple_candle": { + "protocol_id": 1240 + }, + "minecraft:purple_carpet": { + "protocol_id": 455 + }, + "minecraft:purple_concrete": { + "protocol_id": 564 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 580 + }, + "minecraft:purple_dye": { "protocol_id": 951 }, - "minecraft:saddle": { - "protocol_id": 727 + "minecraft:purple_glazed_terracotta": { + "protocol_id": 548 }, - "minecraft:salmon": { - "protocol_id": 896 + "minecraft:purple_shulker_box": { + "protocol_id": 532 }, - "minecraft:salmon_bucket": { - "protocol_id": 876 + "minecraft:purple_stained_glass": { + "protocol_id": 480 }, - "minecraft:salmon_spawn_egg": { - "protocol_id": 1013 + "minecraft:purple_stained_glass_pane": { + "protocol_id": 496 }, - "minecraft:sand": { - "protocol_id": 44 + "minecraft:purple_terracotta": { + "protocol_id": 436 }, - "minecraft:sandstone": { - "protocol_id": 169 - }, - "minecraft:sandstone_slab": { - "protocol_id": 244 - }, - "minecraft:sandstone_stairs": { - "protocol_id": 358 - }, - "minecraft:sandstone_wall": { - "protocol_id": 387 - }, - "minecraft:scaffolding": { - "protocol_id": 634 - }, - "minecraft:sculk": { - "protocol_id": 349 - }, - "minecraft:sculk_catalyst": { - "protocol_id": 351 - }, - "minecraft:sculk_sensor": { - "protocol_id": 653 - }, - "minecraft:sculk_shrieker": { - "protocol_id": 352 - }, - "minecraft:sculk_vein": { - "protocol_id": 350 - }, - "minecraft:scute": { - "protocol_id": 757 - }, - "minecraft:sea_lantern": { - "protocol_id": 487 - }, - "minecraft:sea_pickle": { - "protocol_id": 179 - }, - "minecraft:seagrass": { - "protocol_id": 178 - }, - "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1219 - }, - "minecraft:shaper_armor_trim_smithing_template": { - "protocol_id": 1231 - }, - "minecraft:sheaf_pottery_sherd": { - "protocol_id": 1251 - }, - "minecraft:shears": { - "protocol_id": 942 - }, - "minecraft:sheep_spawn_egg": { - "protocol_id": 1014 - }, - "minecraft:shelter_pottery_sherd": { - "protocol_id": 1252 - }, - "minecraft:shield": { - "protocol_id": 1116 - }, - "minecraft:shroomlight": { - "protocol_id": 1169 - }, - "minecraft:shulker_box": { - "protocol_id": 500 - }, - "minecraft:shulker_shell": { - "protocol_id": 1118 - }, - "minecraft:shulker_spawn_egg": { - "protocol_id": 1015 - }, - "minecraft:silence_armor_trim_smithing_template": { - "protocol_id": 1232 - }, - "minecraft:silverfish_spawn_egg": { - "protocol_id": 1016 - }, - "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 1018 - }, - "minecraft:skeleton_skull": { - "protocol_id": 1057 - }, - "minecraft:skeleton_spawn_egg": { - "protocol_id": 1017 - }, - "minecraft:skull_banner_pattern": { - "protocol_id": 1148 - }, - "minecraft:skull_pottery_sherd": { - "protocol_id": 1253 - }, - "minecraft:slime_ball": { - "protocol_id": 886 - }, - "minecraft:slime_block": { - "protocol_id": 642 - }, - "minecraft:slime_spawn_egg": { - "protocol_id": 1019 - }, - "minecraft:small_amethyst_bud": { - "protocol_id": 1207 - }, - "minecraft:small_dripleaf": { - "protocol_id": 228 - }, - "minecraft:smithing_table": { - "protocol_id": 1160 - }, - "minecraft:smoker": { - "protocol_id": 1155 - }, - "minecraft:smooth_basalt": { - "protocol_id": 308 - }, - "minecraft:smooth_quartz": { - "protocol_id": 259 - }, - "minecraft:smooth_quartz_slab": { - "protocol_id": 624 - }, - "minecraft:smooth_quartz_stairs": { - "protocol_id": 607 - }, - "minecraft:smooth_red_sandstone": { - "protocol_id": 260 - }, - "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 618 - }, - "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 600 - }, - "minecraft:smooth_sandstone": { - "protocol_id": 261 - }, - "minecraft:smooth_sandstone_slab": { - "protocol_id": 623 - }, - "minecraft:smooth_sandstone_stairs": { - "protocol_id": 606 - }, - "minecraft:smooth_stone": { - "protocol_id": 262 - }, - "minecraft:smooth_stone_slab": { - "protocol_id": 243 - }, - "minecraft:sniffer_egg": { - "protocol_id": 566 - }, - "minecraft:sniffer_spawn_egg": { - "protocol_id": 1020 - }, - "minecraft:snort_pottery_sherd": { - "protocol_id": 1254 - }, - "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1227 - }, - "minecraft:snow": { - "protocol_id": 283 - }, - "minecraft:snow_block": { - "protocol_id": 285 - }, - "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1021 - }, - "minecraft:snowball": { - "protocol_id": 872 - }, - "minecraft:soul_campfire": { - "protocol_id": 1168 - }, - "minecraft:soul_lantern": { - "protocol_id": 1164 - }, - "minecraft:soul_sand": { - "protocol_id": 304 - }, - "minecraft:soul_soil": { - "protocol_id": 305 - }, - "minecraft:soul_torch": { - "protocol_id": 309 - }, - "minecraft:spawner": { - "protocol_id": 276 - }, - "minecraft:spectral_arrow": { - "protocol_id": 1113 - }, - "minecraft:spider_eye": { - "protocol_id": 959 - }, - "minecraft:spider_spawn_egg": { - "protocol_id": 1022 - }, - "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1229 - }, - "minecraft:splash_potion": { - "protocol_id": 1112 - }, - "minecraft:sponge": { - "protocol_id": 164 - }, - "minecraft:spore_blossom": { + "minecraft:purple_wool": { "protocol_id": 211 }, - "minecraft:spruce_boat": { - "protocol_id": 738 + "minecraft:purpur_block": { + "protocol_id": 294 }, - "minecraft:spruce_button": { + "minecraft:purpur_pillar": { + "protocol_id": 295 + }, + "minecraft:purpur_slab": { + "protocol_id": 276 + }, + "minecraft:purpur_stairs": { + "protocol_id": 296 + }, + "minecraft:quartz": { + "protocol_id": 804 + }, + "minecraft:quartz_block": { + "protocol_id": 422 + }, + "minecraft:quartz_bricks": { + "protocol_id": 423 + }, + "minecraft:quartz_pillar": { + "protocol_id": 424 + }, + "minecraft:quartz_slab": { + "protocol_id": 273 + }, + "minecraft:quartz_stairs": { + "protocol_id": 425 + }, + "minecraft:rabbit": { + "protocol_id": 1111 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1114 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1115 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 1050 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1113 + }, + "minecraft:rail": { + "protocol_id": 762 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1272 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 1051 + }, + "minecraft:raw_copper": { + "protocol_id": 808 + }, + "minecraft:raw_copper_block": { + "protocol_id": 83 + }, + "minecraft:raw_gold": { + "protocol_id": 810 + }, + "minecraft:raw_gold_block": { + "protocol_id": 84 + }, + "minecraft:raw_iron": { + "protocol_id": 806 + }, + "minecraft:raw_iron_block": { + "protocol_id": 82 + }, + "minecraft:recovery_compass": { + "protocol_id": 926 + }, + "minecraft:red_banner": { + "protocol_id": 1140 + }, + "minecraft:red_bed": { + "protocol_id": 975 + }, + "minecraft:red_candle": { + "protocol_id": 1244 + }, + "minecraft:red_carpet": { + "protocol_id": 459 + }, + "minecraft:red_concrete": { + "protocol_id": 568 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 584 + }, + "minecraft:red_dye": { + "protocol_id": 955 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 552 + }, + "minecraft:red_mushroom": { + "protocol_id": 234 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 352 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 648 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 631 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 407 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 518 + }, + "minecraft:red_sand": { + "protocol_id": 60 + }, + "minecraft:red_sandstone": { + "protocol_id": 509 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 274 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 512 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 400 + }, + "minecraft:red_shulker_box": { + "protocol_id": 536 + }, + "minecraft:red_stained_glass": { + "protocol_id": 484 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 500 + }, + "minecraft:red_terracotta": { + "protocol_id": 440 + }, + "minecraft:red_tulip": { + "protocol_id": 222 + }, + "minecraft:red_wool": { + "protocol_id": 215 + }, + "minecraft:redstone": { + "protocol_id": 656 + }, + "minecraft:redstone_block": { + "protocol_id": 658 + }, + "minecraft:redstone_lamp": { + "protocol_id": 679 + }, + "minecraft:redstone_ore": { + "protocol_id": 70 + }, + "minecraft:redstone_torch": { + "protocol_id": 657 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 350 + }, + "minecraft:repeater": { + "protocol_id": 659 + }, + "minecraft:repeating_command_block": { + "protocol_id": 513 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1228 + }, + "minecraft:rib_armor_trim_smithing_template": { + "protocol_id": 1267 + }, + "minecraft:rooted_dirt": { + "protocol_id": 31 + }, + "minecraft:rose_bush": { + "protocol_id": 466 + }, + "minecraft:rotten_flesh": { + "protocol_id": 989 + }, + "minecraft:saddle": { + "protocol_id": 764 + }, + "minecraft:salmon": { + "protocol_id": 933 + }, + "minecraft:salmon_bucket": { + "protocol_id": 913 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 1052 + }, + "minecraft:sand": { + "protocol_id": 57 + }, + "minecraft:sandstone": { + "protocol_id": 190 + }, + "minecraft:sandstone_slab": { + "protocol_id": 265 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 379 + }, + "minecraft:sandstone_wall": { + "protocol_id": 408 + }, + "minecraft:scaffolding": { + "protocol_id": 655 + }, + "minecraft:sculk": { + "protocol_id": 370 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 372 + }, + "minecraft:sculk_sensor": { + "protocol_id": 674 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 373 + }, + "minecraft:sculk_vein": { + "protocol_id": 371 + }, + "minecraft:scute": { + "protocol_id": 794 + }, + "minecraft:sea_lantern": { + "protocol_id": 508 + }, + "minecraft:sea_pickle": { + "protocol_id": 200 + }, + "minecraft:seagrass": { + "protocol_id": 199 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "protocol_id": 1258 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1270 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1290 + }, + "minecraft:shears": { + "protocol_id": 980 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 1053 + }, + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1291 + }, + "minecraft:shield": { + "protocol_id": 1155 + }, + "minecraft:short_grass": { + "protocol_id": 194 + }, + "minecraft:shroomlight": { + "protocol_id": 1208 + }, + "minecraft:shulker_box": { + "protocol_id": 521 + }, + "minecraft:shulker_shell": { + "protocol_id": 1157 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 1054 + }, + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1271 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 1055 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 1057 + }, + "minecraft:skeleton_skull": { + "protocol_id": 1096 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1056 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1187 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1292 + }, + "minecraft:slime_ball": { + "protocol_id": 923 + }, + "minecraft:slime_block": { "protocol_id": 663 }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1058 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1246 + }, + "minecraft:small_dripleaf": { + "protocol_id": 249 + }, + "minecraft:smithing_table": { + "protocol_id": 1199 + }, + "minecraft:smoker": { + "protocol_id": 1194 + }, + "minecraft:smooth_basalt": { + "protocol_id": 329 + }, + "minecraft:smooth_quartz": { + "protocol_id": 280 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 645 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 628 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 281 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 639 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 621 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 282 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 644 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 627 + }, + "minecraft:smooth_stone": { + "protocol_id": 283 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 264 + }, + "minecraft:sniffer_egg": { + "protocol_id": 587 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1059 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1293 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1266 + }, + "minecraft:snow": { + "protocol_id": 304 + }, + "minecraft:snow_block": { + "protocol_id": 306 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1060 + }, + "minecraft:snowball": { + "protocol_id": 909 + }, + "minecraft:soul_campfire": { + "protocol_id": 1207 + }, + "minecraft:soul_lantern": { + "protocol_id": 1203 + }, + "minecraft:soul_sand": { + "protocol_id": 325 + }, + "minecraft:soul_soil": { + "protocol_id": 326 + }, + "minecraft:soul_torch": { + "protocol_id": 330 + }, + "minecraft:spawner": { + "protocol_id": 297 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1152 + }, + "minecraft:spider_eye": { + "protocol_id": 997 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1061 + }, + "minecraft:spire_armor_trim_smithing_template": { + "protocol_id": 1268 + }, + "minecraft:splash_potion": { + "protocol_id": 1151 + }, + "minecraft:sponge": { + "protocol_id": 185 + }, + "minecraft:spore_blossom": { + "protocol_id": 232 + }, + "minecraft:spruce_boat": { + "protocol_id": 775 + }, + "minecraft:spruce_button": { + "protocol_id": 684 + }, "minecraft:spruce_chest_boat": { - "protocol_id": 739 + "protocol_id": 776 }, "minecraft:spruce_door": { - "protocol_id": 690 + "protocol_id": 711 }, "minecraft:spruce_fence": { - "protocol_id": 290 + "protocol_id": 311 }, "minecraft:spruce_fence_gate": { - "protocol_id": 713 + "protocol_id": 750 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 858 + "protocol_id": 895 }, "minecraft:spruce_leaves": { - "protocol_id": 155 + "protocol_id": 176 }, "minecraft:spruce_log": { - "protocol_id": 111 + "protocol_id": 132 }, "minecraft:spruce_planks": { - "protocol_id": 24 + "protocol_id": 37 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 678 + "protocol_id": 699 }, "minecraft:spruce_sapling": { - "protocol_id": 36 + "protocol_id": 49 }, "minecraft:spruce_sign": { - "protocol_id": 847 + "protocol_id": 884 }, "minecraft:spruce_slab": { - "protocol_id": 231 + "protocol_id": 252 }, "minecraft:spruce_stairs": { - "protocol_id": 362 + "protocol_id": 383 }, "minecraft:spruce_trapdoor": { - "protocol_id": 702 + "protocol_id": 731 }, "minecraft:spruce_wood": { - "protocol_id": 145 + "protocol_id": 166 }, "minecraft:spyglass": { - "protocol_id": 893 + "protocol_id": 930 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1023 + "protocol_id": 1062 }, "minecraft:stick": { - "protocol_id": 807 + "protocol_id": 844 }, "minecraft:sticky_piston": { - "protocol_id": 641 + "protocol_id": 662 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 785 + "protocol_id": 822 }, "minecraft:stone_brick_slab": { - "protocol_id": 249 + "protocol_id": 270 }, "minecraft:stone_brick_stairs": { - "protocol_id": 340 + "protocol_id": 361 }, "minecraft:stone_brick_wall": { - "protocol_id": 382 + "protocol_id": 403 }, "minecraft:stone_bricks": { - "protocol_id": 318 + "protocol_id": 339 }, "minecraft:stone_button": { - "protocol_id": 660 + "protocol_id": 681 }, "minecraft:stone_hoe": { - "protocol_id": 786 + "protocol_id": 823 }, "minecraft:stone_pickaxe": { - "protocol_id": 784 + "protocol_id": 821 }, "minecraft:stone_pressure_plate": { - "protocol_id": 673 + "protocol_id": 694 }, "minecraft:stone_shovel": { - "protocol_id": 783 + "protocol_id": 820 }, "minecraft:stone_slab": { - "protocol_id": 242 + "protocol_id": 263 }, "minecraft:stone_stairs": { - "protocol_id": 605 + "protocol_id": 626 }, "minecraft:stone_sword": { - "protocol_id": 782 + "protocol_id": 819 }, "minecraft:stonecutter": { - "protocol_id": 1161 + "protocol_id": 1200 }, "minecraft:stray_spawn_egg": { - "protocol_id": 1024 + "protocol_id": 1063 }, "minecraft:strider_spawn_egg": { - "protocol_id": 1025 + "protocol_id": 1064 }, "minecraft:string": { - "protocol_id": 810 + "protocol_id": 847 }, "minecraft:stripped_acacia_log": { - "protocol_id": 127 + "protocol_id": 148 }, "minecraft:stripped_acacia_wood": { - "protocol_id": 137 + "protocol_id": 158 }, "minecraft:stripped_bamboo_block": { - "protocol_id": 143 + "protocol_id": 164 }, "minecraft:stripped_birch_log": { - "protocol_id": 125 + "protocol_id": 146 }, "minecraft:stripped_birch_wood": { - "protocol_id": 135 + "protocol_id": 156 }, "minecraft:stripped_cherry_log": { - "protocol_id": 128 + "protocol_id": 149 }, "minecraft:stripped_cherry_wood": { - "protocol_id": 138 + "protocol_id": 159 }, "minecraft:stripped_crimson_hyphae": { - "protocol_id": 141 + "protocol_id": 162 }, "minecraft:stripped_crimson_stem": { - "protocol_id": 131 + "protocol_id": 152 }, "minecraft:stripped_dark_oak_log": { - "protocol_id": 129 + "protocol_id": 150 }, "minecraft:stripped_dark_oak_wood": { - "protocol_id": 139 + "protocol_id": 160 }, "minecraft:stripped_jungle_log": { - "protocol_id": 126 + "protocol_id": 147 }, "minecraft:stripped_jungle_wood": { - "protocol_id": 136 + "protocol_id": 157 }, "minecraft:stripped_mangrove_log": { - "protocol_id": 130 + "protocol_id": 151 }, "minecraft:stripped_mangrove_wood": { - "protocol_id": 140 + "protocol_id": 161 }, "minecraft:stripped_oak_log": { - "protocol_id": 123 + "protocol_id": 144 }, "minecraft:stripped_oak_wood": { - "protocol_id": 133 + "protocol_id": 154 }, "minecraft:stripped_spruce_log": { - "protocol_id": 124 + "protocol_id": 145 }, "minecraft:stripped_spruce_wood": { - "protocol_id": 134 + "protocol_id": 155 }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 142 + "protocol_id": 163 }, "minecraft:stripped_warped_stem": { - "protocol_id": 132 + "protocol_id": 153 }, "minecraft:structure_block": { - "protocol_id": 754 + "protocol_id": 791 }, "minecraft:structure_void": { - "protocol_id": 499 + "protocol_id": 520 }, "minecraft:sugar": { - "protocol_id": 922 + "protocol_id": 959 }, "minecraft:sugar_cane": { - "protocol_id": 221 + "protocol_id": 242 }, "minecraft:sunflower": { - "protocol_id": 443 + "protocol_id": 464 }, "minecraft:suspicious_gravel": { - "protocol_id": 46 + "protocol_id": 59 }, "minecraft:suspicious_sand": { - "protocol_id": 45 + "protocol_id": 58 }, "minecraft:suspicious_stew": { - "protocol_id": 1144 + "protocol_id": 1183 }, "minecraft:sweet_berries": { - "protocol_id": 1165 + "protocol_id": 1204 }, "minecraft:tadpole_bucket": { - "protocol_id": 880 + "protocol_id": 917 }, "minecraft:tadpole_spawn_egg": { - "protocol_id": 1026 + "protocol_id": 1065 }, "minecraft:tall_grass": { - "protocol_id": 447 + "protocol_id": 468 }, "minecraft:target": { - "protocol_id": 649 + "protocol_id": 670 }, "minecraft:terracotta": { - "protocol_id": 440 + "protocol_id": 461 }, "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1226 + "protocol_id": 1265 }, "minecraft:tinted_glass": { - "protocol_id": 167 + "protocol_id": 188 }, "minecraft:tipped_arrow": { - "protocol_id": 1114 + "protocol_id": 1153 }, "minecraft:tnt": { - "protocol_id": 657 + "protocol_id": 678 }, "minecraft:tnt_minecart": { - "protocol_id": 731 + "protocol_id": 768 }, "minecraft:torch": { - "protocol_id": 269 + "protocol_id": 290 }, "minecraft:torchflower": { - "protocol_id": 209 + "protocol_id": 230 }, "minecraft:torchflower_seeds": { - "protocol_id": 1106 + "protocol_id": 1145 }, "minecraft:totem_of_undying": { - "protocol_id": 1117 + "protocol_id": 1156 }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1027 + "protocol_id": 1066 }, "minecraft:trapped_chest": { - "protocol_id": 656 + "protocol_id": 677 + }, + "minecraft:trial_key": { + "protocol_id": 1311 + }, + "minecraft:trial_spawner": { + "protocol_id": 1310 }, "minecraft:trident": { - "protocol_id": 1139 + "protocol_id": 1178 }, "minecraft:tripwire_hook": { - "protocol_id": 655 + "protocol_id": 676 }, "minecraft:tropical_fish": { - "protocol_id": 897 + "protocol_id": 934 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 878 + "protocol_id": 915 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1028 + "protocol_id": 1067 }, "minecraft:tube_coral": { - "protocol_id": 577 + "protocol_id": 598 }, "minecraft:tube_coral_block": { - "protocol_id": 572 + "protocol_id": 593 }, "minecraft:tube_coral_fan": { - "protocol_id": 587 + "protocol_id": 608 }, "minecraft:tuff": { "protocol_id": 12 }, - "minecraft:turtle_egg": { - "protocol_id": 565 + "minecraft:tuff_brick_slab": { + "protocol_id": 22 }, - "minecraft:turtle_helmet": { - "protocol_id": 756 + "minecraft:tuff_brick_stairs": { + "protocol_id": 23 }, - "minecraft:turtle_spawn_egg": { - "protocol_id": 1029 + "minecraft:tuff_brick_wall": { + "protocol_id": 24 }, - "minecraft:twisting_vines": { - "protocol_id": 220 - }, - "minecraft:verdant_froglight": { - "protocol_id": 1213 - }, - "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1225 - }, - "minecraft:vex_spawn_egg": { - "protocol_id": 1030 - }, - "minecraft:villager_spawn_egg": { - "protocol_id": 1031 - }, - "minecraft:vindicator_spawn_egg": { - "protocol_id": 1032 - }, - "minecraft:vine": { - "protocol_id": 337 - }, - "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 1033 - }, - "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1223 - }, - "minecraft:warden_spawn_egg": { - "protocol_id": 1034 - }, - "minecraft:warped_button": { - "protocol_id": 672 - }, - "minecraft:warped_door": { - "protocol_id": 699 - }, - "minecraft:warped_fence": { - "protocol_id": 299 - }, - "minecraft:warped_fence_gate": { - "protocol_id": 722 - }, - "minecraft:warped_fungus": { - "protocol_id": 215 - }, - "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 734 - }, - "minecraft:warped_hanging_sign": { - "protocol_id": 867 - }, - "minecraft:warped_hyphae": { - "protocol_id": 153 - }, - "minecraft:warped_nylium": { + "minecraft:tuff_bricks": { "protocol_id": 21 }, - "minecraft:warped_planks": { - "protocol_id": 33 + "minecraft:tuff_slab": { + "protocol_id": 13 }, - "minecraft:warped_pressure_plate": { - "protocol_id": 687 + "minecraft:tuff_stairs": { + "protocol_id": 14 }, - "minecraft:warped_roots": { - "protocol_id": 217 + "minecraft:tuff_wall": { + "protocol_id": 15 }, - "minecraft:warped_sign": { - "protocol_id": 856 + "minecraft:turtle_egg": { + "protocol_id": 586 }, - "minecraft:warped_slab": { + "minecraft:turtle_helmet": { + "protocol_id": 793 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 1068 + }, + "minecraft:twisting_vines": { "protocol_id": 241 }, - "minecraft:warped_stairs": { - "protocol_id": 372 + "minecraft:verdant_froglight": { + "protocol_id": 1252 }, - "minecraft:warped_stem": { - "protocol_id": 121 + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1264 }, - "minecraft:warped_trapdoor": { - "protocol_id": 711 + "minecraft:vex_spawn_egg": { + "protocol_id": 1069 }, - "minecraft:warped_wart_block": { - "protocol_id": 496 + "minecraft:villager_spawn_egg": { + "protocol_id": 1070 }, - "minecraft:water_bucket": { - "protocol_id": 869 + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1071 }, - "minecraft:waxed_copper_block": { - "protocol_id": 94 + "minecraft:vine": { + "protocol_id": 358 }, - "minecraft:waxed_cut_copper": { - "protocol_id": 98 + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1072 }, - "minecraft:waxed_cut_copper_slab": { - "protocol_id": 106 + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1262 }, - "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 102 + "minecraft:warden_spawn_egg": { + "protocol_id": 1073 }, - "minecraft:waxed_exposed_copper": { - "protocol_id": 95 + "minecraft:warped_button": { + "protocol_id": 693 }, - "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 99 + "minecraft:warped_door": { + "protocol_id": 720 }, - "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 107 + "minecraft:warped_fence": { + "protocol_id": 320 }, - "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 103 + "minecraft:warped_fence_gate": { + "protocol_id": 759 }, - "minecraft:waxed_oxidized_copper": { - "protocol_id": 97 + "minecraft:warped_fungus": { + "protocol_id": 236 }, - "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 101 + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 771 }, - "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 109 - }, - "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 105 - }, - "minecraft:waxed_weathered_copper": { - "protocol_id": 96 - }, - "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 100 - }, - "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 108 - }, - "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 104 - }, - "minecraft:wayfinder_armor_trim_smithing_template": { - "protocol_id": 1230 - }, - "minecraft:weathered_copper": { - "protocol_id": 80 - }, - "minecraft:weathered_cut_copper": { - "protocol_id": 84 - }, - "minecraft:weathered_cut_copper_slab": { - "protocol_id": 92 - }, - "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 88 - }, - "minecraft:weeping_vines": { - "protocol_id": 219 - }, - "minecraft:wet_sponge": { - "protocol_id": 165 - }, - "minecraft:wheat": { - "protocol_id": 814 - }, - "minecraft:wheat_seeds": { - "protocol_id": 813 - }, - "minecraft:white_banner": { - "protocol_id": 1087 - }, - "minecraft:white_bed": { - "protocol_id": 924 - }, - "minecraft:white_candle": { - "protocol_id": 1191 - }, - "minecraft:white_carpet": { - "protocol_id": 424 - }, - "minecraft:white_concrete": { - "protocol_id": 533 - }, - "minecraft:white_concrete_powder": { - "protocol_id": 549 - }, - "minecraft:white_dye": { + "minecraft:warped_hanging_sign": { "protocol_id": 904 }, - "minecraft:white_glazed_terracotta": { + "minecraft:warped_hyphae": { + "protocol_id": 174 + }, + "minecraft:warped_nylium": { + "protocol_id": 34 + }, + "minecraft:warped_planks": { + "protocol_id": 46 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 708 + }, + "minecraft:warped_roots": { + "protocol_id": 238 + }, + "minecraft:warped_sign": { + "protocol_id": 893 + }, + "minecraft:warped_slab": { + "protocol_id": 262 + }, + "minecraft:warped_stairs": { + "protocol_id": 393 + }, + "minecraft:warped_stem": { + "protocol_id": 142 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 740 + }, + "minecraft:warped_wart_block": { "protocol_id": 517 }, + "minecraft:water_bucket": { + "protocol_id": 906 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 115 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 111 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1306 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 725 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1298 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 745 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 119 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 127 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 123 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 116 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 112 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1307 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 726 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1299 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 746 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 120 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 128 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 124 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 118 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 114 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1309 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 728 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1301 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 748 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 122 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 130 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 126 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 117 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 113 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1308 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 727 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1300 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 747 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 121 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 129 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 125 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1269 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 97 + }, + "minecraft:weathered_copper": { + "protocol_id": 93 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1304 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 723 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1296 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 743 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 101 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 109 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 105 + }, + "minecraft:weeping_vines": { + "protocol_id": 240 + }, + "minecraft:wet_sponge": { + "protocol_id": 186 + }, + "minecraft:wheat": { + "protocol_id": 851 + }, + "minecraft:wheat_seeds": { + "protocol_id": 850 + }, + "minecraft:white_banner": { + "protocol_id": 1126 + }, + "minecraft:white_bed": { + "protocol_id": 961 + }, + "minecraft:white_candle": { + "protocol_id": 1230 + }, + "minecraft:white_carpet": { + "protocol_id": 445 + }, + "minecraft:white_concrete": { + "protocol_id": 554 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 570 + }, + "minecraft:white_dye": { + "protocol_id": 941 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 538 + }, "minecraft:white_shulker_box": { - "protocol_id": 501 + "protocol_id": 522 }, "minecraft:white_stained_glass": { - "protocol_id": 449 + "protocol_id": 470 }, "minecraft:white_stained_glass_pane": { - "protocol_id": 465 + "protocol_id": 486 }, "minecraft:white_terracotta": { - "protocol_id": 405 + "protocol_id": 426 }, "minecraft:white_tulip": { - "protocol_id": 203 + "protocol_id": 224 }, "minecraft:white_wool": { - "protocol_id": 180 + "protocol_id": 201 }, "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1222 + "protocol_id": 1261 }, "minecraft:witch_spawn_egg": { - "protocol_id": 1035 + "protocol_id": 1074 }, "minecraft:wither_rose": { - "protocol_id": 208 + "protocol_id": 229 }, "minecraft:wither_skeleton_skull": { - "protocol_id": 1058 + "protocol_id": 1097 }, "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1037 + "protocol_id": 1076 }, "minecraft:wither_spawn_egg": { - "protocol_id": 1036 + "protocol_id": 1075 }, "minecraft:wolf_spawn_egg": { - "protocol_id": 1038 + "protocol_id": 1077 }, "minecraft:wooden_axe": { - "protocol_id": 780 + "protocol_id": 817 }, "minecraft:wooden_hoe": { - "protocol_id": 781 + "protocol_id": 818 }, "minecraft:wooden_pickaxe": { - "protocol_id": 779 + "protocol_id": 816 }, "minecraft:wooden_shovel": { - "protocol_id": 778 + "protocol_id": 815 }, "minecraft:wooden_sword": { - "protocol_id": 777 + "protocol_id": 814 }, "minecraft:writable_book": { - "protocol_id": 1046 + "protocol_id": 1085 }, "minecraft:written_book": { - "protocol_id": 1047 + "protocol_id": 1086 }, "minecraft:yellow_banner": { - "protocol_id": 1091 + "protocol_id": 1130 }, "minecraft:yellow_bed": { - "protocol_id": 928 + "protocol_id": 965 }, "minecraft:yellow_candle": { - "protocol_id": 1195 + "protocol_id": 1234 }, "minecraft:yellow_carpet": { - "protocol_id": 428 + "protocol_id": 449 }, "minecraft:yellow_concrete": { - "protocol_id": 537 + "protocol_id": 558 }, "minecraft:yellow_concrete_powder": { - "protocol_id": 553 + "protocol_id": 574 }, "minecraft:yellow_dye": { - "protocol_id": 908 + "protocol_id": 945 }, "minecraft:yellow_glazed_terracotta": { - "protocol_id": 521 + "protocol_id": 542 }, "minecraft:yellow_shulker_box": { - "protocol_id": 505 + "protocol_id": 526 }, "minecraft:yellow_stained_glass": { - "protocol_id": 453 + "protocol_id": 474 }, "minecraft:yellow_stained_glass_pane": { - "protocol_id": 469 + "protocol_id": 490 }, "minecraft:yellow_terracotta": { - "protocol_id": 409 + "protocol_id": 430 }, "minecraft:yellow_wool": { - "protocol_id": 184 + "protocol_id": 205 }, "minecraft:zoglin_spawn_egg": { - "protocol_id": 1039 + "protocol_id": 1078 }, "minecraft:zombie_head": { - "protocol_id": 1060 + "protocol_id": 1099 }, "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 1041 + "protocol_id": 1080 }, "minecraft:zombie_spawn_egg": { - "protocol_id": 1040 + "protocol_id": 1079 }, "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 1042 + "protocol_id": 1081 }, "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 1043 + "protocol_id": 1082 } }, "protocol_id": 7 @@ -8845,6 +9918,27 @@ "minecraft:breed_target": { "protocol_id": 17 }, + "minecraft:breeze_jump_cooldown": { + "protocol_id": 97 + }, + "minecraft:breeze_jump_inhaling": { + "protocol_id": 102 + }, + "minecraft:breeze_jump_target": { + "protocol_id": 103 + }, + "minecraft:breeze_shoot": { + "protocol_id": 98 + }, + "minecraft:breeze_shoot_charging": { + "protocol_id": 99 + }, + "minecraft:breeze_shoot_cooldown": { + "protocol_id": 101 + }, + "minecraft:breeze_shoot_recover": { + "protocol_id": 100 + }, "minecraft:cant_reach_walk_target_since": { "protocol_id": 30 }, @@ -9118,29 +10212,32 @@ "minecraft:menu": { "entries": { "minecraft:anvil": { - "protocol_id": 7 - }, - "minecraft:beacon": { "protocol_id": 8 }, - "minecraft:blast_furnace": { + "minecraft:beacon": { "protocol_id": 9 }, - "minecraft:brewing_stand": { + "minecraft:blast_furnace": { "protocol_id": 10 }, - "minecraft:cartography_table": { - "protocol_id": 22 - }, - "minecraft:crafting": { + "minecraft:brewing_stand": { "protocol_id": 11 }, - "minecraft:enchantment": { + "minecraft:cartography_table": { + "protocol_id": 23 + }, + "minecraft:crafter_3x3": { + "protocol_id": 7 + }, + "minecraft:crafting": { "protocol_id": 12 }, - "minecraft:furnace": { + "minecraft:enchantment": { "protocol_id": 13 }, + "minecraft:furnace": { + "protocol_id": 14 + }, "minecraft:generic_3x3": { "protocol_id": 6 }, @@ -9163,31 +10260,31 @@ "protocol_id": 5 }, "minecraft:grindstone": { - "protocol_id": 14 - }, - "minecraft:hopper": { "protocol_id": 15 }, - "minecraft:lectern": { + "minecraft:hopper": { "protocol_id": 16 }, - "minecraft:loom": { + "minecraft:lectern": { "protocol_id": 17 }, - "minecraft:merchant": { + "minecraft:loom": { "protocol_id": 18 }, - "minecraft:shulker_box": { + "minecraft:merchant": { "protocol_id": 19 }, - "minecraft:smithing": { + "minecraft:shulker_box": { "protocol_id": 20 }, - "minecraft:smoker": { + "minecraft:smithing": { "protocol_id": 21 }, + "minecraft:smoker": { + "protocol_id": 22 + }, "minecraft:stonecutter": { - "protocol_id": 23 + "protocol_id": 24 } }, "protocol_id": 17 @@ -9296,6 +10393,20 @@ }, "protocol_id": 3 }, + "minecraft:number_format_type": { + "entries": { + "minecraft:blank": { + "protocol_id": 0 + }, + "minecraft:fixed": { + "protocol_id": 2 + }, + "minecraft:styled": { + "protocol_id": 1 + } + }, + "protocol_id": 69 + }, "minecraft:painting_variant": { "default": "minecraft:kebab", "entries": { @@ -9401,7 +10512,7 @@ "protocol_id": 1 }, "minecraft:ash": { - "protocol_id": 72 + "protocol_id": 75 }, "minecraft:block": { "protocol_id": 2 @@ -9413,58 +10524,58 @@ "protocol_id": 4 }, "minecraft:bubble_column_up": { - "protocol_id": 62 - }, - "minecraft:bubble_pop": { - "protocol_id": 60 - }, - "minecraft:campfire_cosy_smoke": { "protocol_id": 65 }, + "minecraft:bubble_pop": { + "protocol_id": 63 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 68 + }, "minecraft:campfire_signal_smoke": { - "protocol_id": 66 + "protocol_id": 69 }, "minecraft:cherry_leaves": { - "protocol_id": 29 + "protocol_id": 31 }, "minecraft:cloud": { "protocol_id": 5 }, "minecraft:composter": { - "protocol_id": 37 + "protocol_id": 39 }, "minecraft:crimson_spore": { - "protocol_id": 73 + "protocol_id": 76 }, "minecraft:crit": { "protocol_id": 6 }, "minecraft:current_down": { - "protocol_id": 61 + "protocol_id": 64 }, "minecraft:damage_indicator": { "protocol_id": 7 }, "minecraft:dolphin": { - "protocol_id": 64 + "protocol_id": 67 }, "minecraft:dragon_breath": { "protocol_id": 8 }, "minecraft:dripping_dripstone_lava": { - "protocol_id": 83 + "protocol_id": 86 }, "minecraft:dripping_dripstone_water": { - "protocol_id": 85 + "protocol_id": 88 }, "minecraft:dripping_honey": { - "protocol_id": 67 + "protocol_id": 70 }, "minecraft:dripping_lava": { "protocol_id": 9 }, "minecraft:dripping_obsidian_tear": { - "protocol_id": 76 + "protocol_id": 79 }, "minecraft:dripping_water": { "protocol_id": 12 @@ -9475,17 +10586,20 @@ "minecraft:dust_color_transition": { "protocol_id": 15 }, + "minecraft:dust_plume": { + "protocol_id": 98 + }, "minecraft:effect": { "protocol_id": 16 }, "minecraft:egg_crack": { - "protocol_id": 94 + "protocol_id": 97 }, "minecraft:elder_guardian": { "protocol_id": 17 }, "minecraft:electric_spark": { - "protocol_id": 91 + "protocol_id": 94 }, "minecraft:enchant": { "protocol_id": 19 @@ -9506,178 +10620,193 @@ "protocol_id": 22 }, "minecraft:falling_dripstone_lava": { - "protocol_id": 84 + "protocol_id": 87 }, "minecraft:falling_dripstone_water": { - "protocol_id": 86 + "protocol_id": 89 }, "minecraft:falling_dust": { - "protocol_id": 25 + "protocol_id": 27 }, "minecraft:falling_honey": { - "protocol_id": 68 + "protocol_id": 71 }, "minecraft:falling_lava": { "protocol_id": 10 }, "minecraft:falling_nectar": { - "protocol_id": 70 + "protocol_id": 73 }, "minecraft:falling_obsidian_tear": { - "protocol_id": 77 + "protocol_id": 80 }, "minecraft:falling_spore_blossom": { - "protocol_id": 71 + "protocol_id": 74 }, "minecraft:falling_water": { "protocol_id": 13 }, "minecraft:firework": { - "protocol_id": 26 - }, - "minecraft:fishing": { - "protocol_id": 27 - }, - "minecraft:flame": { "protocol_id": 28 }, + "minecraft:fishing": { + "protocol_id": 29 + }, + "minecraft:flame": { + "protocol_id": 30 + }, "minecraft:flash": { - "protocol_id": 35 + "protocol_id": 37 }, "minecraft:glow": { - "protocol_id": 88 + "protocol_id": 91 }, "minecraft:glow_squid_ink": { - "protocol_id": 87 + "protocol_id": 90 + }, + "minecraft:gust": { + "protocol_id": 24 + }, + "minecraft:gust_dust": { + "protocol_id": 99 + }, + "minecraft:gust_emitter": { + "protocol_id": 25 }, "minecraft:happy_villager": { - "protocol_id": 36 - }, - "minecraft:heart": { "protocol_id": 38 }, - "minecraft:instant_effect": { - "protocol_id": 39 - }, - "minecraft:item": { + "minecraft:heart": { "protocol_id": 40 }, - "minecraft:item_slime": { + "minecraft:instant_effect": { + "protocol_id": 41 + }, + "minecraft:item": { "protocol_id": 42 }, + "minecraft:item_slime": { + "protocol_id": 44 + }, "minecraft:item_snowball": { - "protocol_id": 43 + "protocol_id": 45 }, "minecraft:landing_honey": { - "protocol_id": 69 + "protocol_id": 72 }, "minecraft:landing_lava": { "protocol_id": 11 }, "minecraft:landing_obsidian_tear": { - "protocol_id": 78 - }, - "minecraft:large_smoke": { - "protocol_id": 44 - }, - "minecraft:lava": { - "protocol_id": 45 - }, - "minecraft:mycelium": { - "protocol_id": 46 - }, - "minecraft:nautilus": { - "protocol_id": 63 - }, - "minecraft:note": { - "protocol_id": 47 - }, - "minecraft:poof": { - "protocol_id": 48 - }, - "minecraft:portal": { - "protocol_id": 49 - }, - "minecraft:rain": { - "protocol_id": 50 - }, - "minecraft:reverse_portal": { - "protocol_id": 79 - }, - "minecraft:scrape": { - "protocol_id": 92 - }, - "minecraft:sculk_charge": { - "protocol_id": 31 - }, - "minecraft:sculk_charge_pop": { - "protocol_id": 32 - }, - "minecraft:sculk_soul": { - "protocol_id": 30 - }, - "minecraft:shriek": { - "protocol_id": 93 - }, - "minecraft:small_flame": { "protocol_id": 81 }, - "minecraft:smoke": { + "minecraft:large_smoke": { + "protocol_id": 46 + }, + "minecraft:lava": { + "protocol_id": 47 + }, + "minecraft:mycelium": { + "protocol_id": 48 + }, + "minecraft:nautilus": { + "protocol_id": 66 + }, + "minecraft:note": { + "protocol_id": 49 + }, + "minecraft:poof": { + "protocol_id": 50 + }, + "minecraft:portal": { "protocol_id": 51 }, - "minecraft:sneeze": { + "minecraft:rain": { "protocol_id": 52 }, - "minecraft:snowflake": { + "minecraft:reverse_portal": { "protocol_id": 82 }, - "minecraft:sonic_boom": { - "protocol_id": 24 + "minecraft:scrape": { + "protocol_id": 95 }, - "minecraft:soul": { - "protocol_id": 34 - }, - "minecraft:soul_fire_flame": { + "minecraft:sculk_charge": { "protocol_id": 33 }, - "minecraft:spit": { + "minecraft:sculk_charge_pop": { + "protocol_id": 34 + }, + "minecraft:sculk_soul": { + "protocol_id": 32 + }, + "minecraft:shriek": { + "protocol_id": 96 + }, + "minecraft:small_flame": { + "protocol_id": 84 + }, + "minecraft:smoke": { "protocol_id": 53 }, - "minecraft:splash": { - "protocol_id": 58 - }, - "minecraft:spore_blossom_air": { - "protocol_id": 75 - }, - "minecraft:squid_ink": { - "protocol_id": 54 - }, - "minecraft:sweep_attack": { + "minecraft:sneeze": { "protocol_id": 55 }, - "minecraft:totem_of_undying": { + "minecraft:snowflake": { + "protocol_id": 85 + }, + "minecraft:sonic_boom": { + "protocol_id": 26 + }, + "minecraft:soul": { + "protocol_id": 36 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 35 + }, + "minecraft:spit": { "protocol_id": 56 }, - "minecraft:underwater": { + "minecraft:splash": { + "protocol_id": 61 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 78 + }, + "minecraft:squid_ink": { "protocol_id": 57 }, + "minecraft:sweep_attack": { + "protocol_id": 58 + }, + "minecraft:totem_of_undying": { + "protocol_id": 59 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 100 + }, + "minecraft:underwater": { + "protocol_id": 60 + }, "minecraft:vibration": { - "protocol_id": 41 + "protocol_id": 43 }, "minecraft:warped_spore": { - "protocol_id": 74 + "protocol_id": 77 }, "minecraft:wax_off": { - "protocol_id": 90 + "protocol_id": 93 }, "minecraft:wax_on": { - "protocol_id": 89 + "protocol_id": 92 }, "minecraft:white_ash": { - "protocol_id": 80 + "protocol_id": 83 + }, + "minecraft:white_smoke": { + "protocol_id": 54 }, "minecraft:witch": { - "protocol_id": 59 + "protocol_id": 62 } }, "protocol_id": 9 @@ -10073,6 +11202,9 @@ "minecraft:axolotl_temptations": { "protocol_id": 15 }, + "minecraft:breeze_attack_entity_sensor": { + "protocol_id": 23 + }, "minecraft:camel_temptations": { "protocol_id": 18 }, @@ -10370,19 +11502,19 @@ "protocol_id": 112 }, "minecraft:block.bamboo_wood_hanging_sign.break": { - "protocol_id": 605 + "protocol_id": 634 }, "minecraft:block.bamboo_wood_hanging_sign.fall": { - "protocol_id": 606 + "protocol_id": 635 }, "minecraft:block.bamboo_wood_hanging_sign.hit": { - "protocol_id": 607 + "protocol_id": 636 }, "minecraft:block.bamboo_wood_hanging_sign.place": { - "protocol_id": 608 + "protocol_id": 637 }, "minecraft:block.bamboo_wood_hanging_sign.step": { - "protocol_id": 604 + "protocol_id": 633 }, "minecraft:block.bamboo_wood_pressure_plate.click_off": { "protocol_id": 109 @@ -10466,10 +11598,10 @@ "protocol_id": 146 }, "minecraft:block.big_dripleaf.tilt_down": { - "protocol_id": 384 + "protocol_id": 413 }, "minecraft:block.big_dripleaf.tilt_up": { - "protocol_id": 385 + "protocol_id": 414 }, "minecraft:block.blastfurnace.fire_crackle": { "protocol_id": 162 @@ -10490,1690 +11622,1816 @@ "protocol_id": 158 }, "minecraft:block.brewing_stand.brew": { - "protocol_id": 166 - }, - "minecraft:block.bubble_column.bubble_pop": { - "protocol_id": 172 - }, - "minecraft:block.bubble_column.upwards_ambient": { - "protocol_id": 173 - }, - "minecraft:block.bubble_column.upwards_inside": { - "protocol_id": 174 - }, - "minecraft:block.bubble_column.whirlpool_ambient": { "protocol_id": 175 }, + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 181 + }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 182 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 183 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 184 + }, "minecraft:block.bubble_column.whirlpool_inside": { - "protocol_id": 176 + "protocol_id": 185 }, "minecraft:block.cake.add_candle": { - "protocol_id": 192 + "protocol_id": 201 }, "minecraft:block.calcite.break": { - "protocol_id": 193 + "protocol_id": 202 }, "minecraft:block.calcite.fall": { - "protocol_id": 197 + "protocol_id": 206 }, "minecraft:block.calcite.hit": { - "protocol_id": 196 + "protocol_id": 205 }, "minecraft:block.calcite.place": { - "protocol_id": 195 + "protocol_id": 204 }, "minecraft:block.calcite.step": { - "protocol_id": 194 + "protocol_id": 203 }, "minecraft:block.campfire.crackle": { - "protocol_id": 209 + "protocol_id": 218 }, "minecraft:block.candle.ambient": { - "protocol_id": 210 + "protocol_id": 219 }, "minecraft:block.candle.break": { - "protocol_id": 211 + "protocol_id": 220 }, "minecraft:block.candle.extinguish": { - "protocol_id": 212 + "protocol_id": 221 }, "minecraft:block.candle.fall": { - "protocol_id": 213 + "protocol_id": 222 }, "minecraft:block.candle.hit": { - "protocol_id": 214 + "protocol_id": 223 }, "minecraft:block.candle.place": { - "protocol_id": 215 + "protocol_id": 224 }, "minecraft:block.candle.step": { - "protocol_id": 216 + "protocol_id": 225 }, "minecraft:block.cave_vines.break": { - "protocol_id": 226 - }, - "minecraft:block.cave_vines.fall": { - "protocol_id": 227 - }, - "minecraft:block.cave_vines.hit": { - "protocol_id": 228 - }, - "minecraft:block.cave_vines.pick_berries": { - "protocol_id": 231 - }, - "minecraft:block.cave_vines.place": { - "protocol_id": 229 - }, - "minecraft:block.cave_vines.step": { - "protocol_id": 230 - }, - "minecraft:block.chain.break": { - "protocol_id": 232 - }, - "minecraft:block.chain.fall": { - "protocol_id": 233 - }, - "minecraft:block.chain.hit": { - "protocol_id": 234 - }, - "minecraft:block.chain.place": { "protocol_id": 235 }, - "minecraft:block.chain.step": { + "minecraft:block.cave_vines.fall": { "protocol_id": 236 }, - "minecraft:block.cherry_leaves.break": { - "protocol_id": 247 - }, - "minecraft:block.cherry_leaves.fall": { - "protocol_id": 248 - }, - "minecraft:block.cherry_leaves.hit": { - "protocol_id": 249 - }, - "minecraft:block.cherry_leaves.place": { - "protocol_id": 250 - }, - "minecraft:block.cherry_leaves.step": { - "protocol_id": 251 - }, - "minecraft:block.cherry_sapling.break": { - "protocol_id": 242 - }, - "minecraft:block.cherry_sapling.fall": { - "protocol_id": 243 - }, - "minecraft:block.cherry_sapling.hit": { - "protocol_id": 244 - }, - "minecraft:block.cherry_sapling.place": { - "protocol_id": 245 - }, - "minecraft:block.cherry_sapling.step": { - "protocol_id": 246 - }, - "minecraft:block.cherry_wood.break": { + "minecraft:block.cave_vines.hit": { "protocol_id": 237 }, - "minecraft:block.cherry_wood.fall": { - "protocol_id": 238 - }, - "minecraft:block.cherry_wood.hit": { - "protocol_id": 239 - }, - "minecraft:block.cherry_wood.place": { + "minecraft:block.cave_vines.pick_berries": { "protocol_id": 240 }, - "minecraft:block.cherry_wood.step": { + "minecraft:block.cave_vines.place": { + "protocol_id": 238 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 239 + }, + "minecraft:block.chain.break": { "protocol_id": 241 }, - "minecraft:block.cherry_wood_button.click_off": { - "protocol_id": 261 + "minecraft:block.chain.fall": { + "protocol_id": 242 }, - "minecraft:block.cherry_wood_button.click_on": { - "protocol_id": 262 + "minecraft:block.chain.hit": { + "protocol_id": 243 }, - "minecraft:block.cherry_wood_door.close": { - "protocol_id": 257 + "minecraft:block.chain.place": { + "protocol_id": 244 }, - "minecraft:block.cherry_wood_door.open": { - "protocol_id": 258 + "minecraft:block.chain.step": { + "protocol_id": 245 }, - "minecraft:block.cherry_wood_fence_gate.close": { - "protocol_id": 265 - }, - "minecraft:block.cherry_wood_fence_gate.open": { - "protocol_id": 266 - }, - "minecraft:block.cherry_wood_hanging_sign.break": { - "protocol_id": 253 - }, - "minecraft:block.cherry_wood_hanging_sign.fall": { - "protocol_id": 254 - }, - "minecraft:block.cherry_wood_hanging_sign.hit": { - "protocol_id": 255 - }, - "minecraft:block.cherry_wood_hanging_sign.place": { + "minecraft:block.cherry_leaves.break": { "protocol_id": 256 }, - "minecraft:block.cherry_wood_hanging_sign.step": { - "protocol_id": 252 + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 257 }, - "minecraft:block.cherry_wood_pressure_plate.click_off": { - "protocol_id": 263 + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 258 }, - "minecraft:block.cherry_wood_pressure_plate.click_on": { - "protocol_id": 264 - }, - "minecraft:block.cherry_wood_trapdoor.close": { + "minecraft:block.cherry_leaves.place": { "protocol_id": 259 }, - "minecraft:block.cherry_wood_trapdoor.open": { + "minecraft:block.cherry_leaves.step": { "protocol_id": 260 }, - "minecraft:block.chest.close": { + "minecraft:block.cherry_sapling.break": { + "protocol_id": 251 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 252 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 253 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 254 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 255 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 246 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 247 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 248 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 249 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 250 + }, + "minecraft:block.cherry_wood_button.click_off": { + "protocol_id": 270 + }, + "minecraft:block.cherry_wood_button.click_on": { + "protocol_id": 271 + }, + "minecraft:block.cherry_wood_door.close": { + "protocol_id": 266 + }, + "minecraft:block.cherry_wood_door.open": { "protocol_id": 267 }, - "minecraft:block.chest.locked": { - "protocol_id": 268 + "minecraft:block.cherry_wood_fence_gate.close": { + "protocol_id": 274 }, - "minecraft:block.chest.open": { - "protocol_id": 269 - }, - "minecraft:block.chiseled_bookshelf.break": { + "minecraft:block.cherry_wood_fence_gate.open": { "protocol_id": 275 }, - "minecraft:block.chiseled_bookshelf.fall": { + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 262 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 263 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 264 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 265 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 261 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 272 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 273 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 268 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 269 + }, + "minecraft:block.chest.close": { "protocol_id": 276 }, - "minecraft:block.chiseled_bookshelf.hit": { + "minecraft:block.chest.locked": { "protocol_id": 277 }, - "minecraft:block.chiseled_bookshelf.insert": { + "minecraft:block.chest.open": { "protocol_id": 278 }, - "minecraft:block.chiseled_bookshelf.insert.enchanted": { - "protocol_id": 279 - }, - "minecraft:block.chiseled_bookshelf.pickup": { - "protocol_id": 281 - }, - "minecraft:block.chiseled_bookshelf.pickup.enchanted": { - "protocol_id": 282 - }, - "minecraft:block.chiseled_bookshelf.place": { - "protocol_id": 283 - }, - "minecraft:block.chiseled_bookshelf.step": { - "protocol_id": 280 - }, - "minecraft:block.chorus_flower.death": { + "minecraft:block.chiseled_bookshelf.break": { "protocol_id": 284 }, - "minecraft:block.chorus_flower.grow": { + "minecraft:block.chiseled_bookshelf.fall": { "protocol_id": 285 }, - "minecraft:block.comparator.click": { + "minecraft:block.chiseled_bookshelf.hit": { + "protocol_id": 286 + }, + "minecraft:block.chiseled_bookshelf.insert": { + "protocol_id": 287 + }, + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 288 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 290 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { "protocol_id": 291 }, - "minecraft:block.composter.empty": { + "minecraft:block.chiseled_bookshelf.place": { "protocol_id": 292 }, - "minecraft:block.composter.fill": { + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 289 + }, + "minecraft:block.chorus_flower.death": { "protocol_id": 293 }, - "minecraft:block.composter.fill_success": { + "minecraft:block.chorus_flower.grow": { "protocol_id": 294 }, - "minecraft:block.composter.ready": { - "protocol_id": 295 - }, - "minecraft:block.conduit.activate": { - "protocol_id": 296 - }, - "minecraft:block.conduit.ambient": { - "protocol_id": 297 - }, - "minecraft:block.conduit.ambient.short": { - "protocol_id": 298 - }, - "minecraft:block.conduit.attack.target": { - "protocol_id": 299 - }, - "minecraft:block.conduit.deactivate": { + "minecraft:block.comparator.click": { "protocol_id": 300 }, - "minecraft:block.copper.break": { + "minecraft:block.composter.empty": { "protocol_id": 301 }, - "minecraft:block.copper.fall": { - "protocol_id": 305 - }, - "minecraft:block.copper.hit": { - "protocol_id": 304 - }, - "minecraft:block.copper.place": { - "protocol_id": 303 - }, - "minecraft:block.copper.step": { + "minecraft:block.composter.fill": { "protocol_id": 302 }, - "minecraft:block.coral_block.break": { + "minecraft:block.composter.fill_success": { + "protocol_id": 303 + }, + "minecraft:block.composter.ready": { + "protocol_id": 304 + }, + "minecraft:block.conduit.activate": { + "protocol_id": 305 + }, + "minecraft:block.conduit.ambient": { "protocol_id": 306 }, - "minecraft:block.coral_block.fall": { + "minecraft:block.conduit.ambient.short": { "protocol_id": 307 }, - "minecraft:block.coral_block.hit": { + "minecraft:block.conduit.attack.target": { "protocol_id": 308 }, - "minecraft:block.coral_block.place": { + "minecraft:block.conduit.deactivate": { "protocol_id": 309 }, - "minecraft:block.coral_block.step": { - "protocol_id": 310 + "minecraft:block.copper.break": { + "protocol_id": 317 }, - "minecraft:block.crop.break": { + "minecraft:block.copper.fall": { + "protocol_id": 321 + }, + "minecraft:block.copper.hit": { + "protocol_id": 320 + }, + "minecraft:block.copper.place": { "protocol_id": 319 }, - "minecraft:block.decorated_pot.break": { + "minecraft:block.copper.step": { + "protocol_id": 318 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 310 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 314 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 313 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 312 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 311 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 316 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 315 + }, + "minecraft:block.copper_door.close": { + "protocol_id": 322 + }, + "minecraft:block.copper_door.open": { + "protocol_id": 323 + }, + "minecraft:block.copper_grate.break": { + "protocol_id": 324 + }, + "minecraft:block.copper_grate.fall": { + "protocol_id": 328 + }, + "minecraft:block.copper_grate.hit": { + "protocol_id": 327 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 326 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 325 + }, + "minecraft:block.copper_trapdoor.close": { "protocol_id": 329 }, - "minecraft:block.decorated_pot.fall": { + "minecraft:block.copper_trapdoor.open": { "protocol_id": 330 }, - "minecraft:block.decorated_pot.hit": { + "minecraft:block.coral_block.break": { "protocol_id": 331 }, - "minecraft:block.decorated_pot.place": { - "protocol_id": 333 - }, - "minecraft:block.decorated_pot.shatter": { - "protocol_id": 334 - }, - "minecraft:block.decorated_pot.step": { + "minecraft:block.coral_block.fall": { "protocol_id": 332 }, - "minecraft:block.deepslate.break": { - "protocol_id": 340 + "minecraft:block.coral_block.hit": { + "protocol_id": 333 }, - "minecraft:block.deepslate.fall": { - "protocol_id": 341 + "minecraft:block.coral_block.place": { + "protocol_id": 334 }, - "minecraft:block.deepslate.hit": { - "protocol_id": 342 - }, - "minecraft:block.deepslate.place": { - "protocol_id": 343 - }, - "minecraft:block.deepslate.step": { - "protocol_id": 344 - }, - "minecraft:block.deepslate_bricks.break": { + "minecraft:block.coral_block.step": { "protocol_id": 335 }, - "minecraft:block.deepslate_bricks.fall": { - "protocol_id": 336 + "minecraft:block.crafter.craft": { + "protocol_id": 341 }, - "minecraft:block.deepslate_bricks.hit": { - "protocol_id": 337 + "minecraft:block.crafter.fail": { + "protocol_id": 342 }, - "minecraft:block.deepslate_bricks.place": { - "protocol_id": 338 - }, - "minecraft:block.deepslate_bricks.step": { - "protocol_id": 339 - }, - "minecraft:block.deepslate_tiles.break": { - "protocol_id": 345 - }, - "minecraft:block.deepslate_tiles.fall": { + "minecraft:block.crop.break": { "protocol_id": 346 }, - "minecraft:block.deepslate_tiles.hit": { - "protocol_id": 347 + "minecraft:block.decorated_pot.break": { + "protocol_id": 356 }, - "minecraft:block.deepslate_tiles.place": { - "protocol_id": 348 + "minecraft:block.decorated_pot.fall": { + "protocol_id": 357 }, - "minecraft:block.deepslate_tiles.step": { - "protocol_id": 349 + "minecraft:block.decorated_pot.hit": { + "protocol_id": 358 }, - "minecraft:block.dispenser.dispense": { - "protocol_id": 350 + "minecraft:block.decorated_pot.insert": { + "protocol_id": 359 }, - "minecraft:block.dispenser.fail": { - "protocol_id": 351 + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 360 }, - "minecraft:block.dispenser.launch": { - "protocol_id": 352 + "minecraft:block.decorated_pot.place": { + "protocol_id": 362 }, - "minecraft:block.dripstone_block.break": { + "minecraft:block.decorated_pot.shatter": { + "protocol_id": 363 + }, + "minecraft:block.decorated_pot.step": { + "protocol_id": 361 + }, + "minecraft:block.deepslate.break": { "protocol_id": 369 }, - "minecraft:block.dripstone_block.fall": { - "protocol_id": 373 - }, - "minecraft:block.dripstone_block.hit": { - "protocol_id": 372 - }, - "minecraft:block.dripstone_block.place": { - "protocol_id": 371 - }, - "minecraft:block.dripstone_block.step": { + "minecraft:block.deepslate.fall": { "protocol_id": 370 }, - "minecraft:block.enchantment_table.use": { - "protocol_id": 406 + "minecraft:block.deepslate.hit": { + "protocol_id": 371 }, - "minecraft:block.end_gateway.spawn": { - "protocol_id": 429 + "minecraft:block.deepslate.place": { + "protocol_id": 372 }, - "minecraft:block.end_portal.spawn": { - "protocol_id": 431 + "minecraft:block.deepslate.step": { + "protocol_id": 373 }, - "minecraft:block.end_portal_frame.fill": { - "protocol_id": 430 + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 364 }, - "minecraft:block.ender_chest.close": { - "protocol_id": 407 + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 365 }, - "minecraft:block.ender_chest.open": { - "protocol_id": 408 + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 366 }, - "minecraft:block.fence_gate.close": { - "protocol_id": 443 + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 367 }, - "minecraft:block.fence_gate.open": { - "protocol_id": 444 + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 368 }, - "minecraft:block.fire.ambient": { - "protocol_id": 454 - }, - "minecraft:block.fire.extinguish": { - "protocol_id": 455 - }, - "minecraft:block.flowering_azalea.break": { - "protocol_id": 461 - }, - "minecraft:block.flowering_azalea.fall": { - "protocol_id": 462 - }, - "minecraft:block.flowering_azalea.hit": { - "protocol_id": 463 - }, - "minecraft:block.flowering_azalea.place": { - "protocol_id": 464 - }, - "minecraft:block.flowering_azalea.step": { - "protocol_id": 465 - }, - "minecraft:block.froglight.break": { - "protocol_id": 487 - }, - "minecraft:block.froglight.fall": { - "protocol_id": 488 - }, - "minecraft:block.froglight.hit": { - "protocol_id": 489 - }, - "minecraft:block.froglight.place": { - "protocol_id": 490 - }, - "minecraft:block.froglight.step": { - "protocol_id": 491 - }, - "minecraft:block.frogspawn.break": { - "protocol_id": 493 - }, - "minecraft:block.frogspawn.fall": { - "protocol_id": 494 - }, - "minecraft:block.frogspawn.hatch": { - "protocol_id": 495 - }, - "minecraft:block.frogspawn.hit": { - "protocol_id": 496 - }, - "minecraft:block.frogspawn.place": { - "protocol_id": 497 - }, - "minecraft:block.frogspawn.step": { - "protocol_id": 492 - }, - "minecraft:block.fungus.break": { - "protocol_id": 874 - }, - "minecraft:block.fungus.fall": { - "protocol_id": 878 - }, - "minecraft:block.fungus.hit": { - "protocol_id": 877 - }, - "minecraft:block.fungus.place": { - "protocol_id": 876 - }, - "minecraft:block.fungus.step": { - "protocol_id": 875 - }, - "minecraft:block.furnace.fire_crackle": { - "protocol_id": 511 - }, - "minecraft:block.gilded_blackstone.break": { - "protocol_id": 529 - }, - "minecraft:block.gilded_blackstone.fall": { - "protocol_id": 530 - }, - "minecraft:block.gilded_blackstone.hit": { - "protocol_id": 531 - }, - "minecraft:block.gilded_blackstone.place": { - "protocol_id": 532 - }, - "minecraft:block.gilded_blackstone.step": { - "protocol_id": 533 - }, - "minecraft:block.glass.break": { - "protocol_id": 534 - }, - "minecraft:block.glass.fall": { - "protocol_id": 535 - }, - "minecraft:block.glass.hit": { - "protocol_id": 536 - }, - "minecraft:block.glass.place": { - "protocol_id": 537 - }, - "minecraft:block.glass.step": { - "protocol_id": 538 - }, - "minecraft:block.grass.break": { - "protocol_id": 569 - }, - "minecraft:block.grass.fall": { - "protocol_id": 570 - }, - "minecraft:block.grass.hit": { - "protocol_id": 571 - }, - "minecraft:block.grass.place": { - "protocol_id": 572 - }, - "minecraft:block.grass.step": { - "protocol_id": 573 - }, - "minecraft:block.gravel.break": { - "protocol_id": 574 - }, - "minecraft:block.gravel.fall": { - "protocol_id": 575 - }, - "minecraft:block.gravel.hit": { - "protocol_id": 576 - }, - "minecraft:block.gravel.place": { - "protocol_id": 577 - }, - "minecraft:block.gravel.step": { - "protocol_id": 578 - }, - "minecraft:block.grindstone.use": { - "protocol_id": 579 - }, - "minecraft:block.growing_plant.crop": { - "protocol_id": 580 - }, - "minecraft:block.hanging_roots.break": { - "protocol_id": 589 - }, - "minecraft:block.hanging_roots.fall": { - "protocol_id": 590 - }, - "minecraft:block.hanging_roots.hit": { - "protocol_id": 591 - }, - "minecraft:block.hanging_roots.place": { - "protocol_id": 592 - }, - "minecraft:block.hanging_roots.step": { - "protocol_id": 593 - }, - "minecraft:block.hanging_sign.break": { - "protocol_id": 595 - }, - "minecraft:block.hanging_sign.fall": { - "protocol_id": 596 - }, - "minecraft:block.hanging_sign.hit": { - "protocol_id": 597 - }, - "minecraft:block.hanging_sign.place": { - "protocol_id": 598 - }, - "minecraft:block.hanging_sign.step": { - "protocol_id": 594 - }, - "minecraft:block.honey_block.break": { - "protocol_id": 618 - }, - "minecraft:block.honey_block.fall": { - "protocol_id": 619 - }, - "minecraft:block.honey_block.hit": { - "protocol_id": 620 - }, - "minecraft:block.honey_block.place": { - "protocol_id": 621 - }, - "minecraft:block.honey_block.slide": { - "protocol_id": 622 - }, - "minecraft:block.honey_block.step": { - "protocol_id": 623 - }, - "minecraft:block.iron_door.close": { - "protocol_id": 666 - }, - "minecraft:block.iron_door.open": { - "protocol_id": 667 - }, - "minecraft:block.iron_trapdoor.close": { - "protocol_id": 674 - }, - "minecraft:block.iron_trapdoor.open": { - "protocol_id": 675 - }, - "minecraft:block.ladder.break": { - "protocol_id": 683 - }, - "minecraft:block.ladder.fall": { - "protocol_id": 684 - }, - "minecraft:block.ladder.hit": { - "protocol_id": 685 - }, - "minecraft:block.ladder.place": { - "protocol_id": 686 - }, - "minecraft:block.ladder.step": { - "protocol_id": 687 - }, - "minecraft:block.lantern.break": { - "protocol_id": 688 - }, - "minecraft:block.lantern.fall": { - "protocol_id": 689 - }, - "minecraft:block.lantern.hit": { - "protocol_id": 690 - }, - "minecraft:block.lantern.place": { - "protocol_id": 691 - }, - "minecraft:block.lantern.step": { - "protocol_id": 692 - }, - "minecraft:block.large_amethyst_bud.break": { - "protocol_id": 693 - }, - "minecraft:block.large_amethyst_bud.place": { - "protocol_id": 694 - }, - "minecraft:block.lava.ambient": { - "protocol_id": 695 - }, - "minecraft:block.lava.extinguish": { - "protocol_id": 696 - }, - "minecraft:block.lava.pop": { - "protocol_id": 697 - }, - "minecraft:block.lever.click": { - "protocol_id": 700 - }, - "minecraft:block.lily_pad.place": { - "protocol_id": 1368 - }, - "minecraft:block.lodestone.break": { - "protocol_id": 714 - }, - "minecraft:block.lodestone.fall": { - "protocol_id": 718 - }, - "minecraft:block.lodestone.hit": { - "protocol_id": 717 - }, - "minecraft:block.lodestone.place": { - "protocol_id": 716 - }, - "minecraft:block.lodestone.step": { - "protocol_id": 715 - }, - "minecraft:block.mangrove_roots.break": { - "protocol_id": 726 - }, - "minecraft:block.mangrove_roots.fall": { - "protocol_id": 727 - }, - "minecraft:block.mangrove_roots.hit": { - "protocol_id": 728 - }, - "minecraft:block.mangrove_roots.place": { - "protocol_id": 729 - }, - "minecraft:block.mangrove_roots.step": { - "protocol_id": 730 - }, - "minecraft:block.medium_amethyst_bud.break": { - "protocol_id": 731 - }, - "minecraft:block.medium_amethyst_bud.place": { - "protocol_id": 732 - }, - "minecraft:block.metal.break": { - "protocol_id": 733 - }, - "minecraft:block.metal.fall": { - "protocol_id": 734 - }, - "minecraft:block.metal.hit": { - "protocol_id": 735 - }, - "minecraft:block.metal.place": { - "protocol_id": 736 - }, - "minecraft:block.metal.step": { - "protocol_id": 739 - }, - "minecraft:block.metal_pressure_plate.click_off": { - "protocol_id": 737 - }, - "minecraft:block.metal_pressure_plate.click_on": { - "protocol_id": 738 - }, - "minecraft:block.moss.break": { - "protocol_id": 758 - }, - "minecraft:block.moss.fall": { - "protocol_id": 759 - }, - "minecraft:block.moss.hit": { - "protocol_id": 760 - }, - "minecraft:block.moss.place": { - "protocol_id": 761 - }, - "minecraft:block.moss.step": { - "protocol_id": 762 - }, - "minecraft:block.moss_carpet.break": { - "protocol_id": 748 - }, - "minecraft:block.moss_carpet.fall": { - "protocol_id": 749 - }, - "minecraft:block.moss_carpet.hit": { - "protocol_id": 750 - }, - "minecraft:block.moss_carpet.place": { - "protocol_id": 751 - }, - "minecraft:block.moss_carpet.step": { - "protocol_id": 752 - }, - "minecraft:block.mud.break": { - "protocol_id": 763 - }, - "minecraft:block.mud.fall": { - "protocol_id": 764 - }, - "minecraft:block.mud.hit": { - "protocol_id": 765 - }, - "minecraft:block.mud.place": { - "protocol_id": 766 - }, - "minecraft:block.mud.step": { - "protocol_id": 767 - }, - "minecraft:block.mud_bricks.break": { - "protocol_id": 768 - }, - "minecraft:block.mud_bricks.fall": { - "protocol_id": 769 - }, - "minecraft:block.mud_bricks.hit": { - "protocol_id": 770 - }, - "minecraft:block.mud_bricks.place": { - "protocol_id": 771 - }, - "minecraft:block.mud_bricks.step": { - "protocol_id": 772 - }, - "minecraft:block.muddy_mangrove_roots.break": { - "protocol_id": 773 - }, - "minecraft:block.muddy_mangrove_roots.fall": { - "protocol_id": 774 - }, - "minecraft:block.muddy_mangrove_roots.hit": { - "protocol_id": 775 - }, - "minecraft:block.muddy_mangrove_roots.place": { - "protocol_id": 776 - }, - "minecraft:block.muddy_mangrove_roots.step": { - "protocol_id": 777 - }, - "minecraft:block.nether_bricks.break": { - "protocol_id": 831 - }, - "minecraft:block.nether_bricks.fall": { - "protocol_id": 835 - }, - "minecraft:block.nether_bricks.hit": { - "protocol_id": 834 - }, - "minecraft:block.nether_bricks.place": { - "protocol_id": 833 - }, - "minecraft:block.nether_bricks.step": { - "protocol_id": 832 - }, - "minecraft:block.nether_gold_ore.break": { - "protocol_id": 1070 - }, - "minecraft:block.nether_gold_ore.fall": { - "protocol_id": 1071 - }, - "minecraft:block.nether_gold_ore.hit": { - "protocol_id": 1072 - }, - "minecraft:block.nether_gold_ore.place": { - "protocol_id": 1073 - }, - "minecraft:block.nether_gold_ore.step": { - "protocol_id": 1074 - }, - "minecraft:block.nether_ore.break": { - "protocol_id": 1075 - }, - "minecraft:block.nether_ore.fall": { - "protocol_id": 1076 - }, - "minecraft:block.nether_ore.hit": { - "protocol_id": 1077 - }, - "minecraft:block.nether_ore.place": { - "protocol_id": 1078 - }, - "minecraft:block.nether_ore.step": { - "protocol_id": 1079 - }, - "minecraft:block.nether_sprouts.break": { - "protocol_id": 869 - }, - "minecraft:block.nether_sprouts.fall": { - "protocol_id": 873 - }, - "minecraft:block.nether_sprouts.hit": { - "protocol_id": 872 - }, - "minecraft:block.nether_sprouts.place": { - "protocol_id": 871 - }, - "minecraft:block.nether_sprouts.step": { - "protocol_id": 870 - }, - "minecraft:block.nether_wart.break": { - "protocol_id": 836 - }, - "minecraft:block.nether_wood.break": { - "protocol_id": 838 - }, - "minecraft:block.nether_wood.fall": { - "protocol_id": 839 - }, - "minecraft:block.nether_wood.hit": { - "protocol_id": 840 - }, - "minecraft:block.nether_wood.place": { - "protocol_id": 841 - }, - "minecraft:block.nether_wood.step": { - "protocol_id": 842 - }, - "minecraft:block.nether_wood_button.click_off": { - "protocol_id": 847 - }, - "minecraft:block.nether_wood_button.click_on": { - "protocol_id": 848 - }, - "minecraft:block.nether_wood_door.close": { - "protocol_id": 843 - }, - "minecraft:block.nether_wood_door.open": { - "protocol_id": 844 - }, - "minecraft:block.nether_wood_fence_gate.close": { - "protocol_id": 851 - }, - "minecraft:block.nether_wood_fence_gate.open": { - "protocol_id": 852 - }, - "minecraft:block.nether_wood_hanging_sign.break": { - "protocol_id": 600 - }, - "minecraft:block.nether_wood_hanging_sign.fall": { - "protocol_id": 601 - }, - "minecraft:block.nether_wood_hanging_sign.hit": { - "protocol_id": 602 - }, - "minecraft:block.nether_wood_hanging_sign.place": { - "protocol_id": 603 - }, - "minecraft:block.nether_wood_hanging_sign.step": { - "protocol_id": 599 - }, - "minecraft:block.nether_wood_pressure_plate.click_off": { - "protocol_id": 849 - }, - "minecraft:block.nether_wood_pressure_plate.click_on": { - "protocol_id": 850 - }, - "minecraft:block.nether_wood_trapdoor.close": { - "protocol_id": 845 - }, - "minecraft:block.nether_wood_trapdoor.open": { - "protocol_id": 846 - }, - "minecraft:block.netherite_block.break": { - "protocol_id": 889 - }, - "minecraft:block.netherite_block.fall": { - "protocol_id": 893 - }, - "minecraft:block.netherite_block.hit": { - "protocol_id": 892 - }, - "minecraft:block.netherite_block.place": { - "protocol_id": 891 - }, - "minecraft:block.netherite_block.step": { - "protocol_id": 890 - }, - "minecraft:block.netherrack.break": { - "protocol_id": 894 - }, - "minecraft:block.netherrack.fall": { - "protocol_id": 898 - }, - "minecraft:block.netherrack.hit": { - "protocol_id": 897 - }, - "minecraft:block.netherrack.place": { - "protocol_id": 896 - }, - "minecraft:block.netherrack.step": { - "protocol_id": 895 - }, - "minecraft:block.note_block.banjo": { - "protocol_id": 914 - }, - "minecraft:block.note_block.basedrum": { - "protocol_id": 899 - }, - "minecraft:block.note_block.bass": { - "protocol_id": 900 - }, - "minecraft:block.note_block.bell": { - "protocol_id": 901 - }, - "minecraft:block.note_block.bit": { - "protocol_id": 913 - }, - "minecraft:block.note_block.chime": { - "protocol_id": 902 - }, - "minecraft:block.note_block.cow_bell": { - "protocol_id": 911 - }, - "minecraft:block.note_block.didgeridoo": { - "protocol_id": 912 - }, - "minecraft:block.note_block.flute": { - "protocol_id": 903 - }, - "minecraft:block.note_block.guitar": { - "protocol_id": 904 - }, - "minecraft:block.note_block.harp": { - "protocol_id": 905 - }, - "minecraft:block.note_block.hat": { - "protocol_id": 906 - }, - "minecraft:block.note_block.imitate.creeper": { - "protocol_id": 917 - }, - "minecraft:block.note_block.imitate.ender_dragon": { - "protocol_id": 918 - }, - "minecraft:block.note_block.imitate.piglin": { - "protocol_id": 920 - }, - "minecraft:block.note_block.imitate.skeleton": { - "protocol_id": 916 - }, - "minecraft:block.note_block.imitate.wither_skeleton": { - "protocol_id": 919 - }, - "minecraft:block.note_block.imitate.zombie": { - "protocol_id": 915 - }, - "minecraft:block.note_block.iron_xylophone": { - "protocol_id": 910 - }, - "minecraft:block.note_block.pling": { - "protocol_id": 907 - }, - "minecraft:block.note_block.snare": { - "protocol_id": 908 - }, - "minecraft:block.note_block.xylophone": { - "protocol_id": 909 - }, - "minecraft:block.nylium.break": { - "protocol_id": 864 - }, - "minecraft:block.nylium.fall": { - "protocol_id": 868 - }, - "minecraft:block.nylium.hit": { - "protocol_id": 867 - }, - "minecraft:block.nylium.place": { - "protocol_id": 866 - }, - "minecraft:block.nylium.step": { - "protocol_id": 865 - }, - "minecraft:block.packed_mud.break": { - "protocol_id": 854 - }, - "minecraft:block.packed_mud.fall": { - "protocol_id": 855 - }, - "minecraft:block.packed_mud.hit": { - "protocol_id": 856 - }, - "minecraft:block.packed_mud.place": { - "protocol_id": 857 - }, - "minecraft:block.packed_mud.step": { - "protocol_id": 858 - }, - "minecraft:block.pink_petals.break": { - "protocol_id": 753 - }, - "minecraft:block.pink_petals.fall": { - "protocol_id": 754 - }, - "minecraft:block.pink_petals.hit": { - "protocol_id": 755 - }, - "minecraft:block.pink_petals.place": { - "protocol_id": 756 - }, - "minecraft:block.pink_petals.step": { - "protocol_id": 757 - }, - "minecraft:block.piston.contract": { - "protocol_id": 1007 - }, - "minecraft:block.piston.extend": { - "protocol_id": 1008 - }, - "minecraft:block.pointed_dripstone.break": { + "minecraft:block.deepslate_tiles.break": { "protocol_id": 374 }, - "minecraft:block.pointed_dripstone.drip_lava": { - "protocol_id": 380 - }, - "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { - "protocol_id": 382 - }, - "minecraft:block.pointed_dripstone.drip_water": { - "protocol_id": 381 - }, - "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { - "protocol_id": 383 - }, - "minecraft:block.pointed_dripstone.fall": { - "protocol_id": 378 - }, - "minecraft:block.pointed_dripstone.hit": { - "protocol_id": 377 - }, - "minecraft:block.pointed_dripstone.land": { - "protocol_id": 379 - }, - "minecraft:block.pointed_dripstone.place": { - "protocol_id": 376 - }, - "minecraft:block.pointed_dripstone.step": { + "minecraft:block.deepslate_tiles.fall": { "protocol_id": 375 }, - "minecraft:block.polished_deepslate.break": { - "protocol_id": 1035 + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 376 }, - "minecraft:block.polished_deepslate.fall": { - "protocol_id": 1036 + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 377 }, - "minecraft:block.polished_deepslate.hit": { - "protocol_id": 1037 + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 378 }, - "minecraft:block.polished_deepslate.place": { - "protocol_id": 1038 + "minecraft:block.dispenser.dispense": { + "protocol_id": 379 }, - "minecraft:block.polished_deepslate.step": { - "protocol_id": 1039 + "minecraft:block.dispenser.fail": { + "protocol_id": 380 }, - "minecraft:block.portal.ambient": { - "protocol_id": 1040 + "minecraft:block.dispenser.launch": { + "protocol_id": 381 }, - "minecraft:block.portal.travel": { - "protocol_id": 1041 + "minecraft:block.dripstone_block.break": { + "protocol_id": 398 }, - "minecraft:block.portal.trigger": { - "protocol_id": 1042 + "minecraft:block.dripstone_block.fall": { + "protocol_id": 402 }, - "minecraft:block.powder_snow.break": { - "protocol_id": 1043 + "minecraft:block.dripstone_block.hit": { + "protocol_id": 401 }, - "minecraft:block.powder_snow.fall": { - "protocol_id": 1044 + "minecraft:block.dripstone_block.place": { + "protocol_id": 400 }, - "minecraft:block.powder_snow.hit": { - "protocol_id": 1045 + "minecraft:block.dripstone_block.step": { + "protocol_id": 399 }, - "minecraft:block.powder_snow.place": { - "protocol_id": 1046 + "minecraft:block.enchantment_table.use": { + "protocol_id": 435 }, - "minecraft:block.powder_snow.step": { - "protocol_id": 1047 + "minecraft:block.end_gateway.spawn": { + "protocol_id": 458 }, - "minecraft:block.pumpkin.carve": { - "protocol_id": 1055 + "minecraft:block.end_portal.spawn": { + "protocol_id": 460 }, - "minecraft:block.redstone_torch.burnout": { - "protocol_id": 1080 + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 459 }, - "minecraft:block.respawn_anchor.ambient": { - "protocol_id": 1081 + "minecraft:block.ender_chest.close": { + "protocol_id": 436 }, - "minecraft:block.respawn_anchor.charge": { - "protocol_id": 1082 + "minecraft:block.ender_chest.open": { + "protocol_id": 437 }, - "minecraft:block.respawn_anchor.deplete": { - "protocol_id": 1083 + "minecraft:block.fence_gate.close": { + "protocol_id": 472 }, - "minecraft:block.respawn_anchor.set_spawn": { - "protocol_id": 1084 + "minecraft:block.fence_gate.open": { + "protocol_id": 473 }, - "minecraft:block.rooted_dirt.break": { - "protocol_id": 1085 - }, - "minecraft:block.rooted_dirt.fall": { - "protocol_id": 1086 - }, - "minecraft:block.rooted_dirt.hit": { - "protocol_id": 1087 - }, - "minecraft:block.rooted_dirt.place": { - "protocol_id": 1088 - }, - "minecraft:block.rooted_dirt.step": { - "protocol_id": 1089 - }, - "minecraft:block.roots.break": { - "protocol_id": 506 - }, - "minecraft:block.roots.fall": { - "protocol_id": 510 - }, - "minecraft:block.roots.hit": { - "protocol_id": 509 - }, - "minecraft:block.roots.place": { - "protocol_id": 508 - }, - "minecraft:block.roots.step": { - "protocol_id": 507 - }, - "minecraft:block.sand.break": { - "protocol_id": 1094 - }, - "minecraft:block.sand.fall": { - "protocol_id": 1095 - }, - "minecraft:block.sand.hit": { - "protocol_id": 1096 - }, - "minecraft:block.sand.place": { - "protocol_id": 1097 - }, - "minecraft:block.sand.step": { - "protocol_id": 1098 - }, - "minecraft:block.scaffolding.break": { - "protocol_id": 1099 - }, - "minecraft:block.scaffolding.fall": { - "protocol_id": 1100 - }, - "minecraft:block.scaffolding.hit": { - "protocol_id": 1101 - }, - "minecraft:block.scaffolding.place": { - "protocol_id": 1102 - }, - "minecraft:block.scaffolding.step": { - "protocol_id": 1103 - }, - "minecraft:block.sculk.break": { - "protocol_id": 1106 - }, - "minecraft:block.sculk.charge": { - "protocol_id": 1105 - }, - "minecraft:block.sculk.fall": { - "protocol_id": 1107 - }, - "minecraft:block.sculk.hit": { - "protocol_id": 1108 - }, - "minecraft:block.sculk.place": { - "protocol_id": 1109 - }, - "minecraft:block.sculk.spread": { - "protocol_id": 1104 - }, - "minecraft:block.sculk.step": { - "protocol_id": 1110 - }, - "minecraft:block.sculk_catalyst.bloom": { - "protocol_id": 1111 - }, - "minecraft:block.sculk_catalyst.break": { - "protocol_id": 1112 - }, - "minecraft:block.sculk_catalyst.fall": { - "protocol_id": 1113 - }, - "minecraft:block.sculk_catalyst.hit": { - "protocol_id": 1114 - }, - "minecraft:block.sculk_catalyst.place": { - "protocol_id": 1115 - }, - "minecraft:block.sculk_catalyst.step": { - "protocol_id": 1116 - }, - "minecraft:block.sculk_sensor.break": { - "protocol_id": 1119 - }, - "minecraft:block.sculk_sensor.clicking": { - "protocol_id": 1117 - }, - "minecraft:block.sculk_sensor.clicking_stop": { - "protocol_id": 1118 - }, - "minecraft:block.sculk_sensor.fall": { - "protocol_id": 1120 - }, - "minecraft:block.sculk_sensor.hit": { - "protocol_id": 1121 - }, - "minecraft:block.sculk_sensor.place": { - "protocol_id": 1122 - }, - "minecraft:block.sculk_sensor.step": { - "protocol_id": 1123 - }, - "minecraft:block.sculk_shrieker.break": { - "protocol_id": 1124 - }, - "minecraft:block.sculk_shrieker.fall": { - "protocol_id": 1125 - }, - "minecraft:block.sculk_shrieker.hit": { - "protocol_id": 1126 - }, - "minecraft:block.sculk_shrieker.place": { - "protocol_id": 1127 - }, - "minecraft:block.sculk_shrieker.shriek": { - "protocol_id": 1128 - }, - "minecraft:block.sculk_shrieker.step": { - "protocol_id": 1129 - }, - "minecraft:block.sculk_vein.break": { - "protocol_id": 1130 - }, - "minecraft:block.sculk_vein.fall": { - "protocol_id": 1131 - }, - "minecraft:block.sculk_vein.hit": { - "protocol_id": 1132 - }, - "minecraft:block.sculk_vein.place": { - "protocol_id": 1133 - }, - "minecraft:block.sculk_vein.step": { - "protocol_id": 1134 - }, - "minecraft:block.shroomlight.break": { - "protocol_id": 1142 - }, - "minecraft:block.shroomlight.fall": { - "protocol_id": 1146 - }, - "minecraft:block.shroomlight.hit": { - "protocol_id": 1145 - }, - "minecraft:block.shroomlight.place": { - "protocol_id": 1144 - }, - "minecraft:block.shroomlight.step": { - "protocol_id": 1143 - }, - "minecraft:block.shulker_box.close": { - "protocol_id": 1149 - }, - "minecraft:block.shulker_box.open": { - "protocol_id": 1150 - }, - "minecraft:block.sign.waxed_interact_fail": { - "protocol_id": 1399 - }, - "minecraft:block.slime_block.break": { - "protocol_id": 1183 - }, - "minecraft:block.slime_block.fall": { - "protocol_id": 1184 - }, - "minecraft:block.slime_block.hit": { - "protocol_id": 1185 - }, - "minecraft:block.slime_block.place": { - "protocol_id": 1186 - }, - "minecraft:block.slime_block.step": { - "protocol_id": 1187 - }, - "minecraft:block.small_amethyst_bud.break": { - "protocol_id": 1188 - }, - "minecraft:block.small_amethyst_bud.place": { - "protocol_id": 1189 - }, - "minecraft:block.small_dripleaf.break": { - "protocol_id": 1190 - }, - "minecraft:block.small_dripleaf.fall": { - "protocol_id": 1191 - }, - "minecraft:block.small_dripleaf.hit": { - "protocol_id": 1192 - }, - "minecraft:block.small_dripleaf.place": { - "protocol_id": 1193 - }, - "minecraft:block.small_dripleaf.step": { - "protocol_id": 1194 - }, - "minecraft:block.smithing_table.use": { - "protocol_id": 1224 - }, - "minecraft:block.smoker.smoke": { - "protocol_id": 1225 - }, - "minecraft:block.sniffer_egg.crack": { - "protocol_id": 1239 - }, - "minecraft:block.sniffer_egg.hatch": { - "protocol_id": 1240 - }, - "minecraft:block.sniffer_egg.plop": { - "protocol_id": 1238 - }, - "minecraft:block.snow.break": { - "protocol_id": 1242 - }, - "minecraft:block.snow.fall": { - "protocol_id": 1243 - }, - "minecraft:block.snow.hit": { - "protocol_id": 1249 - }, - "minecraft:block.snow.place": { - "protocol_id": 1250 - }, - "minecraft:block.snow.step": { - "protocol_id": 1251 - }, - "minecraft:block.soul_sand.break": { - "protocol_id": 1195 - }, - "minecraft:block.soul_sand.fall": { - "protocol_id": 1199 - }, - "minecraft:block.soul_sand.hit": { - "protocol_id": 1198 - }, - "minecraft:block.soul_sand.place": { - "protocol_id": 1197 - }, - "minecraft:block.soul_sand.step": { - "protocol_id": 1196 - }, - "minecraft:block.soul_soil.break": { - "protocol_id": 1200 - }, - "minecraft:block.soul_soil.fall": { - "protocol_id": 1204 - }, - "minecraft:block.soul_soil.hit": { - "protocol_id": 1203 - }, - "minecraft:block.soul_soil.place": { - "protocol_id": 1202 - }, - "minecraft:block.soul_soil.step": { - "protocol_id": 1201 - }, - "minecraft:block.sponge.absorb": { - "protocol_id": 1263 - }, - "minecraft:block.sponge.break": { - "protocol_id": 1258 - }, - "minecraft:block.sponge.fall": { - "protocol_id": 1259 - }, - "minecraft:block.sponge.hit": { - "protocol_id": 1260 - }, - "minecraft:block.sponge.place": { - "protocol_id": 1261 - }, - "minecraft:block.sponge.step": { - "protocol_id": 1262 - }, - "minecraft:block.spore_blossom.break": { - "protocol_id": 1206 - }, - "minecraft:block.spore_blossom.fall": { - "protocol_id": 1207 - }, - "minecraft:block.spore_blossom.hit": { - "protocol_id": 1208 - }, - "minecraft:block.spore_blossom.place": { - "protocol_id": 1209 - }, - "minecraft:block.spore_blossom.step": { - "protocol_id": 1210 - }, - "minecraft:block.stem.break": { - "protocol_id": 859 - }, - "minecraft:block.stem.fall": { - "protocol_id": 863 - }, - "minecraft:block.stem.hit": { - "protocol_id": 862 - }, - "minecraft:block.stem.place": { - "protocol_id": 861 - }, - "minecraft:block.stem.step": { - "protocol_id": 860 - }, - "minecraft:block.stone.break": { - "protocol_id": 1270 - }, - "minecraft:block.stone.fall": { - "protocol_id": 1273 - }, - "minecraft:block.stone.hit": { - "protocol_id": 1274 - }, - "minecraft:block.stone.place": { - "protocol_id": 1275 - }, - "minecraft:block.stone.step": { - "protocol_id": 1278 - }, - "minecraft:block.stone_button.click_off": { - "protocol_id": 1271 - }, - "minecraft:block.stone_button.click_on": { - "protocol_id": 1272 - }, - "minecraft:block.stone_pressure_plate.click_off": { - "protocol_id": 1276 - }, - "minecraft:block.stone_pressure_plate.click_on": { - "protocol_id": 1277 - }, - "minecraft:block.suspicious_gravel.break": { - "protocol_id": 482 - }, - "minecraft:block.suspicious_gravel.fall": { - "protocol_id": 486 - }, - "minecraft:block.suspicious_gravel.hit": { - "protocol_id": 485 - }, - "minecraft:block.suspicious_gravel.place": { - "protocol_id": 484 - }, - "minecraft:block.suspicious_gravel.step": { + "minecraft:block.fire.ambient": { "protocol_id": 483 }, - "minecraft:block.suspicious_sand.break": { - "protocol_id": 477 + "minecraft:block.fire.extinguish": { + "protocol_id": 484 }, - "minecraft:block.suspicious_sand.fall": { - "protocol_id": 481 + "minecraft:block.flowering_azalea.break": { + "protocol_id": 490 }, - "minecraft:block.suspicious_sand.hit": { - "protocol_id": 480 + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 491 }, - "minecraft:block.suspicious_sand.place": { - "protocol_id": 479 + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 492 }, - "minecraft:block.suspicious_sand.step": { - "protocol_id": 478 + "minecraft:block.flowering_azalea.place": { + "protocol_id": 493 }, - "minecraft:block.sweet_berry_bush.break": { - "protocol_id": 1283 + "minecraft:block.flowering_azalea.step": { + "protocol_id": 494 }, - "minecraft:block.sweet_berry_bush.pick_berries": { - "protocol_id": 1285 + "minecraft:block.froglight.break": { + "protocol_id": 516 }, - "minecraft:block.sweet_berry_bush.place": { - "protocol_id": 1284 + "minecraft:block.froglight.fall": { + "protocol_id": 517 }, - "minecraft:block.tripwire.attach": { - "protocol_id": 1301 + "minecraft:block.froglight.hit": { + "protocol_id": 518 }, - "minecraft:block.tripwire.click_off": { - "protocol_id": 1302 + "minecraft:block.froglight.place": { + "protocol_id": 519 }, - "minecraft:block.tripwire.click_on": { - "protocol_id": 1303 + "minecraft:block.froglight.step": { + "protocol_id": 520 }, - "minecraft:block.tripwire.detach": { - "protocol_id": 1304 + "minecraft:block.frogspawn.break": { + "protocol_id": 522 }, - "minecraft:block.tuff.break": { - "protocol_id": 1309 + "minecraft:block.frogspawn.fall": { + "protocol_id": 523 }, - "minecraft:block.tuff.fall": { - "protocol_id": 1313 + "minecraft:block.frogspawn.hatch": { + "protocol_id": 524 }, - "minecraft:block.tuff.hit": { - "protocol_id": 1312 + "minecraft:block.frogspawn.hit": { + "protocol_id": 525 }, - "minecraft:block.tuff.place": { - "protocol_id": 1311 + "minecraft:block.frogspawn.place": { + "protocol_id": 526 }, - "minecraft:block.tuff.step": { - "protocol_id": 1310 + "minecraft:block.frogspawn.step": { + "protocol_id": 521 }, - "minecraft:block.vine.break": { - "protocol_id": 1363 + "minecraft:block.fungus.break": { + "protocol_id": 914 }, - "minecraft:block.vine.fall": { - "protocol_id": 1364 + "minecraft:block.fungus.fall": { + "protocol_id": 918 }, - "minecraft:block.vine.hit": { - "protocol_id": 1365 + "minecraft:block.fungus.hit": { + "protocol_id": 917 }, - "minecraft:block.vine.place": { - "protocol_id": 1366 + "minecraft:block.fungus.place": { + "protocol_id": 916 }, - "minecraft:block.vine.step": { - "protocol_id": 1367 + "minecraft:block.fungus.step": { + "protocol_id": 915 }, - "minecraft:block.wart_block.break": { - "protocol_id": 884 + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 540 }, - "minecraft:block.wart_block.fall": { - "protocol_id": 888 + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 558 }, - "minecraft:block.wart_block.hit": { - "protocol_id": 887 + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 559 }, - "minecraft:block.wart_block.place": { - "protocol_id": 886 + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 560 }, - "minecraft:block.wart_block.step": { - "protocol_id": 885 + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 561 }, - "minecraft:block.water.ambient": { - "protocol_id": 1400 + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 562 }, - "minecraft:block.weeping_vines.break": { - "protocol_id": 879 + "minecraft:block.glass.break": { + "protocol_id": 563 }, - "minecraft:block.weeping_vines.fall": { - "protocol_id": 883 + "minecraft:block.glass.fall": { + "protocol_id": 564 }, - "minecraft:block.weeping_vines.hit": { - "protocol_id": 882 + "minecraft:block.glass.hit": { + "protocol_id": 565 }, - "minecraft:block.weeping_vines.place": { - "protocol_id": 881 + "minecraft:block.glass.place": { + "protocol_id": 566 }, - "minecraft:block.weeping_vines.step": { - "protocol_id": 880 + "minecraft:block.glass.step": { + "protocol_id": 567 }, - "minecraft:block.wet_grass.break": { - "protocol_id": 1403 + "minecraft:block.grass.break": { + "protocol_id": 598 }, - "minecraft:block.wet_grass.fall": { - "protocol_id": 1404 + "minecraft:block.grass.fall": { + "protocol_id": 599 }, - "minecraft:block.wet_grass.hit": { - "protocol_id": 1405 + "minecraft:block.grass.hit": { + "protocol_id": 600 }, - "minecraft:block.wet_grass.place": { - "protocol_id": 1406 + "minecraft:block.grass.place": { + "protocol_id": 601 }, - "minecraft:block.wet_grass.step": { - "protocol_id": 1407 + "minecraft:block.grass.step": { + "protocol_id": 602 }, - "minecraft:block.wet_sponge.break": { - "protocol_id": 1408 + "minecraft:block.gravel.break": { + "protocol_id": 603 }, - "minecraft:block.wet_sponge.fall": { - "protocol_id": 1409 + "minecraft:block.gravel.fall": { + "protocol_id": 604 }, - "minecraft:block.wet_sponge.hit": { - "protocol_id": 1410 + "minecraft:block.gravel.hit": { + "protocol_id": 605 }, - "minecraft:block.wet_sponge.place": { - "protocol_id": 1411 + "minecraft:block.gravel.place": { + "protocol_id": 606 }, - "minecraft:block.wet_sponge.step": { - "protocol_id": 1412 + "minecraft:block.gravel.step": { + "protocol_id": 607 }, - "minecraft:block.wood.break": { - "protocol_id": 1446 + "minecraft:block.grindstone.use": { + "protocol_id": 608 }, - "minecraft:block.wood.fall": { - "protocol_id": 1447 + "minecraft:block.growing_plant.crop": { + "protocol_id": 609 }, - "minecraft:block.wood.hit": { - "protocol_id": 1448 + "minecraft:block.hanging_roots.break": { + "protocol_id": 618 }, - "minecraft:block.wood.place": { - "protocol_id": 1449 + "minecraft:block.hanging_roots.fall": { + "protocol_id": 619 }, - "minecraft:block.wood.step": { - "protocol_id": 1450 + "minecraft:block.hanging_roots.hit": { + "protocol_id": 620 }, - "minecraft:block.wooden_button.click_off": { - "protocol_id": 1442 + "minecraft:block.hanging_roots.place": { + "protocol_id": 621 }, - "minecraft:block.wooden_button.click_on": { - "protocol_id": 1443 + "minecraft:block.hanging_roots.step": { + "protocol_id": 622 }, - "minecraft:block.wooden_door.close": { - "protocol_id": 1438 + "minecraft:block.hanging_sign.break": { + "protocol_id": 624 }, - "minecraft:block.wooden_door.open": { - "protocol_id": 1439 + "minecraft:block.hanging_sign.fall": { + "protocol_id": 625 }, - "minecraft:block.wooden_pressure_plate.click_off": { - "protocol_id": 1444 + "minecraft:block.hanging_sign.hit": { + "protocol_id": 626 }, - "minecraft:block.wooden_pressure_plate.click_on": { - "protocol_id": 1445 + "minecraft:block.hanging_sign.place": { + "protocol_id": 627 }, - "minecraft:block.wooden_trapdoor.close": { - "protocol_id": 1440 + "minecraft:block.hanging_sign.step": { + "protocol_id": 623 }, - "minecraft:block.wooden_trapdoor.open": { - "protocol_id": 1441 - }, - "minecraft:block.wool.break": { + "minecraft:block.hanging_sign.waxed_interact_fail": { "protocol_id": 1451 }, - "minecraft:block.wool.fall": { + "minecraft:block.honey_block.break": { + "protocol_id": 658 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 659 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 660 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 661 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 662 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 663 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 706 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 707 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 714 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 715 + }, + "minecraft:block.ladder.break": { + "protocol_id": 723 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 724 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 725 + }, + "minecraft:block.ladder.place": { + "protocol_id": 726 + }, + "minecraft:block.ladder.step": { + "protocol_id": 727 + }, + "minecraft:block.lantern.break": { + "protocol_id": 728 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 729 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 730 + }, + "minecraft:block.lantern.place": { + "protocol_id": 731 + }, + "minecraft:block.lantern.step": { + "protocol_id": 732 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 733 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 734 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 735 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 736 + }, + "minecraft:block.lava.pop": { + "protocol_id": 737 + }, + "minecraft:block.lever.click": { + "protocol_id": 740 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1420 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 754 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 758 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 757 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 756 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 755 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 766 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 767 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 768 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 769 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 770 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 771 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 772 + }, + "minecraft:block.metal.break": { + "protocol_id": 773 + }, + "minecraft:block.metal.fall": { + "protocol_id": 774 + }, + "minecraft:block.metal.hit": { + "protocol_id": 775 + }, + "minecraft:block.metal.place": { + "protocol_id": 776 + }, + "minecraft:block.metal.step": { + "protocol_id": 779 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 777 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 778 + }, + "minecraft:block.moss.break": { + "protocol_id": 798 + }, + "minecraft:block.moss.fall": { + "protocol_id": 799 + }, + "minecraft:block.moss.hit": { + "protocol_id": 800 + }, + "minecraft:block.moss.place": { + "protocol_id": 801 + }, + "minecraft:block.moss.step": { + "protocol_id": 802 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 788 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 789 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 790 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 791 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 792 + }, + "minecraft:block.mud.break": { + "protocol_id": 803 + }, + "minecraft:block.mud.fall": { + "protocol_id": 804 + }, + "minecraft:block.mud.hit": { + "protocol_id": 805 + }, + "minecraft:block.mud.place": { + "protocol_id": 806 + }, + "minecraft:block.mud.step": { + "protocol_id": 807 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 808 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 809 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 810 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 811 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 812 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 813 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 814 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 815 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 816 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 817 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 871 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 875 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 874 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 873 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 872 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1112 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1113 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1114 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1115 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1116 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1117 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1118 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1119 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1120 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1121 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 909 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 913 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 912 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 911 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 910 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 876 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 878 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 879 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 880 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 881 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 882 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 887 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 888 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 883 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 884 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 891 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 892 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 629 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 630 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 631 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 632 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 628 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 889 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 890 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 885 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 886 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 929 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 933 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 932 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 931 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 930 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 934 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 938 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 937 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 936 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 935 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 954 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 939 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 940 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 941 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 953 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 942 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 951 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 952 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 943 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 944 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 945 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 946 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 957 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 958 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 960 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 956 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 959 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 955 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 950 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 947 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 948 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 949 + }, + "minecraft:block.nylium.break": { + "protocol_id": 904 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 908 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 907 + }, + "minecraft:block.nylium.place": { + "protocol_id": 906 + }, + "minecraft:block.nylium.step": { + "protocol_id": 905 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 894 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 895 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 896 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 897 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 898 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 793 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 794 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 795 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 796 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 797 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1048 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1049 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 403 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 409 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 411 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 410 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 412 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 407 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 406 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 408 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 405 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 404 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1077 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1078 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1079 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1080 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1081 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1361 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1362 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1363 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1364 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1365 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1082 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1083 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1084 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1085 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1086 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1087 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1088 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1089 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1097 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1122 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1123 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1124 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1125 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1126 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1127 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1128 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1129 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1130 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1131 + }, + "minecraft:block.roots.break": { + "protocol_id": 535 + }, + "minecraft:block.roots.fall": { + "protocol_id": 539 + }, + "minecraft:block.roots.hit": { + "protocol_id": 538 + }, + "minecraft:block.roots.place": { + "protocol_id": 537 + }, + "minecraft:block.roots.step": { + "protocol_id": 536 + }, + "minecraft:block.sand.break": { + "protocol_id": 1136 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1137 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1138 + }, + "minecraft:block.sand.place": { + "protocol_id": 1139 + }, + "minecraft:block.sand.step": { + "protocol_id": 1140 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1141 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1142 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1143 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1144 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1145 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1148 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1147 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1149 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1150 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1151 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1146 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1152 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1153 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1154 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1155 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1156 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1157 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1158 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1161 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1159 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1160 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1162 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1163 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1164 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1165 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1166 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1167 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1168 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1169 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1170 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1171 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1172 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1173 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1174 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1175 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1176 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1184 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1188 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1187 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1186 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1185 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1191 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1192 + }, + "minecraft:block.sign.waxed_interact_fail": { "protocol_id": 1452 }, - "minecraft:block.wool.hit": { + "minecraft:block.slime_block.break": { + "protocol_id": 1225 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1226 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1227 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1228 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1229 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1230 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1231 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1232 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1233 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1234 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1235 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1236 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1266 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1267 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1281 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1282 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1280 + }, + "minecraft:block.snow.break": { + "protocol_id": 1284 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1285 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1291 + }, + "minecraft:block.snow.place": { + "protocol_id": 1292 + }, + "minecraft:block.snow.step": { + "protocol_id": 1293 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1237 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1241 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1240 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1239 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1238 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1242 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1246 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1245 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1244 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1243 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1305 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1300 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1301 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1302 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1303 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1304 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1248 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1249 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1250 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1251 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1252 + }, + "minecraft:block.stem.break": { + "protocol_id": 899 + }, + "minecraft:block.stem.fall": { + "protocol_id": 903 + }, + "minecraft:block.stem.hit": { + "protocol_id": 902 + }, + "minecraft:block.stem.place": { + "protocol_id": 901 + }, + "minecraft:block.stem.step": { + "protocol_id": 900 + }, + "minecraft:block.stone.break": { + "protocol_id": 1312 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1315 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1316 + }, + "minecraft:block.stone.place": { + "protocol_id": 1317 + }, + "minecraft:block.stone.step": { + "protocol_id": 1320 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1313 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1314 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1318 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1319 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 511 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 515 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 514 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 513 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 512 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 506 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 510 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 509 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 508 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 507 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1325 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1327 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1326 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 645 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 638 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 647 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 644 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 648 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 642 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 641 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 646 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 640 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 643 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 639 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1343 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1344 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1345 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1346 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1351 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1355 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1354 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1353 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1352 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1356 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1357 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1358 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1359 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1360 + }, + "minecraft:block.vine.break": { + "protocol_id": 1415 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1416 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1417 + }, + "minecraft:block.vine.place": { + "protocol_id": 1418 + }, + "minecraft:block.vine.step": { + "protocol_id": 1419 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 924 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 928 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 927 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 926 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 925 + }, + "minecraft:block.water.ambient": { "protocol_id": 1453 }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 919 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 923 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 922 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 921 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 920 + }, + "minecraft:block.wet_grass.break": { + "protocol_id": 1456 + }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1457 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1458 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1459 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1460 + }, + "minecraft:block.wet_sponge.break": { + "protocol_id": 1461 + }, + "minecraft:block.wet_sponge.fall": { + "protocol_id": 1462 + }, + "minecraft:block.wet_sponge.hit": { + "protocol_id": 1463 + }, + "minecraft:block.wet_sponge.place": { + "protocol_id": 1464 + }, + "minecraft:block.wet_sponge.step": { + "protocol_id": 1465 + }, + "minecraft:block.wood.break": { + "protocol_id": 1500 + }, + "minecraft:block.wood.fall": { + "protocol_id": 1501 + }, + "minecraft:block.wood.hit": { + "protocol_id": 1502 + }, + "minecraft:block.wood.place": { + "protocol_id": 1503 + }, + "minecraft:block.wood.step": { + "protocol_id": 1504 + }, + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1496 + }, + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1497 + }, + "minecraft:block.wooden_door.close": { + "protocol_id": 1492 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1493 + }, + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1498 + }, + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1499 + }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1494 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1495 + }, + "minecraft:block.wool.break": { + "protocol_id": 1505 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1506 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1507 + }, "minecraft:block.wool.place": { - "protocol_id": 1454 + "protocol_id": 1508 }, "minecraft:block.wool.step": { - "protocol_id": 1455 + "protocol_id": 1509 }, "minecraft:enchant.thorns.hit": { - "protocol_id": 1290 + "protocol_id": 1332 }, "minecraft:entity.allay.ambient_with_item": { "protocol_id": 0 @@ -12292,1886 +13550,1922 @@ "minecraft:entity.boat.paddle_water": { "protocol_id": 153 }, + "minecraft:entity.breeze.death": { + "protocol_id": 173 + }, + "minecraft:entity.breeze.hurt": { + "protocol_id": 174 + }, + "minecraft:entity.breeze.idle_air": { + "protocol_id": 168 + }, + "minecraft:entity.breeze.idle_ground": { + "protocol_id": 167 + }, + "minecraft:entity.breeze.inhale": { + "protocol_id": 166 + }, + "minecraft:entity.breeze.jump": { + "protocol_id": 170 + }, + "minecraft:entity.breeze.land": { + "protocol_id": 171 + }, + "minecraft:entity.breeze.shoot": { + "protocol_id": 169 + }, + "minecraft:entity.breeze.slide": { + "protocol_id": 172 + }, "minecraft:entity.camel.ambient": { - "protocol_id": 198 - }, - "minecraft:entity.camel.dash": { - "protocol_id": 199 - }, - "minecraft:entity.camel.dash_ready": { - "protocol_id": 200 - }, - "minecraft:entity.camel.death": { - "protocol_id": 201 - }, - "minecraft:entity.camel.eat": { - "protocol_id": 202 - }, - "minecraft:entity.camel.hurt": { - "protocol_id": 203 - }, - "minecraft:entity.camel.saddle": { - "protocol_id": 204 - }, - "minecraft:entity.camel.sit": { - "protocol_id": 205 - }, - "minecraft:entity.camel.stand": { - "protocol_id": 206 - }, - "minecraft:entity.camel.step": { "protocol_id": 207 }, - "minecraft:entity.camel.step_sand": { + "minecraft:entity.camel.dash": { "protocol_id": 208 }, - "minecraft:entity.cat.ambient": { + "minecraft:entity.camel.dash_ready": { + "protocol_id": 209 + }, + "minecraft:entity.camel.death": { + "protocol_id": 210 + }, + "minecraft:entity.camel.eat": { + "protocol_id": 211 + }, + "minecraft:entity.camel.hurt": { + "protocol_id": 212 + }, + "minecraft:entity.camel.saddle": { + "protocol_id": 213 + }, + "minecraft:entity.camel.sit": { + "protocol_id": 214 + }, + "minecraft:entity.camel.stand": { + "protocol_id": 215 + }, + "minecraft:entity.camel.step": { + "protocol_id": 216 + }, + "minecraft:entity.camel.step_sand": { "protocol_id": 217 }, + "minecraft:entity.cat.ambient": { + "protocol_id": 226 + }, "minecraft:entity.cat.beg_for_food": { - "protocol_id": 222 + "protocol_id": 231 }, "minecraft:entity.cat.death": { - "protocol_id": 219 + "protocol_id": 228 }, "minecraft:entity.cat.eat": { - "protocol_id": 220 + "protocol_id": 229 }, "minecraft:entity.cat.hiss": { - "protocol_id": 221 + "protocol_id": 230 }, "minecraft:entity.cat.hurt": { - "protocol_id": 223 + "protocol_id": 232 }, "minecraft:entity.cat.purr": { - "protocol_id": 224 + "protocol_id": 233 }, "minecraft:entity.cat.purreow": { - "protocol_id": 225 + "protocol_id": 234 }, "minecraft:entity.cat.stray_ambient": { - "protocol_id": 218 + "protocol_id": 227 }, "minecraft:entity.chicken.ambient": { - "protocol_id": 270 + "protocol_id": 279 }, "minecraft:entity.chicken.death": { - "protocol_id": 271 + "protocol_id": 280 }, "minecraft:entity.chicken.egg": { - "protocol_id": 272 + "protocol_id": 281 }, "minecraft:entity.chicken.hurt": { - "protocol_id": 273 + "protocol_id": 282 }, "minecraft:entity.chicken.step": { - "protocol_id": 274 + "protocol_id": 283 }, "minecraft:entity.cod.ambient": { - "protocol_id": 287 + "protocol_id": 296 }, "minecraft:entity.cod.death": { - "protocol_id": 288 + "protocol_id": 297 }, "minecraft:entity.cod.flop": { - "protocol_id": 289 + "protocol_id": 298 }, "minecraft:entity.cod.hurt": { - "protocol_id": 290 + "protocol_id": 299 }, "minecraft:entity.cow.ambient": { - "protocol_id": 311 + "protocol_id": 336 }, "minecraft:entity.cow.death": { - "protocol_id": 312 + "protocol_id": 337 }, "minecraft:entity.cow.hurt": { - "protocol_id": 313 + "protocol_id": 338 }, "minecraft:entity.cow.milk": { - "protocol_id": 314 + "protocol_id": 339 }, "minecraft:entity.cow.step": { - "protocol_id": 315 + "protocol_id": 340 }, "minecraft:entity.creeper.death": { - "protocol_id": 316 + "protocol_id": 343 }, "minecraft:entity.creeper.hurt": { - "protocol_id": 317 + "protocol_id": 344 }, "minecraft:entity.creeper.primed": { - "protocol_id": 318 + "protocol_id": 345 }, "minecraft:entity.dolphin.ambient": { - "protocol_id": 353 + "protocol_id": 382 }, "minecraft:entity.dolphin.ambient_water": { - "protocol_id": 354 + "protocol_id": 383 }, "minecraft:entity.dolphin.attack": { - "protocol_id": 355 + "protocol_id": 384 }, "minecraft:entity.dolphin.death": { - "protocol_id": 356 + "protocol_id": 385 }, "minecraft:entity.dolphin.eat": { - "protocol_id": 357 - }, - "minecraft:entity.dolphin.hurt": { - "protocol_id": 358 - }, - "minecraft:entity.dolphin.jump": { - "protocol_id": 359 - }, - "minecraft:entity.dolphin.play": { - "protocol_id": 360 - }, - "minecraft:entity.dolphin.splash": { - "protocol_id": 361 - }, - "minecraft:entity.dolphin.swim": { - "protocol_id": 362 - }, - "minecraft:entity.donkey.ambient": { - "protocol_id": 363 - }, - "minecraft:entity.donkey.angry": { - "protocol_id": 364 - }, - "minecraft:entity.donkey.chest": { - "protocol_id": 365 - }, - "minecraft:entity.donkey.death": { - "protocol_id": 366 - }, - "minecraft:entity.donkey.eat": { - "protocol_id": 367 - }, - "minecraft:entity.donkey.hurt": { - "protocol_id": 368 - }, - "minecraft:entity.dragon_fireball.explode": { - "protocol_id": 411 - }, - "minecraft:entity.drowned.ambient": { "protocol_id": 386 }, - "minecraft:entity.drowned.ambient_water": { + "minecraft:entity.dolphin.hurt": { "protocol_id": 387 }, - "minecraft:entity.drowned.death": { + "minecraft:entity.dolphin.jump": { "protocol_id": 388 }, - "minecraft:entity.drowned.death_water": { + "minecraft:entity.dolphin.play": { "protocol_id": 389 }, - "minecraft:entity.drowned.hurt": { + "minecraft:entity.dolphin.splash": { "protocol_id": 390 }, - "minecraft:entity.drowned.hurt_water": { + "minecraft:entity.dolphin.swim": { "protocol_id": 391 }, - "minecraft:entity.drowned.shoot": { + "minecraft:entity.donkey.ambient": { "protocol_id": 392 }, - "minecraft:entity.drowned.step": { + "minecraft:entity.donkey.angry": { "protocol_id": 393 }, - "minecraft:entity.drowned.swim": { + "minecraft:entity.donkey.chest": { "protocol_id": 394 }, - "minecraft:entity.egg.throw": { + "minecraft:entity.donkey.death": { + "protocol_id": 395 + }, + "minecraft:entity.donkey.eat": { "protocol_id": 396 }, - "minecraft:entity.elder_guardian.ambient": { + "minecraft:entity.donkey.hurt": { "protocol_id": 397 }, - "minecraft:entity.elder_guardian.ambient_land": { - "protocol_id": 398 - }, - "minecraft:entity.elder_guardian.curse": { - "protocol_id": 399 - }, - "minecraft:entity.elder_guardian.death": { - "protocol_id": 400 - }, - "minecraft:entity.elder_guardian.death_land": { - "protocol_id": 401 - }, - "minecraft:entity.elder_guardian.flop": { - "protocol_id": 402 - }, - "minecraft:entity.elder_guardian.hurt": { - "protocol_id": 403 - }, - "minecraft:entity.elder_guardian.hurt_land": { - "protocol_id": 404 - }, - "minecraft:entity.ender_dragon.ambient": { - "protocol_id": 409 - }, - "minecraft:entity.ender_dragon.death": { - "protocol_id": 410 - }, - "minecraft:entity.ender_dragon.flap": { - "protocol_id": 412 - }, - "minecraft:entity.ender_dragon.growl": { - "protocol_id": 413 - }, - "minecraft:entity.ender_dragon.hurt": { - "protocol_id": 414 - }, - "minecraft:entity.ender_dragon.shoot": { - "protocol_id": 415 - }, - "minecraft:entity.ender_eye.death": { - "protocol_id": 416 - }, - "minecraft:entity.ender_eye.launch": { - "protocol_id": 417 - }, - "minecraft:entity.ender_pearl.throw": { - "protocol_id": 428 - }, - "minecraft:entity.enderman.ambient": { - "protocol_id": 418 - }, - "minecraft:entity.enderman.death": { - "protocol_id": 419 - }, - "minecraft:entity.enderman.hurt": { - "protocol_id": 420 - }, - "minecraft:entity.enderman.scream": { - "protocol_id": 421 - }, - "minecraft:entity.enderman.stare": { - "protocol_id": 422 - }, - "minecraft:entity.enderman.teleport": { - "protocol_id": 423 - }, - "minecraft:entity.endermite.ambient": { - "protocol_id": 424 - }, - "minecraft:entity.endermite.death": { - "protocol_id": 425 - }, - "minecraft:entity.endermite.hurt": { - "protocol_id": 426 - }, - "minecraft:entity.endermite.step": { - "protocol_id": 427 - }, - "minecraft:entity.evoker.ambient": { - "protocol_id": 432 - }, - "minecraft:entity.evoker.cast_spell": { - "protocol_id": 433 - }, - "minecraft:entity.evoker.celebrate": { - "protocol_id": 434 - }, - "minecraft:entity.evoker.death": { - "protocol_id": 435 - }, - "minecraft:entity.evoker.hurt": { - "protocol_id": 437 - }, - "minecraft:entity.evoker.prepare_attack": { - "protocol_id": 438 - }, - "minecraft:entity.evoker.prepare_summon": { - "protocol_id": 439 - }, - "minecraft:entity.evoker.prepare_wololo": { + "minecraft:entity.dragon_fireball.explode": { "protocol_id": 440 }, - "minecraft:entity.evoker_fangs.attack": { - "protocol_id": 436 + "minecraft:entity.drowned.ambient": { + "protocol_id": 415 }, - "minecraft:entity.experience_bottle.throw": { + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 416 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 417 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 418 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 419 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 420 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 421 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 422 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 423 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 425 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 426 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 427 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 428 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 429 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 430 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 431 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 432 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 433 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 438 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 439 + }, + "minecraft:entity.ender_dragon.flap": { "protocol_id": 441 }, - "minecraft:entity.experience_orb.pickup": { + "minecraft:entity.ender_dragon.growl": { "protocol_id": 442 }, - "minecraft:entity.firework_rocket.blast": { + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 443 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 444 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 445 + }, + "minecraft:entity.ender_eye.launch": { "protocol_id": 446 }, - "minecraft:entity.firework_rocket.blast_far": { - "protocol_id": 447 - }, - "minecraft:entity.firework_rocket.large_blast": { - "protocol_id": 448 - }, - "minecraft:entity.firework_rocket.large_blast_far": { - "protocol_id": 449 - }, - "minecraft:entity.firework_rocket.launch": { - "protocol_id": 450 - }, - "minecraft:entity.firework_rocket.shoot": { - "protocol_id": 451 - }, - "minecraft:entity.firework_rocket.twinkle": { - "protocol_id": 452 - }, - "minecraft:entity.firework_rocket.twinkle_far": { - "protocol_id": 453 - }, - "minecraft:entity.fish.swim": { - "protocol_id": 456 - }, - "minecraft:entity.fishing_bobber.retrieve": { + "minecraft:entity.ender_pearl.throw": { "protocol_id": 457 }, - "minecraft:entity.fishing_bobber.splash": { - "protocol_id": 458 + "minecraft:entity.enderman.ambient": { + "protocol_id": 447 }, - "minecraft:entity.fishing_bobber.throw": { - "protocol_id": 459 + "minecraft:entity.enderman.death": { + "protocol_id": 448 }, - "minecraft:entity.fox.aggro": { + "minecraft:entity.enderman.hurt": { + "protocol_id": 449 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 450 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 451 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 452 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 453 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 454 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 455 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 456 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 461 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 462 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 463 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 464 + }, + "minecraft:entity.evoker.hurt": { "protocol_id": 466 }, - "minecraft:entity.fox.ambient": { + "minecraft:entity.evoker.prepare_attack": { "protocol_id": 467 }, - "minecraft:entity.fox.bite": { + "minecraft:entity.evoker.prepare_summon": { "protocol_id": 468 }, - "minecraft:entity.fox.death": { + "minecraft:entity.evoker.prepare_wololo": { "protocol_id": 469 }, - "minecraft:entity.fox.eat": { + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 465 + }, + "minecraft:entity.experience_bottle.throw": { "protocol_id": 470 }, - "minecraft:entity.fox.hurt": { + "minecraft:entity.experience_orb.pickup": { "protocol_id": 471 }, - "minecraft:entity.fox.screech": { - "protocol_id": 472 - }, - "minecraft:entity.fox.sleep": { - "protocol_id": 473 - }, - "minecraft:entity.fox.sniff": { - "protocol_id": 474 - }, - "minecraft:entity.fox.spit": { + "minecraft:entity.firework_rocket.blast": { "protocol_id": 475 }, - "minecraft:entity.fox.teleport": { + "minecraft:entity.firework_rocket.blast_far": { "protocol_id": 476 }, - "minecraft:entity.frog.ambient": { + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 477 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 478 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 479 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 480 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 481 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 482 + }, + "minecraft:entity.fish.swim": { + "protocol_id": 485 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 486 + }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 487 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 488 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 495 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 496 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 497 + }, + "minecraft:entity.fox.death": { "protocol_id": 498 }, - "minecraft:entity.frog.death": { + "minecraft:entity.fox.eat": { "protocol_id": 499 }, - "minecraft:entity.frog.eat": { + "minecraft:entity.fox.hurt": { "protocol_id": 500 }, - "minecraft:entity.frog.hurt": { + "minecraft:entity.fox.screech": { "protocol_id": 501 }, - "minecraft:entity.frog.lay_spawn": { + "minecraft:entity.fox.sleep": { "protocol_id": 502 }, - "minecraft:entity.frog.long_jump": { + "minecraft:entity.fox.sniff": { "protocol_id": 503 }, - "minecraft:entity.frog.step": { + "minecraft:entity.fox.spit": { "protocol_id": 504 }, - "minecraft:entity.frog.tongue": { + "minecraft:entity.fox.teleport": { "protocol_id": 505 }, - "minecraft:entity.generic.big_fall": { - "protocol_id": 512 - }, - "minecraft:entity.generic.burn": { - "protocol_id": 513 - }, - "minecraft:entity.generic.death": { - "protocol_id": 514 - }, - "minecraft:entity.generic.drink": { - "protocol_id": 515 - }, - "minecraft:entity.generic.eat": { - "protocol_id": 516 - }, - "minecraft:entity.generic.explode": { - "protocol_id": 517 - }, - "minecraft:entity.generic.extinguish_fire": { - "protocol_id": 518 - }, - "minecraft:entity.generic.hurt": { - "protocol_id": 519 - }, - "minecraft:entity.generic.small_fall": { - "protocol_id": 520 - }, - "minecraft:entity.generic.splash": { - "protocol_id": 521 - }, - "minecraft:entity.generic.swim": { - "protocol_id": 522 - }, - "minecraft:entity.ghast.ambient": { - "protocol_id": 523 - }, - "minecraft:entity.ghast.death": { - "protocol_id": 524 - }, - "minecraft:entity.ghast.hurt": { - "protocol_id": 525 - }, - "minecraft:entity.ghast.scream": { - "protocol_id": 526 - }, - "minecraft:entity.ghast.shoot": { + "minecraft:entity.frog.ambient": { "protocol_id": 527 }, - "minecraft:entity.ghast.warn": { + "minecraft:entity.frog.death": { "protocol_id": 528 }, - "minecraft:entity.glow_item_frame.add_item": { - "protocol_id": 540 + "minecraft:entity.frog.eat": { + "protocol_id": 529 }, - "minecraft:entity.glow_item_frame.break": { + "minecraft:entity.frog.hurt": { + "protocol_id": 530 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 531 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 532 + }, + "minecraft:entity.frog.step": { + "protocol_id": 533 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 534 + }, + "minecraft:entity.generic.big_fall": { "protocol_id": 541 }, - "minecraft:entity.glow_item_frame.place": { + "minecraft:entity.generic.burn": { "protocol_id": 542 }, - "minecraft:entity.glow_item_frame.remove_item": { + "minecraft:entity.generic.death": { "protocol_id": 543 }, - "minecraft:entity.glow_item_frame.rotate_item": { + "minecraft:entity.generic.drink": { "protocol_id": 544 }, - "minecraft:entity.glow_squid.ambient": { + "minecraft:entity.generic.eat": { "protocol_id": 545 }, - "minecraft:entity.glow_squid.death": { + "minecraft:entity.generic.explode": { "protocol_id": 546 }, - "minecraft:entity.glow_squid.hurt": { + "minecraft:entity.generic.extinguish_fire": { "protocol_id": 547 }, - "minecraft:entity.glow_squid.squirt": { + "minecraft:entity.generic.hurt": { "protocol_id": 548 }, - "minecraft:entity.goat.ambient": { + "minecraft:entity.generic.small_fall": { "protocol_id": 549 }, - "minecraft:entity.goat.death": { + "minecraft:entity.generic.splash": { "protocol_id": 550 }, - "minecraft:entity.goat.eat": { + "minecraft:entity.generic.swim": { "protocol_id": 551 }, - "minecraft:entity.goat.horn_break": { - "protocol_id": 557 - }, - "minecraft:entity.goat.hurt": { - "protocol_id": 552 - }, - "minecraft:entity.goat.long_jump": { - "protocol_id": 553 - }, - "minecraft:entity.goat.milk": { - "protocol_id": 554 - }, - "minecraft:entity.goat.prepare_ram": { - "protocol_id": 555 - }, - "minecraft:entity.goat.ram_impact": { - "protocol_id": 556 - }, - "minecraft:entity.goat.screaming.ambient": { - "protocol_id": 559 - }, - "minecraft:entity.goat.screaming.death": { - "protocol_id": 560 - }, - "minecraft:entity.goat.screaming.eat": { - "protocol_id": 561 - }, - "minecraft:entity.goat.screaming.horn_break": { - "protocol_id": 567 - }, - "minecraft:entity.goat.screaming.hurt": { - "protocol_id": 562 - }, - "minecraft:entity.goat.screaming.long_jump": { - "protocol_id": 563 - }, - "minecraft:entity.goat.screaming.milk": { - "protocol_id": 564 - }, - "minecraft:entity.goat.screaming.prepare_ram": { - "protocol_id": 565 - }, - "minecraft:entity.goat.screaming.ram_impact": { - "protocol_id": 566 - }, - "minecraft:entity.goat.step": { - "protocol_id": 568 - }, - "minecraft:entity.guardian.ambient": { - "protocol_id": 581 - }, - "minecraft:entity.guardian.ambient_land": { - "protocol_id": 582 - }, - "minecraft:entity.guardian.attack": { - "protocol_id": 583 - }, - "minecraft:entity.guardian.death": { - "protocol_id": 584 - }, - "minecraft:entity.guardian.death_land": { - "protocol_id": 585 - }, - "minecraft:entity.guardian.flop": { - "protocol_id": 586 - }, - "minecraft:entity.guardian.hurt": { - "protocol_id": 587 - }, - "minecraft:entity.guardian.hurt_land": { - "protocol_id": 588 - }, - "minecraft:entity.hoglin.ambient": { - "protocol_id": 610 - }, - "minecraft:entity.hoglin.angry": { - "protocol_id": 611 - }, - "minecraft:entity.hoglin.attack": { - "protocol_id": 612 - }, - "minecraft:entity.hoglin.converted_to_zombified": { - "protocol_id": 613 - }, - "minecraft:entity.hoglin.death": { - "protocol_id": 614 - }, - "minecraft:entity.hoglin.hurt": { - "protocol_id": 615 - }, - "minecraft:entity.hoglin.retreat": { - "protocol_id": 616 - }, - "minecraft:entity.hoglin.step": { - "protocol_id": 617 - }, - "minecraft:entity.horse.ambient": { - "protocol_id": 634 - }, - "minecraft:entity.horse.angry": { - "protocol_id": 635 - }, - "minecraft:entity.horse.armor": { - "protocol_id": 636 - }, - "minecraft:entity.horse.breathe": { - "protocol_id": 637 - }, - "minecraft:entity.horse.death": { - "protocol_id": 638 - }, - "minecraft:entity.horse.eat": { - "protocol_id": 639 - }, - "minecraft:entity.horse.gallop": { - "protocol_id": 640 - }, - "minecraft:entity.horse.hurt": { - "protocol_id": 641 - }, - "minecraft:entity.horse.jump": { - "protocol_id": 642 - }, - "minecraft:entity.horse.land": { - "protocol_id": 643 - }, - "minecraft:entity.horse.saddle": { - "protocol_id": 644 - }, - "minecraft:entity.horse.step": { - "protocol_id": 645 - }, - "minecraft:entity.horse.step_wood": { - "protocol_id": 646 - }, - "minecraft:entity.hostile.big_fall": { - "protocol_id": 647 - }, - "minecraft:entity.hostile.death": { - "protocol_id": 648 - }, - "minecraft:entity.hostile.hurt": { - "protocol_id": 649 - }, - "minecraft:entity.hostile.small_fall": { - "protocol_id": 650 - }, - "minecraft:entity.hostile.splash": { - "protocol_id": 651 - }, - "minecraft:entity.hostile.swim": { - "protocol_id": 652 - }, - "minecraft:entity.husk.ambient": { - "protocol_id": 653 - }, - "minecraft:entity.husk.converted_to_zombie": { - "protocol_id": 654 - }, - "minecraft:entity.husk.death": { - "protocol_id": 655 - }, - "minecraft:entity.husk.hurt": { - "protocol_id": 656 - }, - "minecraft:entity.husk.step": { - "protocol_id": 657 - }, - "minecraft:entity.illusioner.ambient": { - "protocol_id": 658 - }, - "minecraft:entity.illusioner.cast_spell": { - "protocol_id": 659 - }, - "minecraft:entity.illusioner.death": { - "protocol_id": 660 - }, - "minecraft:entity.illusioner.hurt": { - "protocol_id": 661 - }, - "minecraft:entity.illusioner.mirror_move": { - "protocol_id": 662 - }, - "minecraft:entity.illusioner.prepare_blindness": { - "protocol_id": 663 - }, - "minecraft:entity.illusioner.prepare_mirror": { - "protocol_id": 664 - }, - "minecraft:entity.iron_golem.attack": { - "protocol_id": 668 - }, - "minecraft:entity.iron_golem.damage": { - "protocol_id": 669 - }, - "minecraft:entity.iron_golem.death": { - "protocol_id": 670 - }, - "minecraft:entity.iron_golem.hurt": { - "protocol_id": 671 - }, - "minecraft:entity.iron_golem.repair": { - "protocol_id": 672 - }, - "minecraft:entity.iron_golem.step": { - "protocol_id": 673 - }, - "minecraft:entity.item.break": { - "protocol_id": 681 - }, - "minecraft:entity.item.pickup": { - "protocol_id": 682 - }, - "minecraft:entity.item_frame.add_item": { - "protocol_id": 676 - }, - "minecraft:entity.item_frame.break": { - "protocol_id": 677 - }, - "minecraft:entity.item_frame.place": { - "protocol_id": 678 - }, - "minecraft:entity.item_frame.remove_item": { - "protocol_id": 679 - }, - "minecraft:entity.item_frame.rotate_item": { - "protocol_id": 680 - }, - "minecraft:entity.leash_knot.break": { - "protocol_id": 698 - }, - "minecraft:entity.leash_knot.place": { - "protocol_id": 699 - }, - "minecraft:entity.lightning_bolt.impact": { - "protocol_id": 701 - }, - "minecraft:entity.lightning_bolt.thunder": { - "protocol_id": 702 - }, - "minecraft:entity.lingering_potion.throw": { - "protocol_id": 703 - }, - "minecraft:entity.llama.ambient": { - "protocol_id": 704 - }, - "minecraft:entity.llama.angry": { - "protocol_id": 705 - }, - "minecraft:entity.llama.chest": { - "protocol_id": 706 - }, - "minecraft:entity.llama.death": { - "protocol_id": 707 - }, - "minecraft:entity.llama.eat": { - "protocol_id": 708 - }, - "minecraft:entity.llama.hurt": { - "protocol_id": 709 - }, - "minecraft:entity.llama.spit": { - "protocol_id": 710 - }, - "minecraft:entity.llama.step": { - "protocol_id": 711 - }, - "minecraft:entity.llama.swag": { - "protocol_id": 712 - }, - "minecraft:entity.magma_cube.death": { - "protocol_id": 720 - }, - "minecraft:entity.magma_cube.death_small": { - "protocol_id": 713 - }, - "minecraft:entity.magma_cube.hurt": { - "protocol_id": 721 - }, - "minecraft:entity.magma_cube.hurt_small": { - "protocol_id": 722 - }, - "minecraft:entity.magma_cube.jump": { - "protocol_id": 723 - }, - "minecraft:entity.magma_cube.squish": { - "protocol_id": 724 - }, - "minecraft:entity.magma_cube.squish_small": { - "protocol_id": 725 - }, - "minecraft:entity.minecart.inside": { - "protocol_id": 741 - }, - "minecraft:entity.minecart.inside.underwater": { - "protocol_id": 740 - }, - "minecraft:entity.minecart.riding": { - "protocol_id": 742 - }, - "minecraft:entity.mooshroom.convert": { - "protocol_id": 743 - }, - "minecraft:entity.mooshroom.eat": { - "protocol_id": 744 - }, - "minecraft:entity.mooshroom.milk": { - "protocol_id": 745 - }, - "minecraft:entity.mooshroom.shear": { - "protocol_id": 747 - }, - "minecraft:entity.mooshroom.suspicious_milk": { - "protocol_id": 746 - }, - "minecraft:entity.mule.ambient": { - "protocol_id": 778 - }, - "minecraft:entity.mule.angry": { - "protocol_id": 779 - }, - "minecraft:entity.mule.chest": { - "protocol_id": 780 - }, - "minecraft:entity.mule.death": { - "protocol_id": 781 - }, - "minecraft:entity.mule.eat": { - "protocol_id": 782 - }, - "minecraft:entity.mule.hurt": { - "protocol_id": 783 - }, - "minecraft:entity.ocelot.ambient": { - "protocol_id": 922 - }, - "minecraft:entity.ocelot.death": { - "protocol_id": 923 - }, - "minecraft:entity.ocelot.hurt": { - "protocol_id": 921 - }, - "minecraft:entity.painting.break": { - "protocol_id": 924 - }, - "minecraft:entity.painting.place": { - "protocol_id": 925 - }, - "minecraft:entity.panda.aggressive_ambient": { - "protocol_id": 933 - }, - "minecraft:entity.panda.ambient": { - "protocol_id": 928 - }, - "minecraft:entity.panda.bite": { - "protocol_id": 936 - }, - "minecraft:entity.panda.cant_breed": { - "protocol_id": 932 - }, - "minecraft:entity.panda.death": { - "protocol_id": 929 - }, - "minecraft:entity.panda.eat": { - "protocol_id": 930 - }, - "minecraft:entity.panda.hurt": { - "protocol_id": 935 - }, - "minecraft:entity.panda.pre_sneeze": { - "protocol_id": 926 - }, - "minecraft:entity.panda.sneeze": { - "protocol_id": 927 - }, - "minecraft:entity.panda.step": { - "protocol_id": 931 - }, - "minecraft:entity.panda.worried_ambient": { - "protocol_id": 934 - }, - "minecraft:entity.parrot.ambient": { - "protocol_id": 937 - }, - "minecraft:entity.parrot.death": { - "protocol_id": 938 - }, - "minecraft:entity.parrot.eat": { - "protocol_id": 939 - }, - "minecraft:entity.parrot.fly": { - "protocol_id": 940 - }, - "minecraft:entity.parrot.hurt": { - "protocol_id": 941 - }, - "minecraft:entity.parrot.imitate.blaze": { - "protocol_id": 942 - }, - "minecraft:entity.parrot.imitate.creeper": { - "protocol_id": 943 - }, - "minecraft:entity.parrot.imitate.drowned": { - "protocol_id": 944 - }, - "minecraft:entity.parrot.imitate.elder_guardian": { - "protocol_id": 945 - }, - "minecraft:entity.parrot.imitate.ender_dragon": { - "protocol_id": 946 - }, - "minecraft:entity.parrot.imitate.endermite": { - "protocol_id": 947 - }, - "minecraft:entity.parrot.imitate.evoker": { - "protocol_id": 948 - }, - "minecraft:entity.parrot.imitate.ghast": { - "protocol_id": 949 - }, - "minecraft:entity.parrot.imitate.guardian": { - "protocol_id": 950 - }, - "minecraft:entity.parrot.imitate.hoglin": { - "protocol_id": 951 - }, - "minecraft:entity.parrot.imitate.husk": { - "protocol_id": 952 - }, - "minecraft:entity.parrot.imitate.illusioner": { - "protocol_id": 953 - }, - "minecraft:entity.parrot.imitate.magma_cube": { - "protocol_id": 954 - }, - "minecraft:entity.parrot.imitate.phantom": { - "protocol_id": 955 - }, - "minecraft:entity.parrot.imitate.piglin": { - "protocol_id": 956 - }, - "minecraft:entity.parrot.imitate.piglin_brute": { - "protocol_id": 957 - }, - "minecraft:entity.parrot.imitate.pillager": { - "protocol_id": 958 - }, - "minecraft:entity.parrot.imitate.ravager": { - "protocol_id": 959 - }, - "minecraft:entity.parrot.imitate.shulker": { - "protocol_id": 960 - }, - "minecraft:entity.parrot.imitate.silverfish": { - "protocol_id": 961 - }, - "minecraft:entity.parrot.imitate.skeleton": { - "protocol_id": 962 - }, - "minecraft:entity.parrot.imitate.slime": { - "protocol_id": 963 - }, - "minecraft:entity.parrot.imitate.spider": { - "protocol_id": 964 - }, - "minecraft:entity.parrot.imitate.stray": { - "protocol_id": 965 - }, - "minecraft:entity.parrot.imitate.vex": { - "protocol_id": 966 - }, - "minecraft:entity.parrot.imitate.vindicator": { - "protocol_id": 967 - }, - "minecraft:entity.parrot.imitate.warden": { - "protocol_id": 968 - }, - "minecraft:entity.parrot.imitate.witch": { - "protocol_id": 969 - }, - "minecraft:entity.parrot.imitate.wither": { - "protocol_id": 970 - }, - "minecraft:entity.parrot.imitate.wither_skeleton": { - "protocol_id": 971 - }, - "minecraft:entity.parrot.imitate.zoglin": { - "protocol_id": 972 - }, - "minecraft:entity.parrot.imitate.zombie": { - "protocol_id": 973 - }, - "minecraft:entity.parrot.imitate.zombie_villager": { - "protocol_id": 974 - }, - "minecraft:entity.parrot.step": { - "protocol_id": 975 - }, - "minecraft:entity.phantom.ambient": { - "protocol_id": 976 - }, - "minecraft:entity.phantom.bite": { - "protocol_id": 977 - }, - "minecraft:entity.phantom.death": { - "protocol_id": 978 - }, - "minecraft:entity.phantom.flap": { - "protocol_id": 979 - }, - "minecraft:entity.phantom.hurt": { - "protocol_id": 980 - }, - "minecraft:entity.phantom.swoop": { - "protocol_id": 981 - }, - "minecraft:entity.pig.ambient": { - "protocol_id": 982 - }, - "minecraft:entity.pig.death": { - "protocol_id": 983 - }, - "minecraft:entity.pig.hurt": { - "protocol_id": 984 - }, - "minecraft:entity.pig.saddle": { - "protocol_id": 985 - }, - "minecraft:entity.pig.step": { - "protocol_id": 986 - }, - "minecraft:entity.piglin.admiring_item": { - "protocol_id": 987 - }, - "minecraft:entity.piglin.ambient": { - "protocol_id": 988 - }, - "minecraft:entity.piglin.angry": { - "protocol_id": 989 - }, - "minecraft:entity.piglin.celebrate": { - "protocol_id": 990 - }, - "minecraft:entity.piglin.converted_to_zombified": { - "protocol_id": 996 - }, - "minecraft:entity.piglin.death": { - "protocol_id": 991 - }, - "minecraft:entity.piglin.hurt": { - "protocol_id": 993 - }, - "minecraft:entity.piglin.jealous": { - "protocol_id": 992 - }, - "minecraft:entity.piglin.retreat": { - "protocol_id": 994 - }, - "minecraft:entity.piglin.step": { - "protocol_id": 995 - }, - "minecraft:entity.piglin_brute.ambient": { - "protocol_id": 997 - }, - "minecraft:entity.piglin_brute.angry": { - "protocol_id": 998 - }, - "minecraft:entity.piglin_brute.converted_to_zombified": { - "protocol_id": 1002 - }, - "minecraft:entity.piglin_brute.death": { - "protocol_id": 999 - }, - "minecraft:entity.piglin_brute.hurt": { - "protocol_id": 1000 - }, - "minecraft:entity.piglin_brute.step": { - "protocol_id": 1001 - }, - "minecraft:entity.pillager.ambient": { - "protocol_id": 1003 - }, - "minecraft:entity.pillager.celebrate": { - "protocol_id": 1004 - }, - "minecraft:entity.pillager.death": { - "protocol_id": 1005 - }, - "minecraft:entity.pillager.hurt": { - "protocol_id": 1006 - }, - "minecraft:entity.player.attack.crit": { - "protocol_id": 1009 - }, - "minecraft:entity.player.attack.knockback": { - "protocol_id": 1010 - }, - "minecraft:entity.player.attack.nodamage": { - "protocol_id": 1011 - }, - "minecraft:entity.player.attack.strong": { - "protocol_id": 1012 - }, - "minecraft:entity.player.attack.sweep": { - "protocol_id": 1013 - }, - "minecraft:entity.player.attack.weak": { - "protocol_id": 1014 - }, - "minecraft:entity.player.big_fall": { - "protocol_id": 1015 - }, - "minecraft:entity.player.breath": { - "protocol_id": 1016 - }, - "minecraft:entity.player.burp": { - "protocol_id": 1017 - }, - "minecraft:entity.player.death": { - "protocol_id": 1018 - }, - "minecraft:entity.player.hurt": { - "protocol_id": 1019 - }, - "minecraft:entity.player.hurt_drown": { - "protocol_id": 1020 - }, - "minecraft:entity.player.hurt_freeze": { - "protocol_id": 1021 - }, - "minecraft:entity.player.hurt_on_fire": { - "protocol_id": 1022 - }, - "minecraft:entity.player.hurt_sweet_berry_bush": { - "protocol_id": 1023 - }, - "minecraft:entity.player.levelup": { - "protocol_id": 1024 - }, - "minecraft:entity.player.small_fall": { - "protocol_id": 1025 - }, - "minecraft:entity.player.splash": { - "protocol_id": 1026 - }, - "minecraft:entity.player.splash.high_speed": { - "protocol_id": 1027 - }, - "minecraft:entity.player.swim": { - "protocol_id": 1028 - }, - "minecraft:entity.polar_bear.ambient": { - "protocol_id": 1029 - }, - "minecraft:entity.polar_bear.ambient_baby": { - "protocol_id": 1030 - }, - "minecraft:entity.polar_bear.death": { - "protocol_id": 1031 - }, - "minecraft:entity.polar_bear.hurt": { - "protocol_id": 1032 - }, - "minecraft:entity.polar_bear.step": { - "protocol_id": 1033 - }, - "minecraft:entity.polar_bear.warning": { - "protocol_id": 1034 - }, - "minecraft:entity.puffer_fish.ambient": { - "protocol_id": 1048 - }, - "minecraft:entity.puffer_fish.blow_out": { - "protocol_id": 1049 - }, - "minecraft:entity.puffer_fish.blow_up": { - "protocol_id": 1050 - }, - "minecraft:entity.puffer_fish.death": { - "protocol_id": 1051 - }, - "minecraft:entity.puffer_fish.flop": { - "protocol_id": 1052 - }, - "minecraft:entity.puffer_fish.hurt": { - "protocol_id": 1053 - }, - "minecraft:entity.puffer_fish.sting": { - "protocol_id": 1054 - }, - "minecraft:entity.rabbit.ambient": { - "protocol_id": 1056 - }, - "minecraft:entity.rabbit.attack": { - "protocol_id": 1057 - }, - "minecraft:entity.rabbit.death": { - "protocol_id": 1058 - }, - "minecraft:entity.rabbit.hurt": { - "protocol_id": 1059 - }, - "minecraft:entity.rabbit.jump": { - "protocol_id": 1060 - }, - "minecraft:entity.ravager.ambient": { - "protocol_id": 1062 - }, - "minecraft:entity.ravager.attack": { - "protocol_id": 1063 - }, - "minecraft:entity.ravager.celebrate": { - "protocol_id": 1064 - }, - "minecraft:entity.ravager.death": { - "protocol_id": 1065 - }, - "minecraft:entity.ravager.hurt": { - "protocol_id": 1066 - }, - "minecraft:entity.ravager.roar": { - "protocol_id": 1069 - }, - "minecraft:entity.ravager.step": { - "protocol_id": 1067 - }, - "minecraft:entity.ravager.stunned": { - "protocol_id": 1068 - }, - "minecraft:entity.salmon.ambient": { - "protocol_id": 1090 - }, - "minecraft:entity.salmon.death": { - "protocol_id": 1091 - }, - "minecraft:entity.salmon.flop": { - "protocol_id": 1092 - }, - "minecraft:entity.salmon.hurt": { - "protocol_id": 1093 - }, - "minecraft:entity.sheep.ambient": { - "protocol_id": 1135 - }, - "minecraft:entity.sheep.death": { - "protocol_id": 1136 - }, - "minecraft:entity.sheep.hurt": { - "protocol_id": 1137 - }, - "minecraft:entity.sheep.shear": { - "protocol_id": 1138 - }, - "minecraft:entity.sheep.step": { - "protocol_id": 1139 - }, - "minecraft:entity.shulker.ambient": { - "protocol_id": 1148 - }, - "minecraft:entity.shulker.close": { - "protocol_id": 1153 - }, - "minecraft:entity.shulker.death": { - "protocol_id": 1154 - }, - "minecraft:entity.shulker.hurt": { - "protocol_id": 1155 - }, - "minecraft:entity.shulker.hurt_closed": { - "protocol_id": 1156 - }, - "minecraft:entity.shulker.open": { - "protocol_id": 1157 - }, - "minecraft:entity.shulker.shoot": { - "protocol_id": 1158 - }, - "minecraft:entity.shulker.teleport": { - "protocol_id": 1159 - }, - "minecraft:entity.shulker_bullet.hit": { - "protocol_id": 1151 - }, - "minecraft:entity.shulker_bullet.hurt": { - "protocol_id": 1152 - }, - "minecraft:entity.silverfish.ambient": { - "protocol_id": 1160 - }, - "minecraft:entity.silverfish.death": { - "protocol_id": 1161 - }, - "minecraft:entity.silverfish.hurt": { - "protocol_id": 1162 - }, - "minecraft:entity.silverfish.step": { - "protocol_id": 1163 - }, - "minecraft:entity.skeleton.ambient": { - "protocol_id": 1164 - }, - "minecraft:entity.skeleton.converted_to_stray": { - "protocol_id": 1165 - }, - "minecraft:entity.skeleton.death": { - "protocol_id": 1166 - }, - "minecraft:entity.skeleton.hurt": { - "protocol_id": 1175 - }, - "minecraft:entity.skeleton.shoot": { - "protocol_id": 1176 - }, - "minecraft:entity.skeleton.step": { - "protocol_id": 1177 - }, - "minecraft:entity.skeleton_horse.ambient": { - "protocol_id": 1167 - }, - "minecraft:entity.skeleton_horse.ambient_water": { - "protocol_id": 1171 - }, - "minecraft:entity.skeleton_horse.death": { - "protocol_id": 1168 - }, - "minecraft:entity.skeleton_horse.gallop_water": { - "protocol_id": 1172 - }, - "minecraft:entity.skeleton_horse.hurt": { - "protocol_id": 1169 - }, - "minecraft:entity.skeleton_horse.jump_water": { - "protocol_id": 1173 - }, - "minecraft:entity.skeleton_horse.step_water": { - "protocol_id": 1174 - }, - "minecraft:entity.skeleton_horse.swim": { - "protocol_id": 1170 - }, - "minecraft:entity.slime.attack": { - "protocol_id": 1178 - }, - "minecraft:entity.slime.death": { - "protocol_id": 1179 - }, - "minecraft:entity.slime.death_small": { - "protocol_id": 1220 - }, - "minecraft:entity.slime.hurt": { - "protocol_id": 1180 - }, - "minecraft:entity.slime.hurt_small": { - "protocol_id": 1221 - }, - "minecraft:entity.slime.jump": { - "protocol_id": 1181 - }, - "minecraft:entity.slime.jump_small": { - "protocol_id": 1222 - }, - "minecraft:entity.slime.squish": { - "protocol_id": 1182 - }, - "minecraft:entity.slime.squish_small": { - "protocol_id": 1223 - }, - "minecraft:entity.sniffer.death": { - "protocol_id": 1230 - }, - "minecraft:entity.sniffer.digging": { - "protocol_id": 1235 - }, - "minecraft:entity.sniffer.digging_stop": { - "protocol_id": 1236 - }, - "minecraft:entity.sniffer.drop_seed": { - "protocol_id": 1231 - }, - "minecraft:entity.sniffer.eat": { - "protocol_id": 1227 - }, - "minecraft:entity.sniffer.happy": { - "protocol_id": 1237 - }, - "minecraft:entity.sniffer.hurt": { - "protocol_id": 1229 - }, - "minecraft:entity.sniffer.idle": { - "protocol_id": 1228 - }, - "minecraft:entity.sniffer.scenting": { - "protocol_id": 1232 - }, - "minecraft:entity.sniffer.searching": { - "protocol_id": 1234 - }, - "minecraft:entity.sniffer.sniffing": { - "protocol_id": 1233 - }, - "minecraft:entity.sniffer.step": { - "protocol_id": 1226 - }, - "minecraft:entity.snow_golem.ambient": { - "protocol_id": 1244 - }, - "minecraft:entity.snow_golem.death": { - "protocol_id": 1245 - }, - "minecraft:entity.snow_golem.hurt": { - "protocol_id": 1246 - }, - "minecraft:entity.snow_golem.shear": { - "protocol_id": 1248 - }, - "minecraft:entity.snow_golem.shoot": { - "protocol_id": 1247 - }, - "minecraft:entity.snowball.throw": { - "protocol_id": 1241 - }, - "minecraft:entity.spider.ambient": { - "protocol_id": 1252 - }, - "minecraft:entity.spider.death": { - "protocol_id": 1253 - }, - "minecraft:entity.spider.hurt": { - "protocol_id": 1254 - }, - "minecraft:entity.spider.step": { - "protocol_id": 1255 - }, - "minecraft:entity.splash_potion.break": { - "protocol_id": 1256 - }, - "minecraft:entity.splash_potion.throw": { - "protocol_id": 1257 - }, - "minecraft:entity.squid.ambient": { - "protocol_id": 1266 - }, - "minecraft:entity.squid.death": { - "protocol_id": 1267 - }, - "minecraft:entity.squid.hurt": { - "protocol_id": 1268 - }, - "minecraft:entity.squid.squirt": { - "protocol_id": 1269 - }, - "minecraft:entity.stray.ambient": { - "protocol_id": 1279 - }, - "minecraft:entity.stray.death": { - "protocol_id": 1280 - }, - "minecraft:entity.stray.hurt": { - "protocol_id": 1281 - }, - "minecraft:entity.stray.step": { - "protocol_id": 1282 - }, - "minecraft:entity.strider.ambient": { - "protocol_id": 1211 - }, - "minecraft:entity.strider.death": { - "protocol_id": 1214 - }, - "minecraft:entity.strider.eat": { - "protocol_id": 1218 - }, - "minecraft:entity.strider.happy": { - "protocol_id": 1212 - }, - "minecraft:entity.strider.hurt": { - "protocol_id": 1215 - }, - "minecraft:entity.strider.retreat": { - "protocol_id": 1213 - }, - "minecraft:entity.strider.saddle": { - "protocol_id": 1219 - }, - "minecraft:entity.strider.step": { - "protocol_id": 1216 - }, - "minecraft:entity.strider.step_lava": { - "protocol_id": 1217 - }, - "minecraft:entity.tadpole.death": { - "protocol_id": 1286 - }, - "minecraft:entity.tadpole.flop": { - "protocol_id": 1287 - }, - "minecraft:entity.tadpole.grow_up": { - "protocol_id": 1288 - }, - "minecraft:entity.tadpole.hurt": { - "protocol_id": 1289 - }, - "minecraft:entity.tnt.primed": { - "protocol_id": 1291 - }, - "minecraft:entity.tropical_fish.ambient": { - "protocol_id": 1305 - }, - "minecraft:entity.tropical_fish.death": { - "protocol_id": 1306 - }, - "minecraft:entity.tropical_fish.flop": { - "protocol_id": 1307 - }, - "minecraft:entity.tropical_fish.hurt": { - "protocol_id": 1308 - }, - "minecraft:entity.turtle.ambient_land": { - "protocol_id": 1314 - }, - "minecraft:entity.turtle.death": { - "protocol_id": 1315 - }, - "minecraft:entity.turtle.death_baby": { - "protocol_id": 1316 - }, - "minecraft:entity.turtle.egg_break": { - "protocol_id": 1317 - }, - "minecraft:entity.turtle.egg_crack": { - "protocol_id": 1318 - }, - "minecraft:entity.turtle.egg_hatch": { - "protocol_id": 1319 - }, - "minecraft:entity.turtle.hurt": { - "protocol_id": 1320 - }, - "minecraft:entity.turtle.hurt_baby": { - "protocol_id": 1321 - }, - "minecraft:entity.turtle.lay_egg": { - "protocol_id": 1322 - }, - "minecraft:entity.turtle.shamble": { - "protocol_id": 1323 - }, - "minecraft:entity.turtle.shamble_baby": { - "protocol_id": 1324 - }, - "minecraft:entity.turtle.swim": { - "protocol_id": 1325 - }, - "minecraft:entity.vex.ambient": { - "protocol_id": 1335 - }, - "minecraft:entity.vex.charge": { - "protocol_id": 1336 - }, - "minecraft:entity.vex.death": { - "protocol_id": 1337 - }, - "minecraft:entity.vex.hurt": { - "protocol_id": 1338 - }, - "minecraft:entity.villager.ambient": { - "protocol_id": 1339 - }, - "minecraft:entity.villager.celebrate": { - "protocol_id": 1340 - }, - "minecraft:entity.villager.death": { - "protocol_id": 1341 - }, - "minecraft:entity.villager.hurt": { - "protocol_id": 1342 - }, - "minecraft:entity.villager.no": { - "protocol_id": 1343 - }, - "minecraft:entity.villager.trade": { - "protocol_id": 1344 - }, - "minecraft:entity.villager.work_armorer": { - "protocol_id": 1346 - }, - "minecraft:entity.villager.work_butcher": { - "protocol_id": 1347 - }, - "minecraft:entity.villager.work_cartographer": { - "protocol_id": 1348 - }, - "minecraft:entity.villager.work_cleric": { - "protocol_id": 1349 - }, - "minecraft:entity.villager.work_farmer": { - "protocol_id": 1350 - }, - "minecraft:entity.villager.work_fisherman": { - "protocol_id": 1351 - }, - "minecraft:entity.villager.work_fletcher": { - "protocol_id": 1352 - }, - "minecraft:entity.villager.work_leatherworker": { - "protocol_id": 1353 - }, - "minecraft:entity.villager.work_librarian": { - "protocol_id": 1354 - }, - "minecraft:entity.villager.work_mason": { - "protocol_id": 1355 - }, - "minecraft:entity.villager.work_shepherd": { - "protocol_id": 1356 - }, - "minecraft:entity.villager.work_toolsmith": { - "protocol_id": 1357 - }, - "minecraft:entity.villager.work_weaponsmith": { - "protocol_id": 1358 - }, - "minecraft:entity.villager.yes": { - "protocol_id": 1345 - }, - "minecraft:entity.vindicator.ambient": { - "protocol_id": 1359 - }, - "minecraft:entity.vindicator.celebrate": { - "protocol_id": 1360 - }, - "minecraft:entity.vindicator.death": { - "protocol_id": 1361 - }, - "minecraft:entity.vindicator.hurt": { - "protocol_id": 1362 - }, - "minecraft:entity.wandering_trader.ambient": { - "protocol_id": 1369 - }, - "minecraft:entity.wandering_trader.death": { - "protocol_id": 1370 - }, - "minecraft:entity.wandering_trader.disappeared": { - "protocol_id": 1371 - }, - "minecraft:entity.wandering_trader.drink_milk": { - "protocol_id": 1372 - }, - "minecraft:entity.wandering_trader.drink_potion": { - "protocol_id": 1373 - }, - "minecraft:entity.wandering_trader.hurt": { - "protocol_id": 1374 - }, - "minecraft:entity.wandering_trader.no": { - "protocol_id": 1375 - }, - "minecraft:entity.wandering_trader.reappeared": { - "protocol_id": 1376 - }, - "minecraft:entity.wandering_trader.trade": { - "protocol_id": 1377 - }, - "minecraft:entity.wandering_trader.yes": { - "protocol_id": 1378 - }, - "minecraft:entity.warden.agitated": { - "protocol_id": 1379 - }, - "minecraft:entity.warden.ambient": { - "protocol_id": 1380 - }, - "minecraft:entity.warden.angry": { - "protocol_id": 1381 - }, - "minecraft:entity.warden.attack_impact": { - "protocol_id": 1382 - }, - "minecraft:entity.warden.death": { - "protocol_id": 1383 - }, - "minecraft:entity.warden.dig": { - "protocol_id": 1384 - }, - "minecraft:entity.warden.emerge": { - "protocol_id": 1385 - }, - "minecraft:entity.warden.heartbeat": { - "protocol_id": 1386 - }, - "minecraft:entity.warden.hurt": { - "protocol_id": 1387 - }, - "minecraft:entity.warden.listening": { - "protocol_id": 1388 - }, - "minecraft:entity.warden.listening_angry": { - "protocol_id": 1389 - }, - "minecraft:entity.warden.nearby_close": { - "protocol_id": 1390 - }, - "minecraft:entity.warden.nearby_closer": { - "protocol_id": 1391 - }, - "minecraft:entity.warden.nearby_closest": { - "protocol_id": 1392 - }, - "minecraft:entity.warden.roar": { - "protocol_id": 1393 - }, - "minecraft:entity.warden.sniff": { - "protocol_id": 1394 - }, - "minecraft:entity.warden.sonic_boom": { - "protocol_id": 1395 - }, - "minecraft:entity.warden.sonic_charge": { - "protocol_id": 1396 - }, - "minecraft:entity.warden.step": { - "protocol_id": 1397 - }, - "minecraft:entity.warden.tendril_clicks": { - "protocol_id": 1398 - }, - "minecraft:entity.witch.ambient": { - "protocol_id": 1413 - }, - "minecraft:entity.witch.celebrate": { - "protocol_id": 1414 - }, - "minecraft:entity.witch.death": { - "protocol_id": 1415 - }, - "minecraft:entity.witch.drink": { - "protocol_id": 1416 - }, - "minecraft:entity.witch.hurt": { - "protocol_id": 1417 - }, - "minecraft:entity.witch.throw": { - "protocol_id": 1418 - }, - "minecraft:entity.wither.ambient": { - "protocol_id": 1419 - }, - "minecraft:entity.wither.break_block": { - "protocol_id": 1420 - }, - "minecraft:entity.wither.death": { - "protocol_id": 1421 - }, - "minecraft:entity.wither.hurt": { - "protocol_id": 1422 - }, - "minecraft:entity.wither.shoot": { - "protocol_id": 1423 - }, - "minecraft:entity.wither.spawn": { - "protocol_id": 1428 - }, - "minecraft:entity.wither_skeleton.ambient": { - "protocol_id": 1424 - }, - "minecraft:entity.wither_skeleton.death": { - "protocol_id": 1425 - }, - "minecraft:entity.wither_skeleton.hurt": { - "protocol_id": 1426 - }, - "minecraft:entity.wither_skeleton.step": { - "protocol_id": 1427 - }, - "minecraft:entity.wolf.ambient": { - "protocol_id": 1429 - }, - "minecraft:entity.wolf.death": { - "protocol_id": 1430 - }, - "minecraft:entity.wolf.growl": { - "protocol_id": 1431 - }, - "minecraft:entity.wolf.howl": { - "protocol_id": 1432 - }, - "minecraft:entity.wolf.hurt": { - "protocol_id": 1433 - }, - "minecraft:entity.wolf.pant": { - "protocol_id": 1434 - }, - "minecraft:entity.wolf.shake": { - "protocol_id": 1435 - }, - "minecraft:entity.wolf.step": { - "protocol_id": 1436 - }, - "minecraft:entity.wolf.whine": { - "protocol_id": 1437 - }, - "minecraft:entity.zoglin.ambient": { - "protocol_id": 1456 - }, - "minecraft:entity.zoglin.angry": { - "protocol_id": 1457 - }, - "minecraft:entity.zoglin.attack": { - "protocol_id": 1458 - }, - "minecraft:entity.zoglin.death": { - "protocol_id": 1459 - }, - "minecraft:entity.zoglin.hurt": { - "protocol_id": 1460 - }, - "minecraft:entity.zoglin.step": { - "protocol_id": 1461 - }, - "minecraft:entity.zombie.ambient": { - "protocol_id": 1462 - }, - "minecraft:entity.zombie.attack_iron_door": { - "protocol_id": 1464 - }, - "minecraft:entity.zombie.attack_wooden_door": { - "protocol_id": 1463 - }, - "minecraft:entity.zombie.break_wooden_door": { - "protocol_id": 1465 - }, - "minecraft:entity.zombie.converted_to_drowned": { + "minecraft:entity.generic.wind_burst": { "protocol_id": 1466 }, - "minecraft:entity.zombie.death": { - "protocol_id": 1467 + "minecraft:entity.ghast.ambient": { + "protocol_id": 552 }, - "minecraft:entity.zombie.destroy_egg": { - "protocol_id": 1468 + "minecraft:entity.ghast.death": { + "protocol_id": 553 }, - "minecraft:entity.zombie.hurt": { - "protocol_id": 1472 + "minecraft:entity.ghast.hurt": { + "protocol_id": 554 }, - "minecraft:entity.zombie.infect": { - "protocol_id": 1473 + "minecraft:entity.ghast.scream": { + "protocol_id": 555 }, - "minecraft:entity.zombie.step": { - "protocol_id": 1478 + "minecraft:entity.ghast.shoot": { + "protocol_id": 556 }, - "minecraft:entity.zombie_horse.ambient": { - "protocol_id": 1469 + "minecraft:entity.ghast.warn": { + "protocol_id": 557 }, - "minecraft:entity.zombie_horse.death": { - "protocol_id": 1470 + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 569 }, - "minecraft:entity.zombie_horse.hurt": { - "protocol_id": 1471 + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 570 }, - "minecraft:entity.zombie_villager.ambient": { - "protocol_id": 1479 + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 571 }, - "minecraft:entity.zombie_villager.converted": { - "protocol_id": 1480 + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 572 }, - "minecraft:entity.zombie_villager.cure": { - "protocol_id": 1481 + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 573 }, - "minecraft:entity.zombie_villager.death": { - "protocol_id": 1482 + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 574 }, - "minecraft:entity.zombie_villager.hurt": { - "protocol_id": 1483 + "minecraft:entity.glow_squid.death": { + "protocol_id": 575 }, - "minecraft:entity.zombie_villager.step": { - "protocol_id": 1484 + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 576 }, - "minecraft:entity.zombified_piglin.ambient": { - "protocol_id": 1474 + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 577 }, - "minecraft:entity.zombified_piglin.angry": { - "protocol_id": 1475 + "minecraft:entity.goat.ambient": { + "protocol_id": 578 }, - "minecraft:entity.zombified_piglin.death": { - "protocol_id": 1476 + "minecraft:entity.goat.death": { + "protocol_id": 579 }, - "minecraft:entity.zombified_piglin.hurt": { - "protocol_id": 1477 + "minecraft:entity.goat.eat": { + "protocol_id": 580 }, - "minecraft:event.raid.horn": { + "minecraft:entity.goat.horn_break": { + "protocol_id": 586 + }, + "minecraft:entity.goat.hurt": { + "protocol_id": 581 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 582 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 583 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 584 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 585 + }, + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 588 + }, + "minecraft:entity.goat.screaming.death": { + "protocol_id": 589 + }, + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 590 + }, + "minecraft:entity.goat.screaming.horn_break": { + "protocol_id": 596 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 591 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 592 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 593 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 594 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 595 + }, + "minecraft:entity.goat.step": { + "protocol_id": 597 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 610 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 611 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 612 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 613 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 614 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 615 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 616 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 617 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 650 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 651 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 652 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 653 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 654 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 655 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 656 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 657 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 674 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 675 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 676 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 677 + }, + "minecraft:entity.horse.death": { + "protocol_id": 678 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 679 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 680 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 681 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 682 + }, + "minecraft:entity.horse.land": { + "protocol_id": 683 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 684 + }, + "minecraft:entity.horse.step": { + "protocol_id": 685 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 686 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 687 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 688 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 689 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 690 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 691 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 692 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 693 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 694 + }, + "minecraft:entity.husk.death": { + "protocol_id": 695 + }, + "minecraft:entity.husk.hurt": { + "protocol_id": 696 + }, + "minecraft:entity.husk.step": { + "protocol_id": 697 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 698 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 699 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 700 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 701 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 702 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 703 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 704 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 708 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 709 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 710 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 711 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 712 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 713 + }, + "minecraft:entity.item.break": { + "protocol_id": 721 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 722 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 716 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 717 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 718 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 719 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 720 + }, + "minecraft:entity.leash_knot.break": { + "protocol_id": 738 + }, + "minecraft:entity.leash_knot.place": { + "protocol_id": 739 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 741 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 742 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 743 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 744 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 745 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 746 + }, + "minecraft:entity.llama.death": { + "protocol_id": 747 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 748 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 749 + }, + "minecraft:entity.llama.spit": { + "protocol_id": 750 + }, + "minecraft:entity.llama.step": { + "protocol_id": 751 + }, + "minecraft:entity.llama.swag": { + "protocol_id": 752 + }, + "minecraft:entity.magma_cube.death": { + "protocol_id": 760 + }, + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 753 + }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 761 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 762 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 763 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 764 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 765 + }, + "minecraft:entity.minecart.inside": { + "protocol_id": 781 + }, + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 780 + }, + "minecraft:entity.minecart.riding": { + "protocol_id": 782 + }, + "minecraft:entity.mooshroom.convert": { + "protocol_id": 783 + }, + "minecraft:entity.mooshroom.eat": { + "protocol_id": 784 + }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 785 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 787 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 786 + }, + "minecraft:entity.mule.ambient": { + "protocol_id": 818 + }, + "minecraft:entity.mule.angry": { + "protocol_id": 819 + }, + "minecraft:entity.mule.chest": { + "protocol_id": 820 + }, + "minecraft:entity.mule.death": { + "protocol_id": 821 + }, + "minecraft:entity.mule.eat": { + "protocol_id": 822 + }, + "minecraft:entity.mule.hurt": { + "protocol_id": 823 + }, + "minecraft:entity.ocelot.ambient": { + "protocol_id": 962 + }, + "minecraft:entity.ocelot.death": { + "protocol_id": 963 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 961 + }, + "minecraft:entity.painting.break": { + "protocol_id": 964 + }, + "minecraft:entity.painting.place": { + "protocol_id": 965 + }, + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 973 + }, + "minecraft:entity.panda.ambient": { + "protocol_id": 968 + }, + "minecraft:entity.panda.bite": { + "protocol_id": 976 + }, + "minecraft:entity.panda.cant_breed": { + "protocol_id": 972 + }, + "minecraft:entity.panda.death": { + "protocol_id": 969 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 970 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 975 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 966 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 967 + }, + "minecraft:entity.panda.step": { + "protocol_id": 971 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 974 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 977 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 978 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 979 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 980 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 981 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 982 + }, + "minecraft:entity.parrot.imitate.breeze": { + "protocol_id": 983 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 984 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 985 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 986 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 987 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 988 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 989 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 990 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 991 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 992 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 993 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 994 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 995 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 996 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 997 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 998 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 999 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 1000 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 1001 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 1002 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 1003 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 1004 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 1005 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 1006 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 1007 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 1008 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 1009 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 1010 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 1011 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 1012 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 1013 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 1014 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 1015 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 1016 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 1017 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 1018 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 1019 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 1020 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 1021 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 1022 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 1023 + }, + "minecraft:entity.pig.death": { + "protocol_id": 1024 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 1025 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 1026 + }, + "minecraft:entity.pig.step": { + "protocol_id": 1027 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 1028 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 1029 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 1030 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 1031 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 1037 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 1032 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1034 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1033 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1035 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1036 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 1038 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 1039 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 1043 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1040 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1041 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1042 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1044 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1045 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 1046 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 1047 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 1050 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 1051 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 1052 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 1053 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 1054 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 1055 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 1056 + }, + "minecraft:entity.player.breath": { + "protocol_id": 1057 + }, + "minecraft:entity.player.burp": { + "protocol_id": 1058 + }, + "minecraft:entity.player.death": { + "protocol_id": 1059 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 1060 + }, + "minecraft:entity.player.hurt_drown": { "protocol_id": 1061 }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 1062 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1063 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1064 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1065 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1066 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1067 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1068 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1069 + }, + "minecraft:entity.player.teleport": { + "protocol_id": 1070 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1071 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1072 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1073 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1074 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1075 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1076 + }, + "minecraft:entity.puffer_fish.ambient": { + "protocol_id": 1090 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 1091 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 1092 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1093 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 1094 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 1095 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 1096 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1098 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1099 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1100 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1101 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1102 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1104 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1105 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1106 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1107 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1108 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1111 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1109 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1110 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1132 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1133 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1134 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1135 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1177 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1178 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1179 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1180 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1181 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1190 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1195 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1196 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1197 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1198 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1199 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1200 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1201 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1193 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1194 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1202 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1203 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1204 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1205 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1206 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1207 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1208 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1217 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1218 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1219 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1209 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1213 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1210 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1214 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1211 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1215 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1216 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1212 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1220 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1221 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1262 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1222 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1263 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1223 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1264 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1224 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1265 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1272 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1277 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1278 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1273 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1269 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1279 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1271 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1270 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1274 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1276 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1275 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1268 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1286 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1287 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1288 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1290 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1289 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1283 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1294 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1295 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1296 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1297 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1298 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1299 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1308 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1309 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1310 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1311 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1321 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1322 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1323 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1324 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1253 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1256 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1260 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1254 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1257 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1255 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1261 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1258 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1259 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1328 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1329 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1330 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1331 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1333 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1347 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1348 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1349 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1350 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1366 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1367 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1368 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1369 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1370 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1371 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1372 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1373 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1374 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1375 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1376 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1377 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1387 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1388 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1389 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1390 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1391 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1392 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1393 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1394 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1395 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1396 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1398 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1399 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1400 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1401 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1402 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1403 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1404 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1405 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1406 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1407 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1408 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1409 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1410 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1397 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1411 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1412 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1413 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1414 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1421 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1422 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1423 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1424 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1425 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1426 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1427 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1428 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1429 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1430 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1431 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1432 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1433 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1434 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1435 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1436 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1437 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1438 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1439 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1440 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1441 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1442 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1443 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1444 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1445 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1446 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1447 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1448 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1449 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1450 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1467 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1468 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1469 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1470 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1471 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1472 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1473 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1474 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1475 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1476 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1477 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1482 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1478 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1479 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1480 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1481 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1483 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1484 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1485 + }, + "minecraft:entity.wolf.howl": { + "protocol_id": 1486 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1487 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1488 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1489 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1490 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1491 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1510 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1511 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1512 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1513 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1514 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1515 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1516 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1518 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1517 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1519 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1520 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1521 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1522 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1526 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1527 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1532 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1523 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1524 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1525 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1533 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1534 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1535 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1536 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1537 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1538 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1528 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1529 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1530 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1531 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1103 + }, "minecraft:intentionally_empty": { - "protocol_id": 853 + "protocol_id": 893 }, "minecraft:item.armor.equip_chain": { "protocol_id": 54 @@ -14228,373 +15522,373 @@ "protocol_id": 165 }, "minecraft:item.brush.brushing.generic": { - "protocol_id": 167 + "protocol_id": 176 }, "minecraft:item.brush.brushing.gravel": { - "protocol_id": 169 - }, - "minecraft:item.brush.brushing.gravel.complete": { - "protocol_id": 171 - }, - "minecraft:item.brush.brushing.sand": { - "protocol_id": 168 - }, - "minecraft:item.brush.brushing.sand.complete": { - "protocol_id": 170 - }, - "minecraft:item.bucket.empty": { - "protocol_id": 177 - }, - "minecraft:item.bucket.empty_axolotl": { "protocol_id": 178 }, - "minecraft:item.bucket.empty_fish": { - "protocol_id": 179 - }, - "minecraft:item.bucket.empty_lava": { + "minecraft:item.brush.brushing.gravel.complete": { "protocol_id": 180 }, - "minecraft:item.bucket.empty_powder_snow": { - "protocol_id": 181 + "minecraft:item.brush.brushing.sand": { + "protocol_id": 177 }, - "minecraft:item.bucket.empty_tadpole": { - "protocol_id": 182 + "minecraft:item.brush.brushing.sand.complete": { + "protocol_id": 179 }, - "minecraft:item.bucket.fill": { - "protocol_id": 183 - }, - "minecraft:item.bucket.fill_axolotl": { - "protocol_id": 184 - }, - "minecraft:item.bucket.fill_fish": { - "protocol_id": 185 - }, - "minecraft:item.bucket.fill_lava": { + "minecraft:item.bucket.empty": { "protocol_id": 186 }, - "minecraft:item.bucket.fill_powder_snow": { + "minecraft:item.bucket.empty_axolotl": { "protocol_id": 187 }, - "minecraft:item.bucket.fill_tadpole": { + "minecraft:item.bucket.empty_fish": { "protocol_id": 188 }, - "minecraft:item.bundle.drop_contents": { + "minecraft:item.bucket.empty_lava": { "protocol_id": 189 }, - "minecraft:item.bundle.insert": { + "minecraft:item.bucket.empty_powder_snow": { "protocol_id": 190 }, - "minecraft:item.bundle.remove_one": { + "minecraft:item.bucket.empty_tadpole": { "protocol_id": 191 }, + "minecraft:item.bucket.fill": { + "protocol_id": 192 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 193 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 194 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 195 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 196 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 197 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 198 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 199 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 200 + }, "minecraft:item.chorus_fruit.teleport": { - "protocol_id": 286 + "protocol_id": 295 }, "minecraft:item.crop.plant": { - "protocol_id": 320 + "protocol_id": 347 }, "minecraft:item.crossbow.hit": { - "protocol_id": 321 + "protocol_id": 348 }, "minecraft:item.crossbow.loading_end": { - "protocol_id": 322 + "protocol_id": 349 }, "minecraft:item.crossbow.loading_middle": { - "protocol_id": 323 + "protocol_id": 350 }, "minecraft:item.crossbow.loading_start": { - "protocol_id": 324 + "protocol_id": 351 }, "minecraft:item.crossbow.quick_charge_1": { - "protocol_id": 325 + "protocol_id": 352 }, "minecraft:item.crossbow.quick_charge_2": { - "protocol_id": 326 + "protocol_id": 353 }, "minecraft:item.crossbow.quick_charge_3": { - "protocol_id": 327 + "protocol_id": 354 }, "minecraft:item.crossbow.shoot": { - "protocol_id": 328 + "protocol_id": 355 }, "minecraft:item.dye.use": { - "protocol_id": 395 + "protocol_id": 424 }, "minecraft:item.elytra.flying": { - "protocol_id": 405 + "protocol_id": 434 }, "minecraft:item.firecharge.use": { - "protocol_id": 445 + "protocol_id": 474 }, "minecraft:item.flintandsteel.use": { - "protocol_id": 460 + "protocol_id": 489 }, "minecraft:item.glow_ink_sac.use": { - "protocol_id": 539 + "protocol_id": 568 }, "minecraft:item.goat_horn.play": { - "protocol_id": 558 + "protocol_id": 587 }, "minecraft:item.goat_horn.sound.0": { - "protocol_id": 626 + "protocol_id": 666 }, "minecraft:item.goat_horn.sound.1": { - "protocol_id": 627 + "protocol_id": 667 }, "minecraft:item.goat_horn.sound.2": { - "protocol_id": 628 + "protocol_id": 668 }, "minecraft:item.goat_horn.sound.3": { - "protocol_id": 629 + "protocol_id": 669 }, "minecraft:item.goat_horn.sound.4": { - "protocol_id": 630 + "protocol_id": 670 }, "minecraft:item.goat_horn.sound.5": { - "protocol_id": 631 + "protocol_id": 671 }, "minecraft:item.goat_horn.sound.6": { - "protocol_id": 632 + "protocol_id": 672 }, "minecraft:item.goat_horn.sound.7": { - "protocol_id": 633 + "protocol_id": 673 }, "minecraft:item.hoe.till": { - "protocol_id": 609 + "protocol_id": 649 }, "minecraft:item.honey_bottle.drink": { - "protocol_id": 625 - }, - "minecraft:item.honeycomb.wax_on": { - "protocol_id": 624 - }, - "minecraft:item.ink_sac.use": { "protocol_id": 665 }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 664 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 705 + }, "minecraft:item.lodestone_compass.lock": { - "protocol_id": 719 + "protocol_id": 759 }, "minecraft:item.nether_wart.plant": { - "protocol_id": 837 + "protocol_id": 877 }, "minecraft:item.shield.block": { - "protocol_id": 1140 + "protocol_id": 1182 }, "minecraft:item.shield.break": { - "protocol_id": 1141 + "protocol_id": 1183 }, "minecraft:item.shovel.flatten": { - "protocol_id": 1147 + "protocol_id": 1189 }, "minecraft:item.spyglass.stop_using": { - "protocol_id": 1265 + "protocol_id": 1307 }, "minecraft:item.spyglass.use": { - "protocol_id": 1264 + "protocol_id": 1306 }, "minecraft:item.totem.use": { - "protocol_id": 1292 - }, - "minecraft:item.trident.hit": { - "protocol_id": 1293 - }, - "minecraft:item.trident.hit_ground": { - "protocol_id": 1294 - }, - "minecraft:item.trident.return": { - "protocol_id": 1295 - }, - "minecraft:item.trident.riptide_1": { - "protocol_id": 1296 - }, - "minecraft:item.trident.riptide_2": { - "protocol_id": 1297 - }, - "minecraft:item.trident.riptide_3": { - "protocol_id": 1298 - }, - "minecraft:item.trident.throw": { - "protocol_id": 1299 - }, - "minecraft:item.trident.thunder": { - "protocol_id": 1300 - }, - "minecraft:music.creative": { - "protocol_id": 784 - }, - "minecraft:music.credits": { - "protocol_id": 785 - }, - "minecraft:music.dragon": { - "protocol_id": 802 - }, - "minecraft:music.end": { - "protocol_id": 803 - }, - "minecraft:music.game": { - "protocol_id": 804 - }, - "minecraft:music.menu": { - "protocol_id": 805 - }, - "minecraft:music.nether.basalt_deltas": { - "protocol_id": 806 - }, - "minecraft:music.nether.crimson_forest": { - "protocol_id": 807 - }, - "minecraft:music.nether.nether_wastes": { - "protocol_id": 818 - }, - "minecraft:music.nether.soul_sand_valley": { - "protocol_id": 821 - }, - "minecraft:music.nether.warped_forest": { - "protocol_id": 823 - }, - "minecraft:music.overworld.badlands": { - "protocol_id": 826 - }, - "minecraft:music.overworld.bamboo_jungle": { - "protocol_id": 829 - }, - "minecraft:music.overworld.cherry_grove": { - "protocol_id": 817 - }, - "minecraft:music.overworld.deep_dark": { - "protocol_id": 808 - }, - "minecraft:music.overworld.desert": { - "protocol_id": 825 - }, - "minecraft:music.overworld.dripstone_caves": { - "protocol_id": 809 - }, - "minecraft:music.overworld.flower_forest": { - "protocol_id": 824 - }, - "minecraft:music.overworld.forest": { - "protocol_id": 814 - }, - "minecraft:music.overworld.frozen_peaks": { - "protocol_id": 819 - }, - "minecraft:music.overworld.grove": { - "protocol_id": 810 - }, - "minecraft:music.overworld.jagged_peaks": { - "protocol_id": 811 - }, - "minecraft:music.overworld.jungle": { - "protocol_id": 827 - }, - "minecraft:music.overworld.lush_caves": { - "protocol_id": 812 - }, - "minecraft:music.overworld.meadow": { - "protocol_id": 816 - }, - "minecraft:music.overworld.old_growth_taiga": { - "protocol_id": 815 - }, - "minecraft:music.overworld.snowy_slopes": { - "protocol_id": 820 - }, - "minecraft:music.overworld.sparse_jungle": { - "protocol_id": 828 - }, - "minecraft:music.overworld.stony_peaks": { - "protocol_id": 822 - }, - "minecraft:music.overworld.swamp": { - "protocol_id": 813 - }, - "minecraft:music.under_water": { - "protocol_id": 830 - }, - "minecraft:music_disc.11": { - "protocol_id": 787 - }, - "minecraft:music_disc.13": { - "protocol_id": 788 - }, - "minecraft:music_disc.5": { - "protocol_id": 786 - }, - "minecraft:music_disc.blocks": { - "protocol_id": 789 - }, - "minecraft:music_disc.cat": { - "protocol_id": 790 - }, - "minecraft:music_disc.chirp": { - "protocol_id": 791 - }, - "minecraft:music_disc.far": { - "protocol_id": 792 - }, - "minecraft:music_disc.mall": { - "protocol_id": 793 - }, - "minecraft:music_disc.mellohi": { - "protocol_id": 794 - }, - "minecraft:music_disc.otherside": { - "protocol_id": 800 - }, - "minecraft:music_disc.pigstep": { - "protocol_id": 795 - }, - "minecraft:music_disc.relic": { - "protocol_id": 801 - }, - "minecraft:music_disc.stal": { - "protocol_id": 796 - }, - "minecraft:music_disc.strad": { - "protocol_id": 797 - }, - "minecraft:music_disc.wait": { - "protocol_id": 798 - }, - "minecraft:music_disc.ward": { - "protocol_id": 799 - }, - "minecraft:particle.soul_escape": { - "protocol_id": 1205 - }, - "minecraft:ui.button.click": { - "protocol_id": 1326 - }, - "minecraft:ui.cartography_table.take_result": { - "protocol_id": 1329 - }, - "minecraft:ui.loom.select_pattern": { - "protocol_id": 1327 - }, - "minecraft:ui.loom.take_result": { - "protocol_id": 1328 - }, - "minecraft:ui.stonecutter.select_recipe": { - "protocol_id": 1331 - }, - "minecraft:ui.stonecutter.take_result": { - "protocol_id": 1330 - }, - "minecraft:ui.toast.challenge_complete": { - "protocol_id": 1332 - }, - "minecraft:ui.toast.in": { - "protocol_id": 1333 - }, - "minecraft:ui.toast.out": { "protocol_id": 1334 }, + "minecraft:item.trident.hit": { + "protocol_id": 1335 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1336 + }, + "minecraft:item.trident.return": { + "protocol_id": 1337 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1338 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1339 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1340 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1341 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1342 + }, + "minecraft:music.creative": { + "protocol_id": 824 + }, + "minecraft:music.credits": { + "protocol_id": 825 + }, + "minecraft:music.dragon": { + "protocol_id": 842 + }, + "minecraft:music.end": { + "protocol_id": 843 + }, + "minecraft:music.game": { + "protocol_id": 844 + }, + "minecraft:music.menu": { + "protocol_id": 845 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 846 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 847 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 858 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 861 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 863 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 866 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 869 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 857 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 848 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 865 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 849 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 864 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 854 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 859 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 850 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 851 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 867 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 852 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 856 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 855 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 860 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 868 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 862 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 853 + }, + "minecraft:music.under_water": { + "protocol_id": 870 + }, + "minecraft:music_disc.11": { + "protocol_id": 827 + }, + "minecraft:music_disc.13": { + "protocol_id": 828 + }, + "minecraft:music_disc.5": { + "protocol_id": 826 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 829 + }, + "minecraft:music_disc.cat": { + "protocol_id": 830 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 831 + }, + "minecraft:music_disc.far": { + "protocol_id": 832 + }, + "minecraft:music_disc.mall": { + "protocol_id": 833 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 834 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 840 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 835 + }, + "minecraft:music_disc.relic": { + "protocol_id": 841 + }, + "minecraft:music_disc.stal": { + "protocol_id": 836 + }, + "minecraft:music_disc.strad": { + "protocol_id": 837 + }, + "minecraft:music_disc.wait": { + "protocol_id": 838 + }, + "minecraft:music_disc.ward": { + "protocol_id": 839 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1247 + }, + "minecraft:ui.button.click": { + "protocol_id": 1378 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1381 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1379 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1380 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1383 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1382 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1384 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1385 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1386 + }, "minecraft:weather.rain": { - "protocol_id": 1401 + "protocol_id": 1454 }, "minecraft:weather.rain.above": { - "protocol_id": 1402 + "protocol_id": 1455 } }, "protocol_id": 1 @@ -14631,6 +15925,167 @@ }, "protocol_id": 23 }, + "minecraft:trigger_type": { + "entries": { + "minecraft:allay_drop_item_on_block": { + "protocol_id": 49 + }, + "minecraft:avoid_vibration": { + "protocol_id": 50 + }, + "minecraft:bee_nest_destroyed": { + "protocol_id": 36 + }, + "minecraft:bred_animals": { + "protocol_id": 14 + }, + "minecraft:brewed_potion": { + "protocol_id": 10 + }, + "minecraft:changed_dimension": { + "protocol_id": 21 + }, + "minecraft:channeled_lightning": { + "protocol_id": 30 + }, + "minecraft:construct_beacon": { + "protocol_id": 11 + }, + "minecraft:consume_item": { + "protocol_id": 25 + }, + "minecraft:cured_zombie_villager": { + "protocol_id": 17 + }, + "minecraft:effects_changed": { + "protocol_id": 26 + }, + "minecraft:enchanted_item": { + "protocol_id": 8 + }, + "minecraft:enter_block": { + "protocol_id": 3 + }, + "minecraft:entity_hurt_player": { + "protocol_id": 7 + }, + "minecraft:entity_killed_player": { + "protocol_id": 2 + }, + "minecraft:fall_from_height": { + "protocol_id": 46 + }, + "minecraft:filled_bucket": { + "protocol_id": 9 + }, + "minecraft:fishing_rod_hooked": { + "protocol_id": 29 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 33 + }, + "minecraft:impossible": { + "protocol_id": 0 + }, + "minecraft:inventory_changed": { + "protocol_id": 4 + }, + "minecraft:item_durability_changed": { + "protocol_id": 19 + }, + "minecraft:item_used_on_block": { + "protocol_id": 38 + }, + "minecraft:kill_mob_near_sculk_catalyst": { + "protocol_id": 48 + }, + "minecraft:killed_by_crossbow": { + "protocol_id": 32 + }, + "minecraft:levitation": { + "protocol_id": 20 + }, + "minecraft:lightning_strike": { + "protocol_id": 44 + }, + "minecraft:location": { + "protocol_id": 15 + }, + "minecraft:nether_travel": { + "protocol_id": 28 + }, + "minecraft:placed_block": { + "protocol_id": 24 + }, + "minecraft:player_generates_container_loot": { + "protocol_id": 39 + }, + "minecraft:player_hurt_entity": { + "protocol_id": 6 + }, + "minecraft:player_interacted_with_entity": { + "protocol_id": 42 + }, + "minecraft:player_killed_entity": { + "protocol_id": 1 + }, + "minecraft:recipe_crafted": { + "protocol_id": 51 + }, + "minecraft:recipe_unlocked": { + "protocol_id": 5 + }, + "minecraft:ride_entity_in_lava": { + "protocol_id": 47 + }, + "minecraft:shot_crossbow": { + "protocol_id": 31 + }, + "minecraft:slept_in_bed": { + "protocol_id": 16 + }, + "minecraft:slide_down_block": { + "protocol_id": 35 + }, + "minecraft:started_riding": { + "protocol_id": 43 + }, + "minecraft:summoned_entity": { + "protocol_id": 13 + }, + "minecraft:tame_animal": { + "protocol_id": 23 + }, + "minecraft:target_hit": { + "protocol_id": 37 + }, + "minecraft:thrown_item_picked_up_by_entity": { + "protocol_id": 40 + }, + "minecraft:thrown_item_picked_up_by_player": { + "protocol_id": 41 + }, + "minecraft:tick": { + "protocol_id": 22 + }, + "minecraft:used_ender_eye": { + "protocol_id": 12 + }, + "minecraft:used_totem": { + "protocol_id": 27 + }, + "minecraft:using_item": { + "protocol_id": 45 + }, + "minecraft:villager_trade": { + "protocol_id": 18 + }, + "minecraft:voluntary_exile": { + "protocol_id": 34 + } + }, + "protocol_id": 68 + }, "minecraft:villager_profession": { "default": "minecraft:none", "entries": { @@ -15223,6 +16678,20 @@ }, "protocol_id": 46 }, + "minecraft:worldgen/pool_alias_binding": { + "entries": { + "minecraft:direct": { + "protocol_id": 2 + }, + "minecraft:random": { + "protocol_id": 0 + }, + "minecraft:random_group": { + "protocol_id": 1 + } + }, + "protocol_id": 61 + }, "minecraft:worldgen/root_placer_type": { "entries": { "minecraft:mangrove_root_placer": { @@ -15433,7 +16902,7 @@ "protocol_id": 0 } }, - "protocol_id": 59 + "protocol_id": 60 }, "minecraft:worldgen/structure_processor": { "entries": { @@ -15471,7 +16940,7 @@ "protocol_id": 4 } }, - "protocol_id": 58 + "protocol_id": 59 }, "minecraft:worldgen/structure_type": { "entries": {